        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            color: #ffffff;
            line-height: 1.6;
        }

        /* Header */
        .header {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #4caf50;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #4caf50;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #4caf50;
        }

        /* Main Content */
        .main-content {
            margin-top: 80px;
            padding: 40px 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Video Player Section */
        .video-section {
            background: #1a1a1a;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .video-container {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            background: #000;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .video-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
            color: #4caf50;
            font-size: 1.2rem;
        }

        .play-button {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(45deg, #4caf50, #66bb6a);
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .play-button:hover {
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(76, 175, 80, 0.6);
        }

        .current-episode {
            text-align: center;
            margin-bottom: 20px;
        }

        .episode-title {
            font-size: 1.8rem;
            color: #4caf50;
            margin-bottom: 10px;
        }

        .episode-info {
            color: #b8b8b8;
            font-size: 1rem;
        }

        .episode-description {
            background: rgba(76, 175, 80, 0.1);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #4caf50;
            margin-top: 20px;
        }

        /* Season Tabs */
        .season-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
            justify-content: center;
        }

        .season-tab {
            padding: 12px 30px;
            border: none;
            background: #2a2a2a;
            color: #ffffff;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .season-tab.active {
            background: linear-gradient(45deg, #4caf50, #66bb6a);
            color: white;
        }

        .season-tab:hover {
            background: #4caf50;
            color: white;
        }

        /* Episodes Grid */
        .episodes-section {
            background: #1a1a1a;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 40px;
        }

        .episodes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .episode-card {
            background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
            border-radius: 12px;
            padding: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .episode-card:hover {
            border-color: #4caf50;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(76, 175, 80, 0.2);
        }

        .episode-card.playing {
            border-color: #4caf50;
            background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, #1e1e1e 100%);
        }

        .episode-number {
            color: #4caf50;
            font-weight: bold;
            font-size: 0.9rem;
            margin-bottom: 8px;
        }

        .episode-card-title {
            font-size: 1.2rem;
            color: #ffffff;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .episode-card-description {
            color: #b8b8b8;
            font-size: 0.9rem;
            line-height: 1.4;
            margin-bottom: 15px;
        }

        .episode-duration {
            color: #4caf50;
            font-size: 0.8rem;
            margin-bottom: 15px;
        }

        .watch-btn {
            background: linear-gradient(45deg, #4caf50, #66bb6a);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .watch-btn:hover {
            background: linear-gradient(45deg, #66bb6a, #4caf50);
            transform: translateY(-2px);
        }

        .playing-indicator {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #4caf50;
            color: white;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        /* Controls */
        .video-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .control-btn {
            background: #2a2a2a;
            color: #ffffff;
            border: none;
            padding: 10px 20px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .control-btn:hover {
            background: #4caf50;
        }

        .control-btn:disabled {
            background: #555;
            cursor: not-allowed;
            opacity: 0.5;
        }

        /* Footer */
        .footer {
            background: #0a0a0a;
            padding: 30px 0;
            text-align: center;
            border-top: 1px solid #333;
            margin-top: 60px;
        }

        .footer-text {
            color: #b8b8b8;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .season-tabs {
                flex-direction: column;
                align-items: center;
            }

            .season-tab {
                width: 200px;
            }

            .episodes-grid {
                grid-template-columns: 1fr;
            }

            .video-controls {
                flex-direction: column;
                align-items: center;
            }
        }