
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        :root {
            --holo-blue: #7fdbff;
            --electric-orange: #FF5722;
            --dark-bg: rgba(0, 0, 0, 0.7);
        }

        body {
            overflow: hidden;
            background-color: #000;
            color: white;
             height: 100%;
            min-height: 100vh;
            width: 100vw;
        }

        #video-background {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
           width: auto;
            height: auto;
            min-width: 100%;
            min-height: 100%;
            object-fit: cover;
            z-index: -1000;
            background-color: #000;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
            z-index: -999;
        }

        /* News Ticker */
        .news-ticker {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark-bg);
            color: white;
            padding: 12px 0;
            overflow: hidden;
            border-bottom: 1px solid var(--holo-blue);
            z-index: 1000;
        }

        .ticker-content {
            white-space: nowrap;
            display: inline-block;
            animation: ticker 60s linear infinite;
            padding-left: 100%;

        }

        @keyframes ticker {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        .news-item {
            display: inline-block;
            margin-right: 50px;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: bold;
            font-size: 12px !important;
        }

        .news-item span {
            color: var(--holo-blue);
            margin-right: 10px;
        }

        /* Player */
        .player-container {
            position: absolute;
            top: 50vh;
            left: 50%;
            transform: translate(-50%, -50%) scale(1);
            width: 400px;
            max-height: 90vh;
            background-color: var(--dark-bg);
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 10;
            overflow-y: auto;
        }

        .station-name {
            font-size: 28px;
            margin-bottom: 5px;
            font-weight: 900;
            background: linear-gradient(to right, var(--holo-blue), var(--electric-orange));
    -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .tagline {
            font-size: 14px;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.8);
            font-style: italic;
        }

        .now-playing {
            font-size: 16px;
            margin-bottom: 10px;
            color: var(--holo-blue);
        }

        .track-info {
            font-size: 18px;
            margin-bottom: 20px;
            color: white;
            height: 27px;
            overflow: hidden;
        }

        .player-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .play-button {
            background: linear-gradient(45deg, var(--holo-blue), var(--electric-orange));
            color: white;
            border: none;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            cursor: pointer;
            font-size: 24px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .play-button:hover {
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(255, 87, 34, 0.7);
        }

        .volume-control {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
        }

        .volume-slider {
            width: 100%;
            -webkit-appearance: none;
            height: 5px;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.2);
            outline: none;
        }

        .volume-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--holo-blue);
            cursor: pointer;
        }

        .visualizer {
            height: 50px;
            margin: 20px 0;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            gap: 2px;
        }

        .bar {
            width: 8px;
            background: linear-gradient(to top, var(--holo-blue), var(--electric-orange));
            border-radius: 5px 5px 0 0;
        }

        /* Banner Ads */
        .ad-left, .ad-right {
            position: absolute;
            width: 160px;
            height: 600px;
            background-color: var(--dark-bg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 15px rgba(127, 219, 255, 0.3);
            backdrop-filter: blur(5px);
        }

        .ad-left {
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
        }

        .ad-right {
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
        }

        .ad-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Footer */
        .footer {
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: var(--dark-bg);
            padding: 12px 0;
            text-align: center;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
            border-top: 1px solid var(--electric-orange);
            z-index: 1000;
        }
        .station-logo {
            width: 320px;
            height: 320px;
            border-radius: 50%;
            margin: 0 auto 15px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: transparent;
            border: 0px solid var(--holo-blue);
            box-shadow: 0 0 15px rgba(127, 219, 255, 0.5);
            overflow: hidden;
        }
        
        .station-logo img {
            width: 95%;
            height: 95%;
            object-fit: contain;
        }

        @keyframes vinyl-rotation {
            from {
            transform: rotate(0deg);
            }
            to {
            transform: rotate(360deg);
            }
        }
        
        .station-logo.playing {
            animation: vinyl-rotation 1.818s linear infinite; /* 33 RPM = 1.818 seconds per rotation */
        }
        
        .station-logo.paused {
            animation-play-state: paused;
        }





        /* Responsive adjustments */

/* Add this new media query for medium-sized desktop screens */
@media (max-width: 1200px) {
    .player-container {
        width: 350px; /* Slightly smaller player on medium screens */
    }
    
    .ad-left, .ad-right {
        width: 120px; /* Narrower ads */
        height: 500px; /* Shorter ads */
    }
    
    .ad-left {
        left: 10px; /* Move closer to edge */
    }
    
    .ad-right {
        right: 10px; /* Move closer to edge */
    }
    
    .station-logo {
        width: 280px;
        height: 280px;
    }
}

/* Add this for even smaller desktop screens */
@media (max-width: 1024px) {
    .player-container {
        width: 320px;
        padding: 15px;
    }
    
    .ad-left, .ad-right {
        width: 100px;
        height: 400px;
    }
    
    .station-logo {
        width: 240px;
        height: 240px;
    }
    
    .station-name {
        font-size: 24px;
    }
    
    .track-info {
        font-size: 16px;
    }
}

/* For screens where even the adjusted layout might not fit */
@media (max-width: 900px) {
    .ad-left, .ad-right {
        display: none; /* Hide ads when there's really no space */
    }
    
    .player-container {
        transform: translate(-50%, -50%) scale(0.9); /* Slightly scale down the player */
    }
}

@media (max-width: 768px) {
            .player-container {
                width: 90%;
                max-width: 400px;
            }
            
            .ad-left, .ad-right {
                display: none;
            }
            #video-background {
                height: 100%;
                width: auto;
                min-width: 100%;
                object-position: center;
            }
        }

@media (max-height: 700px) {
    .player-container {
        top: 55vh; /* Position slightly higher on short screens */
        transform: translate(-50%, -50%) scale(0.9);
    }
    
    .station-logo {
        width: 200px;
        height: 200px;
    }
    
    .visualizer {
        height: 30px;
        margin: 10px 0;
    }
}

@media (max-height: 600px) {
    .player-container {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 20px auto;
    }
    
    .news-ticker {
        position: relative;
    }
    
    .footer {
        position: relative;
    }
}


/* Mobile-specific adjustments */
@media (max-width: 480px) {
    /* Fix video background scaling on small screens */
    #video-background {
        width: 100%;
        height: auto;
        min-height: 100vh;
    }
    
    /* Adjust player container for small screens */
    .player-container {
        width: 95%;
        padding: 15px;
    }
    
    /* Make station logo smaller on mobile */
    .station-logo {
        width: 200px;
        height: 200px;
    }
    
    /* Adjust font sizes for mobile */
    .station-name {
        font-size: 22px;
    }
    
    .tagline {
        font-size: 12px;
    }
    
    .now-playing {
        font-size: 14px;
    }
    
    .track-info {
        font-size: 16px;
    }
    
    /* Make play button slightly smaller */
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    /* Adjust news ticker for mobile */
    .news-ticker {
        padding: 8px 0;
    }
    
    .news-item {
        font-size: 10px !important;
        margin-right: 30px;
    }
    
    /* Ensure visualizer bars don't overflow */
    .visualizer {
        height: 40px;
        gap: 1px;
    }
    
    .bar {
        width: 6px;
    }
    
    /* Footer adjustments */
    .footer {
        font-size: 10px;
        padding: 8px 0;
    }
}

/* Extra small screen adjustments */
@media (max-width: 360px) {
    .station-logo {
        width: 180px;
        height: 180px;
    }
    
    .station-name {
        font-size: 20px;
    }
    
    .track-info {
        font-size: 15px;
    }
    
    .player-controls {
        gap: 15px;
    }
    
    .news-item {
        margin-right: 20px;
    }
}
 