/* --- Reset & Base --- */
* {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

/* --- Inspice 2 Background (Stars) --- */
#space {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #0a0a0a;
    overflow: hidden;
}

/* --- Cover & Overlay --- */
.cover-site {
    position: relative;
    min-height: 100vh;
    z-index: 1;
}

#bgCover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(8px) brightness(0.4);
    transform: scale(1.1);
    z-index: 0;
    transition: background-image 1s ease-in-out;
}

.bg-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* --- Main Content Wrapper --- */
.content-wrapper {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- Navbar (Centered, Gradient Edges) --- */
.navbar-custom {
    position: fixed !important;
    top: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    max-width: 90% !important;
    z-index: 1030 !important;
    padding: 8px 20px !important;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.8) 15%, rgba(10, 10, 10, 0.9) 50%, rgba(10, 10, 10, 0.8) 85%, rgba(10, 10, 10, 0) 100%) !important;
    border-radius: 50px !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.3s ease !important;
}

.navbar-custom .navbar-brand {
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 900 !important;
    font-size: 1.3rem !important;
    color: #fff !important;
    text-shadow: 0 0 15px rgba(0, 150, 255, 0.5) !important;
    letter-spacing: 2px !important;
    margin-right: 20px !important;
    padding: 0 !important;
}

.navbar-custom .navbar-brand:hover {
    color: #7aeff5 !important;
}

.navbar-custom .navbar-nav {
    gap: 5px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.navbar-custom .nav-item {
    list-style: none !important;
}

.navbar-custom .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 8px 16px !important;
    border-radius: 30px !important;
    transition: all 0.3s ease !important;
    background: transparent !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    text-shadow: 0 0 20px rgba(122, 239, 245, 0.3) !important;
}

.navbar-custom .nav-link i {
    font-size: 1.1rem !important;
    vertical-align: middle !important;
}

.navbar-custom .navbar-toggler {
    border: none !important;
    padding: 5px 10px !important;
    color: #fff !important;
    background: transparent !important;
}

