/**
 * Content Detail Page Styles
 * İçerik detay sayfası stilleri
 * 
 * Bağımlılıklar:
 * - CSS Variables from main theme
 * - FontAwesome icons
 * - Poppins font
 */

/* ===================================
   CONTENT DETAIL MAIN
   =================================== */

.content-detail-main {
    background: var(--homepage-bg, #f8f9fa);
    min-height: 100vh;
    padding: 2rem 0;
}

.content-detail-main .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   CONTENT HEADER
   =================================== */

.content-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.content-poster {
    position: relative;
}

.poster-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.poster-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.content-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--homepage-text, #2c3e50);
    margin: 0;
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.content-title i {
    color: #e50914;
    font-size: 2rem;
    flex-shrink: 0;
}

/* ===================================
   CONTENT META
   =================================== */

.content-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--option-bg, #f8f9fa);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--homepage-text, #2c3e50);
}

.meta-item i {
    color: var(--button-primary, #007bff);
}

.imdb-score {
    background: #f5c518;
    color: #000;
}

.imdb-score i {
    color: #000;
}

/* ===================================
   TAXONOMIES
   =================================== */

.content-taxonomies {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.taxonomy-group h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--homepage-text, #2c3e50);
}

.taxonomy-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.taxonomy-term {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--button-primary, #007bff);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.mood-term {
    background: var(--button-primary, #007bff);
}

.type-term {
    background: #28a745;
}

.platform-term {
    background: #fd7e14;
}

/* ===================================
   CONTENT DESCRIPTION
   =================================== */

.content-description {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.content-description h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--homepage-text, #2c3e50);
    margin: 0 0 1rem 0;
    font-family: "Poppins", sans-serif;
}

.short-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--homepage-text-light, #6c757d);
    margin-bottom: 1rem;
}

.full-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--homepage-text, #2c3e50);
}

.full-description p {
    margin-bottom: 1rem;
}

/* ===================================
   CONTENT ACTIONS
   =================================== */

.content-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--button-secondary, #6c757d);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.back-button:hover {
    background: var(--button-secondary-hover, #5a6268);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
    color: white;
}

.facebook-btn {
    background: #1877f2;
}

.facebook-btn:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.twitter-btn {
    background: #1da1f2;
}

