@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --yellow: #f5d400;
    --yellow-deep: #d9b800;
    --blue: #004beb;
    --dark-blue: #00308f;
    --dark-blue-deep: #001c57;
    --dark: #111111;
    --paper: #ffffff;
}

body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background-color: #f5f6f8 !important;
    color: #333333;
    padding-bottom: 94px; /* Space for the floating player */
}

a {
    transition: color 0.2s ease-in-out;
}

.hover-warning:hover {
    color: var(--yellow) !important;
}

/* Background Advertising Rails (Left and Right of the centered site) */
.btFullHeightBannerLeft,
.btFullHeightBannerRight {
    position: fixed;
    top: 0;
    width: 600px;
    height: 100vh;
    z-index: 6;
    overflow: hidden;
    background: #ffffff;
    display: block;
}

.btFullHeightBannerLeft {
    left: 50%;
    margin-left: -1200px;
    text-align: right;
}

.btFullHeightBannerRight {
    right: 50%;
    margin-right: -1200px;
    text-align: left;
}

.btFullHeightBannerLeft img,
.btFullHeightBannerRight img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1500px) {
    .btFullHeightBannerLeft,
    .btFullHeightBannerRight {
        display: none !important;
    }
}

/* Main Site Wrapper Centering override */
.site-main {
    background-color: var(--paper);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* Custom interactive scale utility */
.transition-scale {
    transition: all 0.2s ease-in-out;
}
.transition-scale:hover {
    transform: scale(1.02);
}

/* The floating player bar remains visible everywhere; the Hero player is the one that disappears on subpages */

.floating-player {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1045;
    padding: 10px 14px;
    background: var(--dark-blue);
    color: #ffffff;
    box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.25);
    transition: transform 0.18s ease, opacity 0.18s ease;
    border-top: 3px solid var(--yellow);
}

.floating-player.is-minimized {
    left: 14px;
    right: auto;
    bottom: 14px;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.radio-dock {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
}

.radio-dock__mini {
    display: none;
    align-items: center;
    gap: 10px;
    min-height: 62px;
    padding: 10px 14px 10px 10px;
    background: var(--dark-blue);
    color: #ffffff;
    box-shadow: 8px 8px 0 rgba(15, 23, 42, 0.18);
    border: 2px solid var(--yellow);
}

.floating-player.is-minimized .radio-dock {
    display: none;
}

.floating-player.is-minimized .radio-dock__mini {
    display: inline-flex;
}

.radio-dock__brand,
.radio-dock__toolbar,
.radio-dock__socials {
    display: flex;
    align-items: center;
}

.radio-dock__brand {
    gap: 14px;
    min-width: 0;
    flex: 1 1 auto;
}

.radio-dock__logo-stack {
    position: relative;
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
}

.radio-dock__logo {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border: 3px solid #111111;
    box-shadow: 5px 5px 0 rgba(15, 23, 42, 0.2);
}

.radio-dock__mini-logo {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border: 2px solid #111111;
}

.radio-dock__play {
    position: absolute;
    right: -8px;
    bottom: -8px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #ffffff;
    background: #111111;
    border-radius: 50%;
    border: none;
    box-shadow: 4px 4px 0 rgba(15, 23, 42, 0.18);
}

.radio-dock__play.is-playing {
    background: #ffffff;
    color: #111111;
}

.radio-dock__mini-state {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #111111;
    color: #ffffff;
}

.radio-dock__copy {
    min-width: 0;
}

.radio-dock__eyebrow {
    display: inline-block;
    margin-bottom: 2px;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.65);
}

.radio-dock__title {
    display: block;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.radio-dock__toolbar {
    gap: 14px;
    flex: 0 0 auto;
}

.radio-dock__socials {
    gap: 10px;
}

.radio-dock__socials a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    background: transparent;
    text-decoration: none;
}

.radio-dock__socials a:hover {
    background: var(--yellow);
    color: var(--dark-blue);
    border-color: var(--yellow);
}

.radio-dock__volume {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #111;
    box-shadow: 4px 4px 0 rgba(15, 23, 42, 0.18);
}