.navbar-custom .navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-custom .dropdown-menu {
    background: rgba(10, 10, 10, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
}

.navbar-custom .dropdown-item {
    color: #fff !important;
    transition: all 0.3s ease !important;
}

.navbar-custom .dropdown-item:hover {
    background: rgba(122, 239, 245, 0.15) !important;
    color: #7aeff5 !important;
}

.navbar-custom ul {
    margin: 0 !important;
    padding: 0 !important;
}

.navbar-custom li {
    list-style: none !important;
}

/* --- Навигация адаптивность --- */
@media (max-width: 991.98px) {
    .navbar-custom {
        top: 15px !important;
        padding: 8px 15px !important;
        border-radius: 30px !important;
        background: rgba(10, 10, 10, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
    }
    
    .navbar-custom .navbar-nav {
        padding-top: 15px !important;
        gap: 2px !important;
    }
    
    .navbar-custom .nav-link {
        font-size: 0.8rem !important;
        padding: 6px 12px !important;
        text-align: center !important;
    }
    
    .navbar-custom .navbar-collapse {
        background: rgba(10, 10, 10, 0.95) !important;
        border-radius: 15px !important;
        padding: 10px !important;
        margin-top: 10px !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
    }
}

@media (max-width: 576px) {
    .navbar-custom {
        top: 10px !important;
        padding: 5px 10px !important;
        max-width: 95% !important;
    }
    
    .navbar-custom .navbar-brand {
        font-size: 1rem !important;
        margin-right: 10px !important;
    }
}

/* --- Player Section --- */
#player {
    padding: 40px 0 20px;
}

.player-controls-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

/* --- Clock Display --- */
.clock-display {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #7aeff5;
    background: rgba(0, 0, 0, 0.4);
    padding: 5px 18px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(122, 239, 245, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-width: 220px;
    justify-content: center;
}

.clock-display .clock {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-family: 'Orbitron', monospace;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0;
}

.clock-display .clock span {
    display: inline-block;
    min-width: 1.2em;
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-variant-numeric: tabular-nums;
}

.clock-display .clock__dots {
    min-width: 0.3em !important;
    color: #fff;
}

/* --- Player24 Styles (полный исправленный блок) --- */
.my_energy {
    width: 296px !important;
    height: 73px !important;
    background: url(//rz24h.ru/templates/assets/js/2/player24/img/player24.png) !important;
    line-height: 1.2 !important;
    position: relative !important;
    display: block !important;
}

.my_energy .my_song {
    cursor: pointer !important;
    position: absolute !important;
    overflow: hidden !important;
    top: 28px !important;
    left: 15px !important;
    width: 214px !important;
    height: 20px !important;
    font: 14px Verdana !important;
    color: #ddddff !important;
    z-index: 2 !important;
}

.my_energy .my_marquee {
    position: absolute !important;
    padding-left: 100% !important;
    white-space: nowrap !important;
    animation: scroll-left 15s linear infinite !important;
}

@keyframes scroll-left {
    0% { transform: translateX(0) !important; }
    100% { transform: translateX(-100%) !important; }
}

/* --- Регулятор громкости (исправленный) --- */
.my_energy .my_volumediv {
    position: absolute !important;
    top: 8px !important;
    left: 261px !important;
    width: 28px !important;
    height: 60px !important;
    cursor: pointer !important;
    user-select: none !important;
    z-index: 3 !important;
    background: transparent !important;
    overflow: hidden !important;
}



.my_energy .my_volumediv {
  position: absolute;
  top: 8px;
  left: 261px;
  width: 28px;
  height: 60px;
  cursor: pointer;
  user-select: none;
}


/* --- Кнопка play/pause --- */
.my_energy .my_play {
    position: absolute !important;
    top: 21px !important;
    left: 236px !important;
    border-radius: 50% !important;
    width: 34px !important;
    height: 34px !important;
    cursor: pointer !important;
    z-index: 2 !important;
    background: transparent !important;
    transition: 0.3s !important;
    background-image: url(//myradio24.com/player/energy/magento/play.png) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.my_energy .my_playing {
    background-image: url(//myradio24.com/player/energy/magento/pause.png) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.my_energy .my_play:hover {
    background-image: url(//myradio24.com/player/energy/magento/play_over.png) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.my_energy .my_playing:hover {
    background-image: url(//myradio24.com/player/energy/magento/pause_over.png) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* --- Таймер --- */
.my_energy .my_timer {
    position: absolute !important;
    text-align: left !important;
    top: 18px !important;
    left: 20px !important;
    width: 90px !important;
    font: 10px Verdana !important;
    color: #508DCB !important;
    z-index: 2 !important;
}

/* --- Загрузка --- */
.my_energy .my_loading {
    position: absolute !important;
    top: 18px !important;
    left: 60px !important;
    width: 50px !important;
    font: 10px Verdana !important;
    color: #cccccc !important;
    text-align: left !important;
    z-index: 2 !important;
}

/* --- Слушатели --- */
.my_energy .my_listeners {
    position: absolute !important;
    top: 45px !important;
    left: 20px !important;
    width: 90px !important;
    font: 9px Verdana !important;
    color: #508DCB !important;
    text-align: left !important;
    z-index: 2 !important;
}

/* --- Цветовые схемы --- */
.my_energy.my_blue .my_timer, 
.my_energy.my_blue .my_listeners {
    color: #508DCB !important;
}

.my_energy.my_green .my_timer, 
.my_energy.my_green .my_listeners {
    color: #00F600 !important;
}

.my_energy.my_red .my_timer, 
.my_energy.my_red .my_listeners {
    color: #FF0000 !important;
}

.my_energy.my_yellow .my_timer, 
.my_energy.my_yellow .my_listeners {
    color: #FFFF00 !important;
}

.my_energy.my_magento .my_timer, 
.my_energy.my_magento .my_listeners {
    color: #FF2DFF !important;
}

.my_energy.my_gray .my_timer, 
.my_energy.my_gray .my_listeners {
    color: #DDDDDD !important;
}

/* --- Cover Art --- */
.cover-album {
    max-width: 280px;
    width: 100%;
    margin: 0 auto 20px;
    aspect-ratio: 1/1;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cover-album:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
}

#currentCoverArt {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
}

/* --- ON AIR Title --- */
.on-air-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 0 0 30px rgba(0, 150, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.on-air-title i {
    color: #ff3366;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

/* --- Progress Bar (Main) --- */
#progress-container {
    width: 100%;
    max-width: 600px;
    margin: 15px auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    height: 30px !important;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

#progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #7aeff5, #3b82f6, #7aeff5);
    background-size: 200% 100%;
    border-radius: 30px;
    transition: width 1s linear;
    animation: shimmer 3s infinite linear;
}

#countdown-timer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem !important;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    white-space: nowrap;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.blink {
    animation: blink-animation 1s steps(2, start) infinite;
    background-color: #f44336 !important;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}


.playon-slide .music-info .song,
.playon-slide .track-marquee-inner {
    color: #ffffff !important;
    font-weight: 700;
}

.playon-slide .music-info .artist,
.playon-slide .artist-marquee-inner {
    color: #7aeff5 !important;
    font-weight: 400;
}

.playon-slide .music-info .lastime,
.playon-slide .time-value {
    color: rgba(255, 255, 255, 0.6) !important;
}

.playon-slide.current .time-value {
    color: rgba(122, 239, 245, 0.9) !important;
}

/* Для PAST блока - чуть темнее */
.playon-slide.past .music-info .song,
.playon-slide.past .track-marquee-inner {
    color: rgba(255, 255, 255, 0.6) !important;
}

.playon-slide.past .music-info .artist,
.playon-slide.past .artist-marquee-inner {
    color: rgba(122, 239, 245, 0.5) !important;
}

/* Для NEXT блока */
.playon-slide.next .music-info .song,
.playon-slide.next .track-marquee-inner {
    color: rgba(255, 255, 255, 0.7) !important;
}

.playon-slide.next .music-info .artist,
.playon-slide.next .artist-marquee-inner {
    color: rgba(122, 239, 245, 0.6) !important;
}


/* --- PlayOn Slider --- */
.playon-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 15px 0;
}

.playon-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    will-change: transform;
}

.playon-slide {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 280px;
    padding: 15px 20px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 15px;
    box-sizing: border-box;
}

/* Progress bar inside current slide */
.playon-slide.current::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #7aeff5, #3b82f6);
    border-radius: 2px;
    opacity: 0.5;
    animation: slidebar-progress 30s linear infinite;
}

@keyframes slidebar-progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Slide progress bar (dynamic) */
.slide-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #7aeff5, #3b82f6);
    border-radius: 2px;
    opacity: 0.6;
    transition: width 0.5s linear;
    z-index: 1;
    pointer-events: none;
}

.playon-slide.current {
    border-color: rgba(122, 239, 245, 0.3);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 40px rgba(122, 239, 245, 0.05);
}

.playon-slide.past {
    opacity: 0.7;
    transform: scale(0.97);
    border-color: rgba(255, 255, 255, 0.05);
}

.playon-slide.next {
    border-color: rgba(255, 255, 255, 0.05);
}

/* Slide content */
.playon-slide .cover-historic {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.playon-slide .music-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    position: relative;
    min-height: 60px;
}

.playon-slide .music-info .song {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.playon-slide .music-info .artist {
    font-size: 0.85rem;
    color: #7aeff5;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.playon-slide .music-info .lastime {
    position: relative;
    display: inline-block;
    overflow: visible;
    min-height: 1.2em;
    width: 100%;
}

.playon-slide .label-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    opacity: 0.5;
}

.playon-slide.current .label-icon {
    opacity: 1;
    color: #ff3366;
}

.playon-slide .status-badge {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
}

.playon-slide.current .status-badge {
    background: rgba(122, 239, 245, 0.15);
    color: #7aeff5;
}

/* --- Time Value Animation --- */
.playon-slide .time-value {
    display: inline-block;
    position: relative;
    transition: opacity 0.3s ease;
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.2;
}

.playon-slide.current .time-value {
    color: rgba(122, 239, 245, 0.8);
}

.time-value.fade-out {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

.time-value.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
}

/* --- Time Animation Popup --- */
.time-animation-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.8);
    font-family: 'Orbitron', monospace;
    font-size: inherit;
    font-weight: 700;
    pointer-events: none;
    z-index: 10;
    white-space: nowrap;
    opacity: 0;
    animation: timePopup 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes timePopup {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.8);
    }
    30% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
    60% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

/* --- Marquee (Running Line) --- */
.track-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.track-marquee-inner {
    display: inline-block;
    white-space: nowrap;
    animation: marquee-scroll 15s linear infinite;
    padding-left: 100%;
}

.track-marquee-inner.paused {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* --- Blink Animations --- */
.playon-slide.blink-green {
    animation: blink-green 0.5s ease-in-out 4;
}

.playon-slide.blink-yellow {
    animation: blink-yellow 0.5s ease-in-out 4;
}

.playon-slide.blink-orange {
    animation: blink-orange 0.5s ease-in-out 4;
}

.playon-slide.blink-red {
    animation: blink-red 0.5s ease-in-out 4;
}

@keyframes blink-green {
    0%, 100% { border-color: rgba(122, 239, 245, 0.3); }
    50% { border-color: rgba(0, 255, 0, 0.8); box-shadow: 0 0 30px rgba(0, 255, 0, 0.2); }
}

@keyframes blink-yellow {
    0%, 100% { border-color: rgba(122, 239, 245, 0.3); }
    50% { border-color: rgba(255, 255, 0, 0.8); box-shadow: 0 0 30px rgba(255, 255, 0, 0.2); }
}

@keyframes blink-orange {
    0%, 100% { border-color: rgba(122, 239, 245, 0.3); }
    50% { border-color: rgba(255, 165, 0, 0.8); box-shadow: 0 0 30px rgba(255, 165, 0, 0.2); }
}

@keyframes blink-red {
    0%, 100% { border-color: rgba(122, 239, 245, 0.3); }
    50% { border-color: rgba(255, 0, 0, 0.8); box-shadow: 0 0 30px rgba(255, 0, 0, 0.2); }
}

/* --- Float & Glow Animations --- */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-glow {
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(122, 239, 245, 0.2); }
    to { text-shadow: 0 0 30px rgba(122, 239, 245, 0.6); }
}

/* --- PlayOn Slider Responsive --- */
@media (max-width: 991.98px) {
    .playon-slide {
        flex: 0 0 calc(50% - 10px) !important;
        min-width: 220px !important;
        padding: 12px 16px !important;
    }
    
    .playon-slide .cover-historic {
        width: 50px !important;
        height: 50px !important;
    }
    
    .playon-slide .music-info .song {
        font-size: 0.9rem !important;
    }
    
    .playon-slide .music-info .artist {
        font-size: 0.75rem !important;
    }
    
    .playon-slide .music-info .lastime {
        font-size: 0.65rem !important;
    }
}

@media (max-width: 767px) {
    .playon-container {
        padding: 10px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    
    .playon-container::-webkit-scrollbar {
        height: 3px;
    }
    
    .playon-container::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 2px;
    }
    
    .playon-container::-webkit-scrollbar-thumb {
        background: rgba(122, 239, 245, 0.3);
        border-radius: 2px;
    }
    
    .playon-container::-webkit-scrollbar-thumb:hover {
        background: rgba(122, 239, 245, 0.5);
    }
    
    .playon-slider {
        gap: 12px;
        padding: 0 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .playon-slide {
        flex: 0 0 calc(85% - 10px) !important;
        min-width: 260px !important;
        max-width: 320px !important;
        padding: 12px 15px !important;
        scroll-snap-align: start;
        border-radius: 14px;
    }
    
    .playon-slide .cover-historic {
        width: 45px !important;
        height: 45px !important;
        border-radius: 10px !important;
    }
    
    .playon-slide .music-info .song {
        font-size: 0.85rem !important;
        font-weight: 600 !important;
    }
    
    .playon-slide .music-info .artist {
        font-size: 0.7rem !important;
    }
    
    .playon-slide .music-info .lastime {
        font-size: 0.6rem !important;
        margin-bottom: 2px;
    }
    
    .playon-slide .label-icon {
        font-size: 1rem !important;
    }
    
    .playon-slide .status-badge {
        font-size: 0.5rem !important;
        padding: 1px 8px !important;
        top: 6px !important;
        right: 8px !important;
    }
    
    .playon-slide.current {
        border-color: rgba(122, 239, 245, 0.4) !important;
        background: rgba(0, 0, 0, 0.6) !important;
        box-shadow: 0 0 30px rgba(122, 239, 245, 0.1) !important;
    }
    
    .scroll-indicator {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(255, 255, 255, 0.3);
        font-size: 0.6rem;
        font-family: 'Orbitron', monospace;
        letter-spacing: 2px;
        opacity: 0.5;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }
}

@media (max-width: 400px) {
    .playon-slide {
        flex: 0 0 calc(90% - 8px) !important;
        min-width: 220px !important;
        padding: 10px 12px !important;
        gap: 10px !important;
    }
    
    .playon-slide .cover-historic {
        width: 38px !important;
        height: 38px !important;
    }
    
    .playon-slide .music-info .song {
        font-size: 0.75rem !important;
    }
    
    .playon-slide .music-info .artist {
        font-size: 0.6rem !important;
    }
    
    .playon-slide .music-info .lastime {
        font-size: 0.5rem !important;
    }
    
    .playon-slide .label-icon {
        font-size: 0.8rem !important;
    }
    
    .playon-slide .status-badge {
        font-size: 0.4rem !important;
        padding: 1px 6px !important;
    }
}

@media (max-width: 767px) and (orientation: landscape) {
    .playon-slide {
        flex: 0 0 calc(45% - 8px) !important;
        min-width: 200px !important;
        max-width: 280px !important;
    }
}

/* --- Sections (About, Stream, Contact) --- */
.section-content {
    padding: 80px 0 60px;
    position: relative;
    z-index: 2;
}

.section-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.section-content .card-glass {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    transition: all 0.3s ease;
}

.section-content .card-glass:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(122, 239, 245, 0.15);
}

/* --- Copy Clipboard --- */
.copy-clipboard {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.copy-clipboard span {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    word-break: break-all;
    color: #7aeff5;
}

.btn-copy {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    background: #7aeff5;
    color: #000;
}

/* --- Social Icons --- */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.social-icons li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #7aeff5;
    font-size: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icons li a:hover {
    background: #7aeff5;
    color: #0a0a0a;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(122, 239, 245, 0.2);
}

/* --- Footer --- */
.footer {
    position: relative;
    z-index: 2;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
}

.footer h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 3px;
}

/* --- Tabs --- */
.nav-tabs-custom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
}

.nav-tabs-custom .nav-link {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-tabs-custom .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-tabs-custom .nav-link.active {
    color: #fff;
    background: rgba(122, 239, 245, 0.15);
    box-shadow: 0 0 30px rgba(122, 239, 245, 0.05);
}

/* --- Color Classes --- */
.h2blue { 
    color: #056BBF !important; 
    text-shadow: 0 0 20px rgba(5, 107, 191, 0.2) !important; 
}

.trackname { 
    color: #056BBF; 
    text-shadow: 0 0 15px rgba(5, 107, 191, 0.3); 
}

.tracknamenext { 
    color: #04A324; 
    text-shadow: 0 0 15px rgba(4, 163, 36, 0.3); 
}

.trackback { 
    color: #ff1e8c; 
    text-shadow: 0 0 15px rgba(255, 30, 140, 0.3); 
}

.titlenext { 
    color: #b3ff5c; 
    text-shadow: 0 0 15px rgba(179, 255, 92, 0.3); 
}

.titleprevious { 
    color: #ffaa00; 
    text-shadow: 0 0 15px rgba(255, 170, 0, 0.3); 
}

/* --- Scrollbar --- */
::-webkit-scrollbar { 
    width: 6px; 
}

::-webkit-scrollbar-track { 
    background: #0a0a0a; 
}

::-webkit-scrollbar-thumb { 
    background: rgba(122, 239, 245, 0.3); 
    border-radius: 10px; 
}

::-webkit-scrollbar-thumb:hover { 
    background: rgba(122, 239, 245, 0.6); 
}

/* --- Info Cards (Original) --- */
.info-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 15px 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-card:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(122, 239, 245, 0.2);
    transform: translateY(-2px);
}

.cover-historic {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #222;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.music-info .song {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.music-info .artist {
    font-size: 0.85rem;
    color: #7aeff5;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.music-info .lastime {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Orbitron', monospace;
}

.label-icon {
    font-size: 1.5rem;
    color: #7aeff5;
    flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
    .content-wrapper {
        padding-top: 90px;
    }
    
    .on-air-title {
        font-size: 1.4rem;
    }
    
    .section-content h2 {
        font-size: 2rem;
    }
    
    .cover-album {
        max-width: 220px;
    }
}

@media (max-width: 576px) {
    .content-wrapper {
        padding-top: 80px;
    }
    
    .cover-album {
        max-width: 180px;
    }
    
    .clock-display {
        font-size: 0.9rem;
        padding: 3px 12px;
        min-width: 180px;
    }
    
    .info-card {
        padding: 12px 15px;
        flex-wrap: wrap;
    }
    
    .copy-clipboard {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .copy-clipboard span {
        font-size: 0.7rem;
    }
}