        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
        }

        body {
            color: #e2e8f0;
            line-height: 1.5;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow-x: hidden;
        }

        /* Latar gradien dinamis + partikel */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0f172a 0%, #1a2a4a 25%, #0f172a 50%, #1a3a5a 75%, #0f172a 100%);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
            z-index: -2;
        }

        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(250, 204, 21, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 40% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Partikel */
        @keyframes float1 {
            0%, 100% { transform: translate(0,0) scale(1); opacity:0.3; }
            50% { transform: translate(100px, -100px) scale(1.5); opacity:0.6; }
        }
        @keyframes float2 {
            0%, 100% { transform: translate(0,0) scale(1); opacity:0.2; }
            50% { transform: translate(-150px, 150px) scale(0.8); opacity:0.5; }
        }
        @keyframes float3 {
            0%, 100% { transform: translate(0,0) scale(1); opacity:0.25; }
            50% { transform: translate(80px, 120px) scale(1.3); opacity:0.55; }
        }

        .particle {
            position: fixed;
            border-radius: 50%;
            pointer-events: none;
            z-index: -1;
        }
        .particle-1 {
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(250,204,21,0.15) 0%, transparent 70%);
            top: -100px; left: 10%;
            animation: float1 20s ease-in-out infinite;
        }
        .particle-2 {
            width: 300px; height: 300px;
            background: radial-gradient(circle, rgba(239,68,68,0.12) 0%, transparent 70%);
            bottom: -50px; right: 15%;
            animation: float2 25s ease-in-out infinite;
        }
        .particle-3 {
            width: 350px; height: 350px;
            background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
            top: 50%; left: -100px;
            animation: float3 22s ease-in-out infinite;
        }

        /* Navbar */
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
            background: linear-gradient(180deg, #0b1a2a 0%, rgba(11,26,42,0.9) 90%);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            border-bottom: 1px solid #2d4b65;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: #e0e7ff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.5px;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: #facc15;
        }

        .nav-brand {
            font-family: Impact, "Arial Black", "Trebuchet MS", sans-serif;
            font-size: 1.15rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            line-height: 1;
            background: linear-gradient(180deg, #fef3c7 0%, #facc15 45%, #d97706 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 6px rgba(250, 204, 21, 0.5), 0 2px 8px rgba(217, 119, 6, 0.35);
            -webkit-text-stroke: 0.4px rgba(120, 53, 15, 0.7);
            transform: skewX(-7deg);
            white-space: nowrap;
            margin-left: 1rem;
        }

        .nav-premium {
            background: #facc15;
            color: #0b1a2a !important;
            padding: 0.5rem 1.2rem;
            border-radius: 30px;
            font-weight: 700;
        }

        .nav-premium:hover {
            background: #eab308;
            color: #0b1a2a;
        }

        /* Hero section */
        .hero {
            position: relative;
            height: 70vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            padding: 0 4rem;
            margin-bottom: 2rem;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://ovp.itv.com/v2/images/programme/m8kh7v6/itv_hub/01_Hero_DesktopCTV/16x9?distributionPartner=itv_hub&fallback=standard&w=1597&q=80&blur=0&bg=false');
            background-size: cover;
            background-position: center 30%;
            z-index: -2;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #0b1a2a 15%, rgba(11,26,42,0.3) 70%);
            z-index: -1;
        }

        .hero-content {
            max-width: 650px;
            z-index: 2;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .hero-title span {
            display: block;
            font-size: 2.5rem;
            font-weight: 400;
            color: #facc15;
            margin-bottom: 0.5rem;
            letter-spacing: 2px;
        }

        .hero-tags {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 1.5rem 0 1rem;
            font-size: 1rem;
            font-weight: 600;
            color: #b0c4de;
        }

        .hero-tags .badge {
            background: #2d4b65;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            color: white;
        }

        .hero-description {
            font-size: 1.2rem;
            color: #e2e8f0;
            margin-bottom: 2rem;
            line-height: 1.6;
            max-width: 550px;
        }

        .hero-description .more-info {
            color: #facc15;
            text-decoration: none;
            font-weight: 600;
            margin-left: 0.5rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .btn {
            padding: 0.9rem 2.2rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            transition: transform 0.2s, background 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-play {
            background: #facc15;
            color: #0b1a2a;
        }

        .btn-play:hover {
            background: #eab308;
            transform: scale(1.05);
        }

        .btn-list {
            background: rgba(45, 75, 101, 0.7);
            backdrop-filter: blur(4px);
            color: white;
            border: 1px solid #64748b;
        }

        .btn-list:hover {
            background: #2d4b65;
            transform: scale(1.05);
        }

        /* Container utama */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.5rem;
            flex: 1;
            width: 100%;
        }

        /* Header personal */
        .header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #334155;
        }

        .header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #fbbf24, #ef4444);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .header span {
            font-size: 1.2rem;
            color: #94a3b8;
            margin-left: auto;
        }

        /* Tabs */
        .tabs {
            display: flex;
            gap: 2rem;
            border-bottom: 2px solid #2d4b65;
            margin-bottom: 1.5rem;
        }

        .tab {
            font-size: 1.3rem;
            font-weight: 700;
            padding: 0.5rem 0;
            cursor: pointer;
            color: #94a3b8;
            border-bottom: 4px solid transparent;
            transition: all 0.2s;
        }

        .tab.active {
            color: #facc15;
            border-bottom-color: #facc15;
        }

        /* Layout utama */
        .content-wrapper {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        /* Season sidebar */
        .season-sidebar {
            flex: 0 0 240px;
            background: #1e293b;
            border-radius: 1.5rem;
            padding: 1.5rem 1rem;
            height: fit-content;
            box-shadow: 0 10px 25px -5px rgba(0,0,0,0.5);
        }

        .season-sidebar h2 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #facc15;
            letter-spacing: 1px;
            padding-left: 0.5rem;
        }

        .season-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .season-btn {
            background: transparent;
            border: none;
            color: #cbd5e1;
            text-align: left;
            padding: 0.8rem 1rem;
            border-radius: 2rem;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .season-btn:hover {
            background: #334155;
            color: white;
            transform: translateX(5px);
        }

        .season-btn.active {
            background: #facc15;
            color: #0f172a;
            font-weight: 600;
            box-shadow: 0 4px 12px #facc1540;
        }

        .season-badge {
            background: #475569;
            color: white;
            border-radius: 20px;
            padding: 0.2rem 0.7rem;
            font-size: 0.8rem;
            margin-left: auto;
        }

        .season-btn.active .season-badge {
            background: #0f172a;
            color: #facc15;
        }

        /* Main content */
        .main-content {
            flex: 1;
            min-width: 300px;
        }

        /* Video player */
        .player-section {
            background: #000;
            border-radius: 1.5rem;
            overflow: hidden;
            aspect-ratio: 16 / 9;
            margin-bottom: 2rem;
            box-shadow: 0 20px 30px -10px black;
        }

        .player-section iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Episode header */
        .episode-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .episode-header h3 {
            font-size: 1.8rem;
            color: #f1f5f9;
        }

        .episode-count {
            background: #334155;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
        }

        /* Episode grid */
        .episode-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 1rem;
        }

        .episode-card {
            background: #1e293b;
            border-radius: 1rem;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #334155;
        }

        .episode-card:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 20px rgba(250, 204, 21, 0.2);
            border-color: #facc15;
        }

        .episode-thumb {
            aspect-ratio: 16/9;
            background-size: cover;
            background-position: center;
            background-color: #0f172a; /* fallback */
        }

        .episode-info {
            padding: 1rem;
        }

        .episode-title {
            font-weight: 600;
            margin-bottom: 0.3rem;
            display: flex;
            justify-content: space-between;
        }

        .episode-number {
            color: #facc15;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .episode-duration {
            font-size: 0.85rem;
            color: #94a3b8;
        }

        .no-episodes {
            grid-column: 1 / -1;
            text-align: center;
            padding: 3rem;
            background: #1e293b;
            border-radius: 1rem;
            color: #94a3b8;
        }

        /* Footer */
        .footer {
            margin-top: 3rem;
            text-align: center;
            color: #64748b;
            border-top: 1px solid #334155;
            padding-top: 1.5rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .navbar {
                padding: 0.8rem 1rem;
                flex-wrap: wrap;
            }
            .nav-links {
                gap: 1rem;
                flex-wrap: wrap;
            }
            .nav-brand {
                width: 100%;
                margin-left: 0;
                margin-top: 0.4rem;
                font-size: 1rem;
                text-align: left;
            }
            .hero {
                padding: 0 1.5rem;
                min-height: 500px;
            }
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-title span {
                font-size: 1.8rem;
            }
            .hero-description {
                font-size: 1rem;
            }
            .btn {
                padding: 0.7rem 1.5rem;
                font-size: 1rem;
            }
            .container {
                padding: 1rem;
            }
            .header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
                margin-bottom: 1.5rem;
            }
            .header h1 {
                font-size: 1.8rem;
            }
            .header span {
                font-size: 1rem;
                margin-left: 0;
            }
            .tabs {
                gap: 1rem;
            }
            .tab {
                font-size: 1.1rem;
            }
            .content-wrapper {
                flex-direction: column;
                gap: 1rem;
            }
            .season-sidebar {
                flex: auto;
                width: 100%;
                padding: 1rem;
            }
            .season-sidebar h2 {
                font-size: 1.2rem;
                margin-bottom: 1rem;
            }
            .season-list {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 0.4rem;
            }
            .season-btn {
                flex: 1 0 auto;
                min-width: calc(50% - 0.2rem);
                justify-content: center;
                padding: 0.7rem 0.8rem;
                font-size: 0.9rem;
            }
            .season-badge {
                font-size: 0.75rem;
                padding: 0.15rem 0.5rem;
            }
            .player-section {
                margin-bottom: 1.5rem;
            }
            .episode-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
                margin-bottom: 1rem;
            }
            .episode-header h3 {
                font-size: 1.3rem;
            }
            .episode-count {
                padding: 0.25rem 0.8rem;
                font-size: 0.8rem;
            }
            .episode-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 0.8rem;
            }
            .episode-card {
                border-radius: 0.8rem;
            }
            .episode-info {
                padding: 0.8rem;
            }
            .episode-title {
                font-size: 0.9rem;
            }
            .episode-duration {
                font-size: 0.75rem;
            }
            .footer {
                margin-top: 2rem;
                font-size: 0.85rem;
                padding-top: 1rem;
            }
            .particle-1 {
                width: 250px;
                height: 250px;
            }
            .particle-2 {
                width: 200px;
                height: 200px;
            }
            .particle-3 {
                width: 220px;
                height: 220px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 0 1rem;
            }
            .hero-title {
                font-size: 2rem;
            }
            .hero-title span {
                font-size: 1.5rem;
            }
            .container {
                padding: 0.8rem;
            }
            .header h1 {
                font-size: 1.5rem;
            }
            .header span {
                font-size: 0.9rem;
            }
            .season-sidebar {
                padding: 0.8rem;
            }
            .season-btn {
                padding: 0.6rem 0.7rem;
                font-size: 0.85rem;
            }
            .episode-header h3 {
                font-size: 1.1rem;
            }
            .episode-grid {
                grid-template-columns: 1fr;
                gap: 0.7rem;
            }
            .episode-card:hover {
                transform: scale(1.01);
            }
        }
    
