/* =================================================== */
        /* MODERN RESET & DEĞİŞKENLER (Cyberpunk Theme) */
        /* =================================================== */
        :root {
            --bg-main: #0a0a0a;
            --bg-secondary: #161616;
            --bg-glass: rgba(22, 22, 22, 0.90);
            --primary: #00f2ff; /* Cyber Cyan */
            --primary-dim: rgba(0, 242, 255, 0.15);
            --text-main: #ffffff;
            --text-muted: #a3a3a3;
            --radius-md: 12px;
            --radius-lg: 20px;
            --shadow-glow: 0 0 20px rgba(0, 242, 255, 0.3);
            --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--bg-main);
            color: var(--text-main);
            line-height: 1.5;
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; transition: var(--transition-smooth); }

        /* Kaydırma Çubuğu */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--bg-main); }
        ::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--primary); }

        /* =================================================== */
        /* HEADER (GLASSMORPHISM) */
        /* =================================================== */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 4%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(10, 10, 10, 0.01);
            backdrop-filter: blur(0px);
            transition: var(--transition-smooth);
            border-bottom: 1px solid transparent;
        }

        .main-header.scrolled {
            background: var(--bg-glass);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding: 10px 4%;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: white;
            z-index: 2;
        }

        .logo span { color: var(--primary); text-shadow: 0 0 15px var(--primary); }

        .back-home-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
        }
        .back-home-btn:hover { color: var(--primary); }

        /* =================================================== */
        /* HERO SECTION */
        /* =================================================== */
        .hero-section {
            position: relative;
            height: 60vh;
            min-height: 500px;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            /* Konuşanlar Görseli */
            background-image: url('/assets/konusanlar.jpg');
            background-size: cover;
            background-position: center top;
            background-attachment: fixed;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, var(--bg-main) 0%, rgba(10,10,10,0.85) 40%, rgba(10,10,10,0.3) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
            padding-top: 80px;
        }

        .badge {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            font-weight: 700;
            font-size: 0.75rem;
            padding: 4px 12px;
            border-radius: 4px;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-right: 10px;
        }

        .show-title {
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 900;
            line-height: 1;
            margin-bottom: 20px;
            color: white;
            text-shadow: 0 4px 30px rgba(0,0,0,0.9);
        }

        .show-meta {
            display: flex;
            gap: 20px;
            color: #ccc;
            font-size: 1rem;
            margin-bottom: 30px;
            align-items: center;
        }
        
        .show-meta span { display: flex; align-items: center; gap: 5px; }

        .description {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.8);
            max-width: 700px;
            margin-bottom: 35px;
            font-weight: 300;
            line-height: 1.6;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition-smooth);
            border: none;
        }

        .btn-play {
            background: var(--primary);
            color: black;
            box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
        }
        
        .btn-play:hover {
            background: white;
            transform: translateY(-3px);
            box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
        }

        /* =================================================== */
        /* SEZON TABLARI */
        /* =================================================== */
        .season-tabs-container {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            padding-bottom: 20px;
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .season-tab {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            padding: 10px 25px;
            border-radius: 30px;
            cursor: pointer;
            white-space: nowrap;
            font-weight: 600;
            transition: var(--transition-smooth);
        }

        .season-tab:hover {
            color: white;
            background: rgba(255,255,255,0.1);
        }

        .season-tab.active {
            background: rgba(0, 242, 255, 0.1);
            border-color: var(--primary);
            color: var(--primary);
            box-shadow: 0 0 15px rgba(0, 242, 255, 0.15);
        }

        /* =================================================== */
        /* EPISODE GRID */
        /* =================================================== */
        .content-section {
            padding: 60px 4%;
            position: relative;
            z-index: 3;
            margin-top: -60px;
        }

        .section-header {
            margin-bottom: 30px;
        }

        .catalog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px;
        }

        .episode-card {
            display: block;
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            aspect-ratio: 16/9;
            background: var(--bg-secondary);
            transition: var(--transition-smooth);
            border: 1px solid rgba(255,255,255,0.05);
            text-decoration: none;
        }

        .episode-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .episode-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            opacity: 0.7;
        }

        .play-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            opacity: 0;
            transition: var(--transition-smooth);
            background: rgba(0,0,0,0.3);
        }

        .play-circle {
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: black;
            font-size: 1.2rem;
            transform: scale(0.5);
            transition: var(--transition-smooth);
        }

        .episode-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .episode-card:hover img { transform: scale(1.1); }
        .episode-card:hover .play-overlay { opacity: 1; }
        .episode-card:hover .play-circle { transform: scale(1); }

        .episode-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 15px;
            z-index: 3;
        }

        .ep-number {
            font-size: 0.8rem;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 2px;
            text-transform: uppercase;
        }

        .ep-title {
            font-size: 1rem;
            font-weight: 600;
            color: white;
            text-shadow: 0 2px 4px black;
        }

        /* Reklam Kartı Stili */
        .native-ad-card {
            grid-column: span 1;
            background: #111;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
            border: 1px dashed #333;
            min-height: 150px;
        }
        
        .native-ad-card::before {
            content: 'AD';
            position: absolute;
            top: 5px;
            right: 5px;
            font-size: 0.5rem;
            color: #444;
            border: 1px solid #333;
            padding: 1px 4px;
        }

        @media (min-width: 1024px) {
             .native-ad-card.wide { grid-column: span 2; }
        }

        /* =================================================== */
        /* FOOTER */
        /* =================================================== */
        .site-footer {
            background: var(--bg-secondary);
            border-top: 1px solid #222;
            padding: 40px 5%;
            text-align: center;
            color: #666;
            margin-top: 50px;
        }

        /* =================================================== */
        /* RESPONSIVE */
        /* =================================================== */
        @media (max-width: 768px) {
            .hero-section { height: 65vh; background-position: center center; }
            .show-title { font-size: 2.8rem; }
            .description { font-size: 0.95rem; }
            .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .ep-title { font-size: 0.9rem; }
        }
        /* 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 */