:root {
            --bg-main: #0a0a0a;
            --bg-secondary: #161616;
            --bg-glass: rgba(22, 22, 22, 0.90);
            --primary: #00f2ff; /* Goldish Theme for Halef */
            --primary-dim: rgba(255, 204, 0, 0.15);
            --text-main: #ffffff;
            --text-muted: #a3a3a3;
            --radius-md: 12px;
            --radius-lg: 20px;
            --shadow-glow: 0 0 20px rgba(255, 204, 0, 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); }

        ::-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 */
        .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: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
            transition: var(--transition-smooth);
        }

        .main-header.scrolled {
            background: var(--bg-glass);
            backdrop-filter: blur(12px);
            padding: 10px 4%;
        }

        .logo { font-size: 1.8rem; font-weight: 900; color: white; }
        .logo span { color: var(--primary); }

        .back-home-btn { font-weight: 600; color: rgba(255,255,255,0.7); font-size: 0.9rem; }
        .back-home-btn:hover { color: var(--primary); }

        /* HERO SECTION */
        .hero-section {
            position: relative;
            height: 75vh;
            min-height: 600px;
            width: 100%;
            display: flex;
            align-items: center;
            background-size: cover;
            background-position: center center;
            background-attachment: fixed;
            /* Default to Desktop Image */
            background-image: url('https://nqg6bkpsnhen.merlincdn.net//Programlar/Halef-Koklerin-Cagrisi/Halef-Koklerin-Cagrisi-overview-photo-4ca735e9-d365-41a6-81a0-016d165cac8f.jpg');
        }

        /* Mobile specific background */
        @media (max-width: 768px) {
            .hero-section {
                height: 65vh;
                background-image: url('https://nqg6bkpsnhen.merlincdn.net//Programlar/Halef-Koklerin-Cagrisi/Halef-Koklerin-Cagrisi-mobile-cover-photo-34c000a0-6c28-4421-b6e9-15cfbbda7aee.jpg');
                background-attachment: scroll; /* Fixes some mobile browser jitter */
            }
        }

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

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

        .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;
        }

        .show-title {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 20px;
            text-shadow: 0 4px 30px rgba(0,0,0,0.8);
        }

        .description {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.9);
            max-width: 650px;
            margin-bottom: 35px;
            font-weight: 300;
            line-height: 1.6;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

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

        .btn-play { background: var(--primary); color: black; box-shadow: var(--shadow-glow); }
        .btn-play:hover { background: white; transform: translateY(-3px); }

        /* GRID */
        .content-section { padding: 40px 4%; margin-top: -50px; position: relative; z-index: 3; }
        
        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 15px;
        }

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

        @media (max-width: 768px) {
            .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
        }

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

        .episode-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
        .episode-card:hover img { transform: scale(1.05); }

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

        .episode-info { position: absolute; bottom: 0; left: 0; width: 100%; padding: 15px; z-index: 2; }
        .ep-number { font-size: 0.75rem; color: var(--primary); font-weight: 800; margin-bottom: 4px; }
        .ep-title { font-size: 0.95rem; font-weight: 600; color: white; }

        .play-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3;
            opacity: 0;
            transition: 0.3s;
        }
        .episode-card:hover .play-overlay { opacity: 1; }
        .play-circle { width: 45px; height: 45px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: black; }

        .footer { padding: 40px; text-align: center; color: #555; border-top: 1px solid #1a1a1a; margin-top: 40px; }
        /* 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 */