.radio-dock__minimize {
    position: absolute;
    right: 18px;
    bottom: calc(100% - 2px);
    width: 38px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #ffffff;
    background: #111111;
    border: none;
    box-shadow: 6px 6px 0 rgba(15, 23, 42, 0.18);
    z-index: 2;
    transition: background-color 0.2s, color 0.2s;
}

.radio-dock__minimize:hover {
    background: #f1b80c;
    color: #111111;
}

.radio-dock__minimize i {
    font-size: 1rem;
    line-height: 1;
}

.floating-player.is-minimized .radio-dock__minimize {
    right: -2px;
    bottom: calc(100% + 6px);
}

.radio-dock__volume-pop {
    position: absolute;
    right: 14px;
    bottom: calc(100% + 10px);
    width: 170px;
    padding: 12px;
    background: #ffffff;
    color: #111111;
    border: 2px solid var(--yellow);
    box-shadow: 6px 6px 0 rgba(17, 24, 39, 0.16);
}

.radio-dock__volume-pop label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.radio-dock__volume-pop input[type=range] {
    width: 100%;
    accent-color: var(--yellow);
}

@media (max-width: 991.98px) {
    .floating-player {
        padding-left: 12px;
        padding-right: 12px;
    }

    .radio-dock {
        gap: 14px;
    }

    .floating-player.is-minimized {
        left: 12px;
        bottom: 12px;
    }

    .radio-dock__minimize {
        right: 16px;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-bottom: 86px;
    }

    .radio-dock {
        gap: 10px;
    }

    .radio-dock__brand {
        gap: 10px;
    }

    .radio-dock__logo-stack {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .radio-dock__logo {
        width: 52px;
        height: 52px;
    }

    .radio-dock__play {
        width: 30px;
        height: 30px;
        right: -6px;
        bottom: -6px;
    }

    .radio-dock__title {
        font-size: 0.82rem;
    }

    .radio-dock__toolbar {
        gap: 10px;
    }

    .radio-dock__volume {
        width: 40px;
        height: 40px;
    }

    .radio-dock__minimize {
        right: 12px;
        width: 34px;
        height: 30px;
    }

    .radio-dock__volume-pop {
        right: 10px;
        width: 150px;
    }

    .radio-dock__mini {
        min-height: 52px;
        padding: 8px 10px;
        gap: 8px;
    }

    .radio-dock__mini-logo {
        width: 34px;
        height: 34px;
    }

    .radio-dock__mini-state {
        width: 28px;
        height: 28px;
    }

    .floating-player.is-minimized {
        left: 10px;
        bottom: 10px;
    }

    .front-body.player-minimized {
        padding-bottom: 18px !important;
    }
}

/* Premium Rotating Vinyl Player */
.vinyl-disk {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, #1a1a1a 22%, #111111 23%, #222222 28%, #0f0f0f 34%, #181818 40%, #050505 45%, #202020 50%, #0a0a0a 55%, #151515 60%, #000000 65%, #252525 70%, #101010 75%, #050505 80%, #1c1c1c 85%, #0f0f0f 90%);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    border: 4px solid #222;
}

.vinyl-disk__logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #f1b80c;
    object-fit: cover;
    background-color: #000;
}

.vinyl-disk.is-playing {
    animation: spin-vinyl 15s linear infinite;
}

@keyframes spin-vinyl {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Green Live Pulsing Dot */
.animate-pulse-dot {
    animation: pulse-dot 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .4;
        transform: scale(0.9);
    }
}

/* Button Hover Scale */
.hover-scale:hover {
    transform: scale(1.08);
    background-color: var(--yellow-deep) !important;
}

/* Custom Range Input */
.custom-slider {
    accent-color: var(--yellow);
}

/* Custom Header Navigation Menu */
.navbar-nav .nav-link {
    position: relative;
    transition: all 0.25s ease;
    border-radius: 0 !important; /* Flat design, absolutely no border radius */
    font-size: 0.92rem;
    letter-spacing: 0.03em;
    color: #ffffff !important;
}

.navbar-nav .nav-link:hover {
    background-color: var(--dark-blue-deep) !important;
    color: var(--yellow) !important;
}

.navbar-nav .nav-link.active-link {
    background-color: var(--dark-blue-deep) !important;
    color: var(--yellow) !important;
    font-weight: 800;
}

