/* Comments Section */
.watch-comments-section {
    background-color: #ffffff;
    padding: 1.25rem;
    border-radius: 0.5rem;
}

.watch-comments-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

/* Comments Grid */
.watch-comments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .watch-comments-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Comments List */
.watch-comments-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.watch-comment-item {
    background-color: #f9fafb;
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s;
}

.watch-comment-item:hover {
    background-color: #f3f4f6;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.watch-comment-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.watch-comment-avatar {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    object-fit: cover;
}

.watch-comment-meta {
    flex: 1;
}

.watch-comment-author {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
}

.watch-comment-date {
    font-size: 0.8125rem;
    color: #6b7280;
}

.watch-comment-text {
    color: #374151;
    line-height: 1.625;
    margin: 0;
    font-size: 0.9375rem;
}

/* No Comments */
.watch-no-comments {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    text-align: center;
}

.watch-empty-icon {
    width: 4rem;
    height: 4rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.watch-empty-text {
    color: #6b7280;
    font-size: 0.9375rem;
    font-style: italic;
}

/* Comment Form Wrapper */
.watch-comment-form-wrapper {
    position: sticky;
    top: 1.25rem;
    height: fit-content;
}

/* Comment Form */
.watch-comment-form {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.watch-form-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.watch-form-group {
    margin-bottom: 1.25rem;
}

.watch-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.watch-form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--text-dark);
    transition: all 0.2s;
    resize: vertical;
}

.watch-form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.watch-form-textarea::placeholder {
    color: #9ca3af;
}

.watch-form-actions {
    margin: 0;
}

.watch-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.watch-submit-btn:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.watch-btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Login Prompt */
.watch-login-prompt {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.watch-login-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
}

.watch-login-icon {
    width: 4rem;
    height: 4rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.watch-login-title {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1.5rem;
}

.watch-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.875rem;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.watch-login-btn:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .watch-comments-section {
        padding: 1rem;
    }

    .watch-comment-form-wrapper {
        position: relative;
        top: 0;
    }

    .watch-comment-form {
        padding: 1.25rem;
    }

    .watch-comment-avatar {
        width: 2.5rem;
        height: 2.5rem;
    }

    .watch-form-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .watch-comments-title {
        font-size: 1rem;
    }

    .watch-comment-item {
        padding: 0.875rem;
    }

    .watch-comment-author {
        font-size: 0.875rem;
    }

    .watch-comment-text {
        font-size: 0.875rem;
    }

    .watch-comment-avatar {
        width: 2.25rem;
        height: 2.25rem;
    }

    .watch-form-textarea {
        font-size: 0.875rem;
    }

    .watch-submit-btn {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
    }
}