/* =================================================== */
        /* Genel Stil ve Değişkenler */
        /* =================================================== */
        :root { --color-dark-bg: #0d0d0d; --color-accent: #00eaff; --color-text: #f8f8f8; --color-light-bg: #1a1a1a; }
        body { font-family: 'Inter', sans-serif; background-color: var(--color-dark-bg); color: var(--color-text); line-height: 1.6; overflow-x: hidden; display: flex; flex-direction: column; min-height: 100vh; }
        
        /* Video/Iframe Kapsayıcı Stili - 500 PİKSEL KIRPMA VE YÜKSEKLİK AYARI */
        .video-player-wrapper { 
            width: 100%; 
            max-width: 1200px; 
            margin: 0 auto; 
            position: relative; 
            height: 500px; /* Iframe'in görünecek yüksekliği */
            padding-bottom: 0; 
            overflow: hidden; 
            border-radius: 8px; 
            background-color: #000; 
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); 
        }
        /* iframe için stil: Alttan 500px kırpma (Gizleme) */
        .video-player-wrapper iframe { 
            position: absolute; 
            top: 0; 
            left: 0; 
            width: 100%; 
            height: calc(100% + 500px); 
            border: none; 
        }
        
        /* =================================================== */
        /* Iframe Üzeri Reklam Katmanı Stilleri (Ortalanmış) */
        /* =================================================== */
        #ad-overlay {
            position: absolute;
            inset: 0; 
            background-color: rgba(0, 0, 0, 0.95); 
            z-index: 30; 
            /* REKLAMI TAM ORTALAYAN AYARLAR */
            display: flex; 
            align-items: center; 
            justify-content: center;
            transition: opacity 0.3s ease;
        }

        /* Geri Sayım Sayacı Stili */
        #countdown-timer {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 16px;
            font-weight: bold;
            z-index: 40; 
        }

        /* Part Butonları Stili */
        .part-button { 
            background-color: var(--color-light-bg); border: 1px solid #333; transition: all 0.2s; cursor: pointer; 
            box-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        .part-button:hover:not(.active) { background-color: #333; }
        .part-button.active { 
            background-color: var(--color-accent); color: var(--color-dark-bg); font-weight: bold; 
            transform: scale(1.05); box-shadow: 0 0 15px var(--color-accent);
        }

        /* Yorum Alanı Stili */
        .comment-card { background-color: var(--color-light-bg); border-radius: 6px; }
        .vote-button { transition: all 0.2s ease-in-out; }

        /* Alt Sabit Reklam Alanı Ortalamak İçin */
        .sticky-footer-ad-container {
            display: flex; justify-content: center; align-items: center; width: 100%; height: 100%;
        }

        /* =================================================== */
        /* Responsive Reklam Alanı Stilleri */
        /* =================================================== */
        .desktop-ad-container {
            display: none; 
        }
        .mobile-ad-container {
            display: flex; 
            height: 50px; 
        }

        @media (min-width: 768px) {
            .desktop-ad-container {
                display: flex; 
                height: 90px; 
            }
            .mobile-ad-container {
                display: none; 
            }
        }
        /* SEO SECTION STYLES */
        .seo-section {
            padding: 50px 4% 80px;
            background: #0a0a0a;
        }
        .seo-card {
            max-width: 1100px;
            margin: 0 auto;
            background: rgba(18,18,18,0.9);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px;
            padding: 32px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.45);
        }
        .seo-card h2 {
            font-size: 1.6rem;
            color: var(--primary);
            margin-bottom: 16px;
        }
        .seo-card .seo-block h2 {
            font-size: 1.2rem;
            margin-top: 18px;
        }
        .seo-card p {
            color: #cbd5f5;
            margin-bottom: 12px;
            line-height: 1.7;
        }
        .seo-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }
        .seo-links a {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            padding: 8px 14px;
            border-radius: 999px;
            font-size: 0.85rem;
            transition: var(--transition-smooth);
        }
        .seo-links a:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        /* SEO SECTION STYLES END */