.mov-comments-container {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #0f111a;
    color: #cbd5e1;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 20px auto;
    box-sizing: border-box;
}
.mov-comments-container *, .mov-comments-container *::before, .mov-comments-container *::after {
    box-sizing: border-box;
}
.mov-comments__title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 25px 0;
    background: linear-gradient(135deg, #a78bfa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 15px;
}
.mov-comments__empty {
    text-align: center;
    padding: 40px 20px;
    color: #64748b;
    font-size: 15px;
}
.mov-comment {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: commentFadeIn 0.5s ease forwards;
}
.mov-comment:hover {
    border-color: rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.02);
}
@keyframes commentFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.mov-comment__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.mov-comment__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    color: #3b82f6;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.mov-comment__author {
    font-weight: 600;
    color: #f1f5f9;
    font-size: 14px;
}
.mov-comment__time {
    font-size: 12px;
    color: #64748b;
}
.mov-comment__content {
    font-size: 14px;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 12px;
    word-break: break-word;
}
.mov-comment__footer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 10px;
}
.mov-comment__react-btn, .mov-comment__reply-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 6px 12px;
    border-radius: 8px;
}
.mov-comment__react-btn:hover {
    background: rgba(255, 255, 255, 0.04);
}
.mov-comment__react-btn:active {
    transform: scale(0.9);
}
.mov-comment__reply-btn:active {
    transform: scale(0.95);
}
.mov-comment__react-btn--like:hover, .mov-comment__react-btn--like.active {
    color: #10b981;
    background: rgba(16, 185, 129, 0.06);
}
.mov-comment__react-btn--dislike:hover, .mov-comment__react-btn--dislike.active {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.06);
}
.mov-comment__reply-btn:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.06);
}
.mov-comment__replies {
    margin-left: 30px;
    margin-top: 15px;
    border-left: 2px solid rgba(255, 255, 255, 0.04);
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Pagination Navigation */
.mov-comments__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.mov-comments__page-number {
    color: #94a3b8;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
    transition: all 0.3s ease;
}
.mov-comments__page-number:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}
.mov-comments__page-number--current {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
    color: #3b82f6;
    font-weight: 600;
}

/* Form Design System */
.mov-comments__form-section {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 25px;
    margin-top: 30px;
}
.mov-comment-form__title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #f1f5f9;
}
.mov-comment-form__field textarea {
    width: 100%;
    background: #131622;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #e2e8f0;
    padding: 15px;
    font-size: 14px;
    line-height: 1.6;
    resize: vertical;
    transition: border-color 0.3s ease;
}
.mov-comment-form__field textarea:focus {
    border-color: #3b82f6;
    outline: none;
}
.mov-comment-form__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 15px;
}
.mov-comment-form__submit {
    background: linear-gradient(135deg, #3b82f6, #a78bfa);
    color: #ffffff;
    border: none;
    padding: 11px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mov-comment-form__submit:hover {
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    transform: translateY(-1px);
}
.mov-comment-form__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Anonymous Trust Alert Banner styling */
.mov-comments__trust-banner {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #a7f3d0;
}
.mov-comments__trust-icon {
    font-size: 16px;
    flex-shrink: 0;
}

/* Toast validation popup styling */
.mov-comments-toast {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #181b29;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 999999;
    font-size: 13px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid #3b82f6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mov-comments-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.mov-comments-toast.error { border-left-color: #ef4444; }
.mov-comments-toast.success { border-left-color: #10b981; }

/* Nested reply form wrapper */
.mov-comment-reply-form-wrap {
    margin-top: 15px;
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Highlight Pulse animation on comment insertions */
@keyframes highlightPulse {
    0% { background: rgba(59, 130, 246, 0.15); border-color: #3b82f6; }
    100% { background: rgba(255, 255, 255, 0.01); border-color: rgba(255, 255, 255, 0.04); }
}

/* Responsive Polish */
@media (max-width: 768px) {
    .mov-comments-container {
        padding: 20px;
        margin: 15px;
    }
    .mov-comment__replies {
        margin-left: 15px;
        padding-left: 10px;
    }
}
@media (max-width: 480px) {
    .mov-comments-container {
        padding: 15px;
        margin: 10px 5px;
    }
    .mov-comment {
        padding: 14px;
    }
    .mov-comment__avatar {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
    .mov-comment__replies {
        margin-left: 10px;
        padding-left: 6px;
    }
    .mov-comment-form__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .mov-comment-form__submit {
        width: 100%;
    }
}

/* Extra classes extracted from inline styles */
.mov-comments-container .mov-comment-form__field {
    margin-bottom: 15px;
}
.mov-comments-container .mov-comment-form__field label {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 6px;
}
.mov-comments-container .mov-comment-nickname-input {
    display: block;
    width: 100%;
    background: #131622;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #e2e8f0;
    padding: 10px 15px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}
.mov-comments-container .mov-comment-nickname-input:focus {
    border-color: #3b82f6;
    outline: none;
}
.mov-comments-container .mov-comment-form__honeypot {
    display: none !important;
}
.mov-comments-container .mov-comment-form__actions--end {
    justify-content: flex-end;
}

/* Reply Form in JS */
.mov-comments-container .mov-comment-reply-form__field {
    margin-bottom: 8px;
}
.mov-comments-container .mov-comment-reply-nickname {
    display: block;
    width: 100%;
    background: #131622;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #e2e8f0;
    padding: 8px 12px;
    font-size: 13px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}
.mov-comments-container .mov-comment-reply-nickname:focus {
    border-color: #3b82f6;
    outline: none;
}
.mov-comments-container .mov-comment-reply-textarea {
    display: block;
    width: 100%;
    background: #131622;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #e2e8f0;
    padding: 10px;
    font-size: 13px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}
.mov-comments-container .mov-comment-reply-textarea:focus {
    border-color: #3b82f6;
    outline: none;
}
.mov-comments-container .mov-comment-reply-form__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 8px;
}
.mov-comments-container .mov-comment-reply-cancel {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.mov-comments-container .mov-comment-reply-cancel:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #f1f5f9;
}
.mov-comments-container .mov-comment-reply-submit {
    background: linear-gradient(135deg, #3b82f6, #a78bfa);
    border: none;
    color: white;
    border-radius: 6px;
    padding: 6px 16px;
    font-size: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mov-comments-container .mov-comment-reply-submit:hover {
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transform: translateY(-1px);
}
.mov-comments-container .mov-comment-reply-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