/* Mobile Navigation Drawer Links */
.mobile-nav-link {
    transition: background-color 0.2s, color 0.2s;
}

.mobile-nav-link:hover, .mobile-nav-link:active {
    background-color: rgba(241, 184, 12, 0.15);
    color: var(--yellow) !important;
}

.mobile-nav-link.bg-warning:hover {
    background-color: var(--yellow) !important;
    color: #111111 !important;
}

/* Hero Equalizer Background */
.hero-equalizer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 0 10px;
    opacity: 0.08; /* Very subtle and premium, doesn't hurt text readability */
    pointer-events: none; /* Let clicks pass through */
    overflow: hidden;
    transition: opacity 0.5s ease;
}

.hero-equalizer:not(.is-playing) {
    opacity: 0; /* Disappears entirely when player is stopped! */
}

.equalizer-bar {
    width: calc(100% / 20 - 6px);
    height: 10px;
    background-color: var(--yellow);
    transition: height 0.3s ease;
}

/* Equalizer animations with staggered delays */
.hero-equalizer.is-playing .equalizer-bar {
    animation: equalize 1.2s ease-in-out infinite alternate;
}

.hero-equalizer.is-playing .equalizer-bar:nth-child(1) { animation-delay: 0.1s; animation-duration: 0.8s; }
.hero-equalizer.is-playing .equalizer-bar:nth-child(2) { animation-delay: 0.4s; animation-duration: 1.2s; }
.hero-equalizer.is-playing .equalizer-bar:nth-child(3) { animation-delay: 0.2s; animation-duration: 0.9s; }
.hero-equalizer.is-playing .equalizer-bar:nth-child(4) { animation-delay: 0.6s; animation-duration: 1.4s; }
.hero-equalizer.is-playing .equalizer-bar:nth-child(5) { animation-delay: 0.3s; animation-duration: 1.0s; }
.hero-equalizer.is-playing .equalizer-bar:nth-child(6) { animation-delay: 0.5s; animation-duration: 1.1s; }
.hero-equalizer.is-playing .equalizer-bar:nth-child(7) { animation-delay: 0.1s; animation-duration: 0.7s; }
.hero-equalizer.is-playing .equalizer-bar:nth-child(8) { animation-delay: 0.7s; animation-duration: 1.3s; }
.hero-equalizer.is-playing .equalizer-bar:nth-child(9) { animation-delay: 0.2s; animation-duration: 0.8s; }
.hero-equalizer.is-playing .equalizer-bar:nth-child(10) { animation-delay: 0.4s; animation-duration: 1.2s; }
.hero-equalizer.is-playing .equalizer-bar:nth-child(11) { animation-delay: 0.3s; animation-duration: 0.9s; }
.hero-equalizer.is-playing .equalizer-bar:nth-child(12) { animation-delay: 0.6s; animation-duration: 1.4s; }
.hero-equalizer.is-playing .equalizer-bar:nth-child(13) { animation-delay: 0.2s; animation-duration: 1.0s; }
.hero-equalizer.is-playing .equalizer-bar:nth-child(14) { animation-delay: 0.5s; animation-duration: 1.1s; }
.hero-equalizer.is-playing .equalizer-bar:nth-child(15) { animation-delay: 0.1s; animation-duration: 0.8s; }
.hero-equalizer.is-playing .equalizer-bar:nth-child(16) { animation-delay: 0.7s; animation-duration: 1.3s; }
.hero-equalizer.is-playing .equalizer-bar:nth-child(17) { animation-delay: 0.3s; animation-duration: 0.9s; }
.hero-equalizer.is-playing .equalizer-bar:nth-child(18) { animation-delay: 0.4s; animation-duration: 1.2s; }
.hero-equalizer.is-playing .equalizer-bar:nth-child(19) { animation-delay: 0.2s; animation-duration: 0.7s; }
.hero-equalizer.is-playing .equalizer-bar:nth-child(20) { animation-delay: 0.5s; animation-duration: 1.1s; }

@keyframes equalize {
    0% { height: 10px; }
    100% { height: 75%; }
}

/* Custom card hover styling for the warning promo section */
.transition-hover {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.transition-hover:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0 #111111 !important;
}
