.comments-section {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.comments-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comments-section textarea {
    width: 100%;
    padding: 1rem;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    resize: vertical;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.comments-section textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.comments-section button {
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    background: var(--grad);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}

.comments-section button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

#commentStatus {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

#commentsList {
    margin-top: 2.5rem;
}

.comment-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    transition: transform 0.2s, border-color 0.2s;
}

.comment-card:hover {
    transform: translateY(-3px);
    border-color: var(--purple);
}

.comment-author {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.comment-date {
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.comment-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text2);
    line-height: 1.6;
    white-space: pre-wrap;
}
