* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Poppins', sans-serif;
        }

        html, body {
            height: 100%;
            overflow-x: hidden;
        }

        body {
            background-color: #080808;
            color: #ffffff;
            display: flex;
            flex-direction: column;
            padding-bottom: 85px;
        }

        /* HEADER */
        header {
            width: 100%;
            background-color: #080808;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            flex-shrink: 0;
            min-height: 65px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .header-container {
            max-width: 1800px;
            width: 98%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        /* LOGO */
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #000000;
            color: #f58433;
            padding: 8px 18px;
            border-radius: 6px;
            font-family: 'Inter', sans-serif;
            font-weight: 900;
            font-size: 20px;
            letter-spacing: 0.2px;
            border: 1px solid rgba(245, 132, 51, 0.35);
            flex-shrink: 0;
            line-height: 1;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 28px;
            margin-left: auto;
        }

        .nav-links a {
            color: #d1d1d1;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s;
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: #f58433;
        }

        .social-links {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #ffffff;
            font-size: 15px;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.8);
            transition: all 0.25s ease;
            flex-shrink: 0;
        }

        .social-links a.instagram { color: #E4405F; }
        .social-links a.instagram:hover {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            color: #ffffff;
            border-color: transparent;
            box-shadow: 0 4px 12px rgba(228, 64, 95, 0.4);
            transform: translateY(-2px);
        }

        .social-links a.threads { color: #000000; }
        .social-links a.threads:hover {
            background: #000000;
            color: #ffffff;
            border-color: #000000;
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        .social-links a.youtube { color: #FF0000; }
        .social-links a.youtube:hover {
            background: #FF0000;
            color: #ffffff;
            border-color: #FF0000;
            box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
            transform: translateY(-2px);
        }

        .social-links a.facebook { color: #1877F2; }
        .social-links a.facebook:hover {
            background: #1877F2;
            color: #ffffff;
            border-color: #1877F2;
            box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
            transform: translateY(-2px);
        }

        /* MAIN */
        main {
            max-width: 1800px;
            width: 98%;
            margin: 0 auto;
            padding: 16px 0;
            flex: 1;
            display: flex;
            align-items: stretch;
            min-height: calc(100vh - 150px);
        }

        .grid-container {
            display: grid;
            grid-template-columns: 2.3fr 0.7fr;
            gap: 24px;
            align-items: stretch;
            width: 100%;
            height: 100%;
        }

        .stream-section {
            display: flex;
            flex-direction: column;
            width: 100%;
            height: 100%;
        }

        .video-box {
            position: relative;
            width: 100%;
            height: 100%;
            background: #000000;
            border-radius: 12px;
            overflow: hidden;
            border: 2px solid rgba(255, 204, 0, 0.25);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
        }

        #twitch-embed {
            width: 100%;
            height: 100%;
            display: block;
        }

        #twitch-embed iframe {
            width: 100% !important;
            height: 100% !important;
            border: none;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10;
            cursor: pointer;
            background: rgba(0,0,0,0.001);
        }

        .program-section {
            display: flex;
            flex-direction: column;
            gap: 8px;
            height: 100%;
        }

        .program-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            flex-shrink: 0;
        }

        .program-card {
            width: 100%;
            flex: 1;
            background: #18181c;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .program-card img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }

        /* BOTTOM PLAYER */
        .bottom-player {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 85px;
            background-color: #000000;
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: center;
            z-index: 999;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .player-container {
            max-width: 1800px;
            width: 98%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

        .player-left-group {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-shrink: 0;
        }

        .play-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #f58433;
            color: #000000;
            border: none;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: transform 0.2s, background-color 0.2s;
            box-shadow: 0 0 15px rgba(255, 204, 0, 0.4);
        }

        .play-btn:hover {
            transform: scale(1.08);
            background-color: #f58433;
        }

        .player-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .live-dot {
            width: 10px;
            height: 10px;
            background-color: #ff0000;
            border-radius: 50%;
            box-shadow: 0 0 8px #ff0000;
            animation: pulse 1.5s infinite;
        }

        .player-info h4 {
            font-size: 15px;
            font-weight: 700;
            color: #ffffff;
        }

        .player-info p1 {
            font-size: 12px;
            font-weight: 700;
            color: #aaaaaa;
        }

        .player-info p2 {
            font-size: 12px;
            color: #aaaaaa;
        }

        .visualizer-container {
            flex: 1;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 4px;
            height: 48px;
            padding: 0;
            background: transparent;
            border: none;
        }

        .visualizer-bar {
            flex: 1;
            width: 100%;
            height: 4px;
            border-radius: 2px 2px 0 0;
            transition: height 0.05s ease;
        }

        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.3; }
            100% { opacity: 1; }
        }

        /* RESPONSIVE DESIGN FOR MOBILE */
        @media (max-width: 900px) {
            header {
                height: auto;
                padding: 10px 0;
            }

            .header-container {
                width: 94%;
                gap: 10px;
            }

            .logo {
                font-size: 16px;
                padding: 6px 12px;
            }

            .social-links {
                gap: 6px;
            }

            .social-links a {
                width: 32px;
                height: 32px;
                font-size: 13px;
            }

            main {
                width: 94%;
                min-height: auto;
            }

            .grid-container {
                grid-template-columns: 1fr;
            }

            .video-box {
                min-height: 250px;
            }

            .nav-links {
                display: none;
            }

            .player-container {
                width: 94%;
            }

            .visualizer-container {
                gap: 2px;
            }
        }

        @media (max-width: 380px) {
            .social-links a {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }
        }