.twitter-btn:hover {
    background: #1a91da;
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

/* ===================================
   CONTENT NOT FOUND
   =================================== */

.content-not-found {
    text-align: center;
    background: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.content-not-found h1 {
    font-size: 2rem;
    color: var(--homepage-text, #2c3e50);
    margin-bottom: 1rem;
    font-family: "Poppins", sans-serif;
}

.content-not-found p {
    font-size: 1.1rem;
    color: var(--homepage-text-light, #6c757d);
    margin-bottom: 2rem;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .content-detail-main {
        padding: 1rem 0;
    }
    
    .content-detail-main .container {
        padding: 0 15px;
    }
    
    .content-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    /* Mobilde poster ortalı */
    .content-poster {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .poster-image,
    .poster-placeholder {
        max-width: 300px;
        width: 100%;
    }
    
    .content-title {
        font-size: 2rem;
    }
    
    .content-title i {
        font-size: 1.5rem;
    }
    
    /* Meta bilgiler sola yaslı */
    .content-meta {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    /* Taxonomy terms sola yaslı */
    .taxonomy-terms {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    /* Taxonomy groups sola yaslı */
    .content-taxonomies {
        align-items: flex-start;
    }
    
    .taxonomy-group {
        width: 100%;
        text-align: left;
    }
    
    .taxonomy-group h4 {
        text-align: left;
        margin-bottom: 0.5rem;
    }
    
    .content-description,
    .content-actions {
        padding: 1.5rem;
    }
    
    .content-actions {
        flex-direction: column;
        gap: 2rem;
    }
    
    .share-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Poster küçük mobillerde de ortalı */
    .poster-image,
    .poster-placeholder {
        max-width: 250px;
    }
    
    .content-title {
        font-size: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .content-title i {
        font-size: 1.2rem;
    }
    
    /* Meta bilgiler küçük mobilde de sola yaslı */
    .content-meta {
        justify-content: flex-start;
    }
    
    .meta-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Taxonomy terms küçük mobilde de sola yaslı */
    .taxonomy-terms {
        justify-content: flex-start;
    }
    
    .taxonomy-term {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .share-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .back-button {
        padding: 0.8rem 1.5rem;
    }
}

/* ===================================
   DARK MODE SUPPORT
   =================================== */

/* Dark theme support */
[data-theme="dark"] .content-detail-main {
    background: #1a1a1a !important;
}

/* Container da aynı renkte olsun */
[data-theme="dark"] .content-detail-main .container {
    background: #1a1a1a !important;
}

/* Body ve html de aynı renk */
[data-theme="dark"] body,
[data-theme="dark"] html {
    background: #1a1a1a !important;
    background-color: #1a1a1a !important;
}

/* Ana content wrapper */
[data-theme="dark"] .content-detail {
    background: #1a1a1a !important;
}

/* Article wrapper */
[data-theme="dark"] article.content-detail {
    background: #1a1a1a !important;
}

/* Single content article wrapper - Ana içerik bloğu */
[data-theme="dark"] .single-content-article {
    background: #1a1a1a !important;
}

/* Single content article CSS */
.single-content-article {
    background: transparent;
}

/* Tüm boşluk alanları için */
[data-theme="dark"] * {
    box-sizing: border-box;
}

/* Ana sayfa container'ı da aynı renk */
[data-theme="dark"] .main-content,
[data-theme="dark"] main {
    background: #1a1a1a !important;
}

[data-theme="dark"] .content-header,
[data-theme="dark"] .content-description,
[data-theme="dark"] .content-actions {
    background: var(--card-bg-dark, #2d2d2d) !important;
}

/* Bölümler arasındaki boşluklar için - margin ayarları */
[data-theme="dark"] .content-description {
    margin-top: 0 !important;
    margin-bottom: 3rem !important;
}

/* Content header margin - boşluk bırak */
[data-theme="dark"] .content-header {
    margin-bottom: 3rem !important;
    position: relative;
}

/* Basit çözüm - sadece margin ile boşluk */

/* Content header ile description arası */
[data-theme="dark"] .content-header + .content-description {
    background: var(--card-bg-dark, #2d2d2d) !important;
}

/* Description ile comments arası boşluk */
[data-theme="dark"] .content-description + .content-comments {
    background: #1a1a1a !important;
}

/* Comments ile actions arası boşluk */
[data-theme="dark"] .content-comments + .content-actions {
    background: var(--card-bg-dark, #2d2d2d) !important;
}

[data-theme="dark"] .content-title {
    color: var(--homepage-text-dark, #ffffff) !important;
}

[data-theme="dark"] .content-title i {
    color: #e50914 !important;
}

[data-theme="dark"] .content-description h3 {
    color: var(--homepage-text-dark, #ffffff) !important;
}

[data-theme="dark"] .full-description {
    color: var(--homepage-text-dark, #ffffff) !important;
}

/* Fallback for system preference */
@media (prefers-color-scheme: dark) {
    .content-detail-main {
        background: var(--homepage-bg-dark, #1a1a1a);
    }
    
    .content-header,
    .content-description,
    .content-actions {
        background: var(--card-bg-dark, #2d2d2d);
    }
    
    .content-title {
        color: var(--homepage-text-dark, #ffffff);
    }
    
    .content-title i {
        color: #e50914 !important;
    }
    
    .content-description h3 {
        color: var(--homepage-text-dark, #ffffff);
    }
    
    .full-description {
        color: var(--homepage-text-dark, #ffffff);
    }
    
    .taxonomy-group h4 {
        color: var(--homepage-text-dark, #ffffff) !important;
    }
}

/* Explicit theme overrides for taxonomy labels */
[data-theme="dark"] .taxonomy-group h4 {
    color: #ffffff !important;
}

[data-theme="light"] .taxonomy-group h4 {
    color: #2c3e50 !important;
}

[data-theme="dark"] .content-not-found h1 {
    color: #ffffff !important;
}

[data-theme="light"] .content-not-found h1 {
    color: #2c3e50 !important;
}

/* ===================================
   YORUM ALANI STİLLERİ
   =================================== */

/* Yorum Alanı Genel */
.content-comments {
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-top: 2px solid var(--form-border);
    border-bottom: 2px solid var(--form-border);
    background: transparent;
}

/* Dark theme için yorum alanı arka planı */
[data-theme="dark"] .content-comments {
    background: #1a1a1a !important;
}

.comments-header {
    text-align: left;
    margin-bottom: 3rem;
}

.comments-header h3 {
    font-size: 2rem;
    color: var(--homepage-text);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.comments-header h3 i {
    color: #e50914;
}

.comments-description {
    color: var(--homepage-text-light);
    font-size: 1.1rem;
    margin: 0;
}

.comments-area {
    background: var(--form-bg);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--form-shadow);
    border: 1px solid var(--form-border);
}

/* Yorum Başlığı */
.comments-title {
    font-size: 1.5rem;
    color: var(--homepage-text);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--form-border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comments-title i {
    color: #e50914;
}

/* Yorum Listesi */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.comment-list .comment {
    background: var(--homepage-bg);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--form-border);
    position: relative;
}

/* Yanıtlar için girintili tasarım */
.comment-list .comment .children {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 2rem;
    border-left: 3px solid rgba(229, 9, 20, 0.3);
    padding-left: 1.5rem;
}

.comment-list .comment .children .comment {
    background: rgba(229, 9, 20, 0.05);
    border: 1px solid rgba(229, 9, 20, 0.2);
    margin-bottom: 1rem;
    padding: 1rem;
    font-size: 0.95rem;
}

.comment-list .comment .children .comment .children {
    margin-left: 1rem;
    border-left: 2px solid rgba(229, 9, 20, 0.2);
    padding-left: 1rem;
}

.comment-list .comment .children .comment .children .comment {
    background: rgba(229, 9, 20, 0.03);
    border: 1px solid rgba(229, 9, 20, 0.15);
    font-size: 0.9rem;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-author .avatar {
    border-radius: 50%;
    border: 2px solid #e50914;
}

.comment-author .fn {
    font-weight: 600;
    color: var(--homepage-text);
    font-size: 1.1rem;
}

.comment-metadata {
    font-size: 0.9rem;
    color: var(--homepage-text-light);
    margin-bottom: 1rem;
}

.comment-metadata a {
    color: var(--homepage-text-light);
    text-decoration: none;
}

.comment-metadata a:hover {
    color: #e50914;
}

.comment-content {
    color: var(--homepage-text);
    line-height: 1.6;
}

.comment-content p {
    margin-bottom: 1rem;
}

.reply {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(229, 9, 20, 0.1);
}

.comment-reply-link {
    background: #e50914;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.comment-reply-link:hover {
    background: var(--homepage-text);
    color: #ffffff !important;
    transform: translateY(-1px);
}

/* Yorum Formu */
.comment-form {
    background: var(--homepage-bg);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--form-border);
}

.comment-respond h3 {
    font-size: 1.3rem;
    color: var(--homepage-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comment-respond h3 i {
    color: #e50914;
}

.comment-notes {
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: var(--homepage-text);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.comment-notes i {
    color: #e50914;
    margin-top: 0.2rem;
}

.comment-form-author,
.comment-form-comment,
.comment-form-captcha {
    margin-bottom: 1.5rem;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--homepage-text);
    font-weight: 500;
}

.comment-form input[type="text"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--form-border);
    border-radius: 8px;
    background: var(--form-bg);
    color: var(--homepage-text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.comment-form input[type="text"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #e50914;
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

.comment-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: left !important;
    margin-top: 1.5rem;
}

.comment-form .form-submit {
    text-align: left !important;
}

.comments-area .form-submit {
    text-align: left !important;
}

/* WordPress varsayılan submit stilleri */
#respond .form-submit,
#commentform .form-submit,
.comment-respond .form-submit {
    text-align: left !important;
}

#respond input[type="submit"],
#commentform input[type="submit"],
.comment-respond input[type="submit"],
#respond button[type="submit"],
#commentform button[type="submit"],
.comment-respond button[type="submit"] {
    margin: 0 !important;
    float: none !important;
}

.comment-form button[type="submit"] {
    background: #e50914;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 !important;
}

.comment-form button[type="submit"]:hover {
    background: var(--homepage-text);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.3);
}

/* Captcha Stilleri */
.comment-form-captcha {
    background: rgba(229, 9, 20, 0.05);
    border: 1px solid rgba(229, 9, 20, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
}

.captcha-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.math-question {
    background: #e50914;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.captcha-question input {
    max-width: 100px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.captcha-help {
    margin: 0;
    font-size: 0.9rem;
    color: var(--homepage-text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.captcha-help i {
    color: #e50914;
}

/* WordPress Checkbox Düzeltmeleri */
.comment-form-cookies-consent {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
    margin-top: 1rem !important;
}

.comment-form-cookies-consent input[type="checkbox"] {
    margin: 0 !important;
    margin-top: 0.25rem !important;
    flex-shrink: 0 !important;
}

.comment-form-cookies-consent label {
    margin: 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    color: var(--homepage-text-light) !important;
}

/* Yorum Navigasyonu */
.comment-navigation {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--form-border);
}

.comment-navigation a {
    color: #e50914;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.comment-navigation a:hover {
    background: rgba(229, 9, 20, 0.1);
}

.no-comments {
    text-align: center;
    color: var(--homepage-text-light);
    font-style: italic;
    padding: 2rem;
}

/* Mevcut yorumlar alanı */
.existing-comments {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--form-border);
}

.existing-comments .comments-title {
    margin-bottom: 2rem;
}

/* AJAX Yorum Mesajları */
.comment-message {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

.comment-message.success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
}

.comment-message.error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

.comment-message i {
    font-size: 1.2rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state için buton */
.comment-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.comment-form button[type="submit"] .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Dark Theme Yorum Stilleri */
[data-theme="dark"] .comments-header h3,
[data-theme="dark"] .comments-title,
[data-theme="dark"] .comment-respond h3 {
    color: #ffffff !important;
}

[data-theme="dark"] .comments-header h3 i,
[data-theme="dark"] .comments-title i,
[data-theme="dark"] .comment-respond h3 i {
    color: #e50914 !important;
}

[data-theme="dark"] .comments-area,
[data-theme="dark"] .comment-form {
    background: var(--card-bg-dark, #2d2d2d) !important;
}

[data-theme="dark"] .comment-list .comment {
    background: var(--homepage-bg-dark, #1a1a1a) !important;
}

[data-theme="dark"] .comment-list .comment .children .comment {
    background: rgba(229, 9, 20, 0.1) !important;
    border: 1px solid rgba(229, 9, 20, 0.3) !important;
}

[data-theme="dark"] .comment-list .comment .children .comment .children .comment {
    background: rgba(229, 9, 20, 0.08) !important;
    border: 1px solid rgba(229, 9, 20, 0.25) !important;
}

[data-theme="dark"] .comment-author .fn,
[data-theme="dark"] .comment-content,
[data-theme="dark"] .comment-form label {
    color: #ffffff !important;
}

[data-theme="dark"] .comments-description,
[data-theme="dark"] .comment-metadata,
[data-theme="dark"] .captcha-help,
[data-theme="dark"] .comment-form-cookies-consent label {
    color: #cccccc !important;
}

/* Dark Theme Buton Hover */
[data-theme="dark"] .comment-form button[type="submit"]:hover {
    background: #ffffff !important;
    color: #2c3e50 !important;
}

[data-theme="light"] .comment-form button[type="submit"]:hover {
    background: #2c3e50 !important;
    color: #ffffff !important;
}

/* Dark Theme Yanıtla Buton Hover */
[data-theme="dark"] .comment-reply-link:hover {
    background: #ffffff !important;
    color: #2c3e50 !important;
}

[data-theme="light"] .comment-reply-link:hover {
    background: #2c3e50 !important;
    color: #ffffff !important;
}

/* Mobile Responsive Yorum Stilleri */
@media (max-width: 768px) {
    .content-comments {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .comments-area {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .comment-form {
        padding: 1.5rem;
    }
    
    .comments-header h3 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .comments-area {
        padding: 1rem;
    }
    
    .comment-form {
        padding: 1rem;
    }
    
    .comment-list .comment {
        padding: 1rem;
    }
    
    .comment-list .comment .children {
        margin: 1rem 0 0 1rem;
        padding-left: 1rem;
    }
    
    .comment-list .comment .children .comment {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .comment-list .comment .children .comment .children {
        margin-left: 0.5rem;
        padding-left: 0.75rem;
    }
    
    .comment-author {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .captcha-question {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .math-question {
        min-width: auto;
        width: 100%;
    }
}
