
/* 投诉按钮 */
.complaint-btn {
    /* margin-top: 10px; */
    background: #ffffff;
    border: 1px solid ;
    /* color: #5F4EF5; */
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    display: inline-flex;
    width: auto;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    margin-left: 10px;
}

button#complaintBtn {}

.complaint-btn:hover {
    background: #fff5f5;
    border-color: #4a4a4a;
    transform: scale(1.02);
}

/* 弹窗遮罩 */
.camplaint-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.camplaint-modal.show {
    display: flex;
}

/* 弹窗内容 */
.camplaint-modal-content {
    background: white;
    width: 90%;
    max-width: 400px;
    border-radius: 20px;
    animation: slideIn 0.2s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.camplaint-modal-header {
    padding: 20px 20px 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.camplaint-modal-header h3 {
    color: black;
    font-size: 18px;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #333;
}

.camplaint-modal-body {
    padding: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #585858;
}

.form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.camplaint-modal-footer {
    padding: 0 20px 20px 20px;
    display: flex;
    gap: 12px;
}


.btn-cancel {
    flex: 1;
    background: #f1f5f9;
    border: none;
    padding: 10px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-cancel:hover {
    background: #bababa;
}

.btn-submit {
    flex: 1;
    background: #373737;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #373737;
}

/* 观看下一集按钮 */
.next-btn {
    background: linear-gradient(135deg, #2b2b2b, #262626);
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* 弹窗遮罩 */
.next-video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.next-video-modal.show {
    display: flex;
}

/* 弹窗内容 */
.next-video-modal-content {
    background: white;
    width: 90%;
    max-width: 360px;
    border-radius: 20px;
    text-align: center;
    animation: zoomIn 0.2s ease;
    overflow: hidden;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* 弹窗头部 */
.next-video-modal-header {
    padding: 24px 24px 16px;
}

.next-video-modal-header svg {
    width: 56px;
    height: 56px;
    color: #373737;
}

.next-video-modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-top: 12px;
}

/* 弹窗内容区 */
.next-video-modal-body {
    padding: 0 24px 24px;
}

.next-video-modal-body p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}



/* 按钮组 */
.button-group {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.btn-cancel {
    flex: 1;
    background: #f0f0f0;
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cancel:hover {
    background: #e0e0e0;
}

.btn-confirm {
    flex: 1;
    background: linear-gradient(135deg, #282828, #2a2a2a);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-confirm:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px #787878;
}
/* 弹窗样式 - 黑底白字居中 */
.toast {
    visibility: hidden;
    min-width: 100px;
    background-color: #1f212f;  /* 纯黑背景 */
    color: #ffffff;              /* 白色文字 */
    text-align: center;
    border-radius: 100px;
    padding: 10px 10px;
    font-size: 16px;
    font-weight: 500;
    position: fixed;
    z-index: 1000;
    top: 50%;                    /* 垂直居中 */
    left: 50%;                   /* 水平居中 */
    transform: translate(-50%, -50%);  /* 完美居中偏移 */
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    white-space: nowrap;         /* 防止文字换行 */
}

/* 显示状态 */
.toast.show {
    visibility: visible;
    opacity: 1;
}

/* 可选：添加对勾图标效果 */
.toast .check-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    font-weight: bold;
}


