/* ==========================================================================
   VIBES RADIO - STUDIO THEME STYLE SHEET
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

@font-face {
    font-family: "BBH Bartle-Regular";
    src: url("../fonts/BBHBartle-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Signatra";
    src: url("../fonts/Signatra.ttf") format("truetype");
}

/* 1. CSS VARIABLES & DESIGN TOKENS */
:root {
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --text-primary: #181816;
    --text-secondary: #6e6c64;
    --text-muted: #a3a096;
    --primary-orange: #2d5465;
    --primary-orange-hover: #203c48;
    --border-color: #e5e2d9;
    --active-bg: rgba(45, 84, 101, 0.08);
    
    /* Header tokens from avavaBlue */
    --color-text-primary: #0a0a0b;
    --blue-primary: #620afc;
    --blue-hover: #1e3ebd;
    --font-primary: 'Outfit', sans-serif;
    --font-condensed: 'Oswald', sans-serif;
    --header-height-full: 144px;
    --header-height-shrink: 80px;
    
    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-logo: 'Syncopate', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 20px 40px rgba(24, 24, 22, 0.06);
    --shadow-button: 0 4px 12px rgba(242, 2, 124, 0.2);
}

/* 2. BASE RESETS */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-smooth);
    outline: none;
}

/* Page Container */
.page-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 0;
}

/* ==========================================================================
   3. TOP UTILITY BAR & MAIN NAVIGATION
   ========================================================================== */

.site-header-nav-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.site-header-nav-wrapper .top-utility-bar {
    padding: 10px 40px;
}

.site-header-nav-wrapper .header-container {
    padding: 0 40px;
}

/* 1. TOP UTILITY BAR */
.top-utility-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
    height: 44px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition-smooth);
    opacity: 1;
    overflow: hidden;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-primary);
}

.live-indicator svg.icon-signal-stream {
    fill: #3444f7;
    width: 18px;
    height: 18px;
}

.top-air-station {
    font-weight: 700;
}

/* Live Waveform visualizer next to station name */
.top-bar-visualizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 12px;
}

.top-bar-visualizer span {
    width: 2px;
    background-color: rgb(0 0 0);
    border-radius: 1px;
    animation: topWave 1.2s ease-in-out infinite alternate;
    height: 3px;
    transition: var(--transition-smooth);
}

.top-bar-visualizer.paused span {
    animation-play-state: paused !important;
    height: 3px !important;
}

.top-bar-visualizer span:nth-child(2n) { animation-delay: 0.15s; }
.top-bar-visualizer span:nth-child(3n) { animation-delay: 0.3s; }
.top-bar-visualizer span:nth-child(4n) { animation-delay: 0.45s; }
.top-bar-visualizer span:nth-child(5n) { animation-delay: 0.6s; }

@keyframes topWave {
    0% { height: 3px; }
    100% { height: 12px; }
}

.top-bar-right {
    display: flex;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--color-text-primary);
    font-size: 13px;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background-color: var(--color-text-primary);
    color: #ffffff;
    border-color: var(--color-text-primary);
    transform: translateY(-2px);
}

.header-container {
    width: 100%;
    max-width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

/* BRANDING LOGO */
.navbar-logo.logo {
    position: relative;
    width: 200px;
    height: auto;
    cursor: pointer;
    display: block;
    text-decoration: none;
    user-select: none;
    flex-shrink: 0;
}

.logo-image-file {
    width: 100%;
    height: auto;
    display: block;
}

/* MAIN NAVIGATION */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 16px;
    margin-left: auto;
    margin-right: 40px;
    align-items: center;
}

.nav-item {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.05em;
    position: relative;
}

.nav-item a {
    color: var(--color-text-primary);
    padding: 10px 16px;
    border: 1px solid transparent;
    border-radius: 100px;
    display: block;
    transition: var(--transition-smooth);
}

.nav-item a:hover {
    color: var(--blue-primary);
}

/* Active capsule style for nav link */
.nav-item.active a {
    background-color: transparent;
    color: var(--color-text-primary) !important;
    padding: 8px 40px !important;
    border: 1px solid var(--color-text-primary) !important;
    border-radius: 100px;
}

/* Navigation Dropdown Menu styling */
.nav-item.has-dropdown {
    position: relative;
}

/* Invisible bridge to prevent dropdown from disappearing during cursor transition */
.nav-item.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 25px;
    background: transparent;
    pointer-events: none;
    z-index: 999;
}

.nav-item.has-dropdown:hover::after {
    pointer-events: auto;
}

.nav-item.has-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 10px);
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 220px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    margin-top: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    pointer-events: none;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.nav-item.has-dropdown .dropdown-menu li {
    width: 100%;
}

.nav-item.has-dropdown .dropdown-menu li a {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.03em;
    padding: 8px 24px !important;
    color: var(--color-text-primary) !important;
    white-space: nowrap;
    border: none !important;
    border-radius: 0 !important;
    display: block;
    text-align: left !important;
    text-transform: uppercase;
    background: transparent !important;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-item.has-dropdown .dropdown-menu li a:hover {
    background-color: #f8f8f8 !important;
    color: var(--blue-primary) !important;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: #ffffff;
    border-radius: 12px;
    min-width: 220px;
    padding: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 8px;
    color: var(--text-secondary);
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    background-color: rgba(48, 86, 243, 0.05);
    color: var(--blue-primary);
    padding-left: 20px;
}

/* ACTIONS */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

/* Listen Live Pill Button */
.nav-listen-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #000000 !important;
    color: #ffffff !important;
    padding: 10px 30px;
    height: 46px;
    border-radius: 0 !important;
    border: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: none !important;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    
    /* Brush mask clipping */
    -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNjAgNjAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPgogICAgPHBhdGggZmlsbD0iY3VycmVudENvbG9yIiBkPSJNIDEwLjAgNi4wIEwgMTguMCA1LjIgTCAyNi4wIDQuMCBMIDM0LjAgMi40IEwgNDIuMCAyLjMgTCA1MC4wIDQuMCBMIDU4LjAgMS43IEwgNjYuMCA2LjMgTCA3NC4wIDIuMyBMIDgyLjAgNC4wIEwgOTAuMCAzLjIgTCA5OC4wIDIuMCBMIDEwNi4wIDEuOSBMIDExNC4wIDYuMyBMIDEyMi4wIDQuMCBMIDEzMC4wIDMuMiBMIDEzOC4wIDQuNSBMIDE0Ni4wIDUuMCBMIDE1NC4wIDUuNCBMIDE2Mi4wIDIuMyBMIDE3MC4wIDIuNyBMIDE3OC4wIDIuMCBMIDE4Ni4wIDUuNSBMIDE5NC4wIDMuNyBMIDIwMi4wIDMuMiBMIDIxMC4wIDMuNyBMIDIxOC4wIDUuMyBMIDIyNi4wIDUuMiBMIDIzNC4wIDMuMCBMIDI0Mi4wIDUuMyBMIDI1MC45IDYuMCBMIDI0NC45IDguMCBMIDI0OS40IDEwLjAgTCAyNDguNiAxNC4wIEwgMjU1LjYgMTguMCBMIDI0Ni40IDIwLjAgTCAyNDguMyAyMi4wIEwgMjQ2LjQgMjQuMCBMIDI1My42IDI2LjAgTCAyNTYuOSAzMC4wIEwgMjUxLjUgMzQuMCBMIDI1Ny41IDM4LjAgTCAyNDMuNiA0MC4wIEwgMjU1LjIgNDIuMCBMIDI1NC40IDQ2LjAgTCAyNTMuMyA1MC4wIEwgMjUwLjAgNTQuMiBMIDI0Mi4wIDU1LjMgTCAyMzQuMCA1NS4xIEwgMjI2LjAgNTguNCBMIDIxOC4wIDU1LjAgTCAyMTAuMCA1Ni4yIEwgMjAyLjAgNTMuNSBMIDE5NC4wIDU3LjkgTCAxODYuMCA1Ni4xIEwgMTc4LjAgNTguMCBMIDE3MC4wIDU2LjkgTCAxNjIuMCA1OC4yIEwgMTU0LjAgNTQuMyBMIDE0Ni4wIDU1LjcgTCAxMzguMCA1My42IEwgMTMwLjAgNTUuMSBMIDEyMi4wIDU2LjcgTCAxMTQuMCA1NS45IEwgMTA2LjAgNTQuNiBMIDk4LjAgNTguNCBMIDkwLjAgNTMuNyBMIDgyLjAgNTQuOCBMIDc0LjAgNTMuNSBMIDY2LjAgNTQuNSBMIDU4LjAgNTYuNyBMIDUwLjAgNTYuOCBMIDQyLjAgNTguMiBMIDM0LjAgNTUuNSBMIDI2LjAgNTQuOSBMIDE4LjAgNTYuOCBMIDIuMiA1NC4wIEwgOS42IDUwLjAgTCA0LjIgNDYuMCBMIDExLjIgNDIuMCBMIDUuNiAzOC4wIEwgNy45IDM0LjAgTCAxNC4zIDMyLjAgTCAyLjIgMzAuMCBMIDExLjggMjYuMCBMIDExLjkgMjIuMCBMIDkuNSAxOC4wIEwgMi4xIDE0LjAgTCA4LjkgMTAuMCBaIiAvPgo8L3N2Zz4=");
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNjAgNjAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPgogICAgPHBhdGggZmlsbD0iY3VycmVudENvbG9yIiBkPSJNIDEwLjAgNi4wIEwgMTguMCA1LjIgTCAyNi4wIDQuMCBMIDM0LjAgMi40IEwgNDIuMCAyLjMgTCA1MC4wIDQuMCBMIDU4LjAgMS43IEwgNjYuMCA2LjMgTCA3NC4wIDIuMyBMIDgyLjAgNC4wIEwgOTAuMCAzLjIgTCA5OC4wIDIuMCBMIDEwNi4wIDEuOSBMIDExNC4wIDYuMyBMIDEyMi4wIDQuMCBMIDEzMC4wIDMuMiBMIDEzOC4wIDQuNSBMIDE0Ni4wIDUuMCBMIDE1NC4wIDUuNCBMIDE2Mi4wIDIuMyBMIDE3MC4wIDIuNyBMIDE3OC4wIDIuMCBMIDE4Ni4wIDUuNSBMIDE5NC4wIDMuNyBMIDIwMi4wIDMuMiBMIDIxMC4wIDMuNyBMIDIxOC4wIDUuMyBMIDIyNi4wIDUuMiBMIDIzNC4wIDMuMCBMIDI0Mi4wIDUuMyBMIDI1MC45IDYuMCBMIDI0NC45IDguMCBMIDI0OS40IDEwLjAgTCAyNDguNiAxNC4wIEwgMjU1LjYgMTguMCBMIDI0Ni40IDIwLjAgTCAyNDguMyAyMi4wIEwgMjQ2LjQgMjQuMCBMIDI1My42IDI2LjAgTCAyNTYuOSAzMC4wIEwgMjUxLjUgMzQuMCBMIDI1Ny41IDM4LjAgTCAyNDMuNiA0MC4wIEwgMjU1LjIgNDIuMCBMIDI1NC40IDQ2LjAgTCAyNTMuMyA1MC4wIEwgMjUwLjAgNTQuMiBMIDI0Mi4wIDU1LjMgTCAyMzQuMCA1NS4xIEwgMjI2LjAgNTguNCBMIDIxOC4wIDU1LjAgTCAyMTAuMCA1Ni4yIEwgMjAyLjAgNTMuNSBMIDE5NC4wIDU3LjkgTCAxODYuMCA1Ni4xIEwgMTc4LjAgNTguMCBMIDE3MC4wIDU2LjkgTCAxNjIuMCA1OC4yIEwgMTU0LjAgNTQuMyBMIDE0Ni4wIDU1LjcgTCAxMzguMCA1My42IEwgMTMwLjAgNTUuMSBMIDEyMi4wIDU2LjcgTCAxMTQuMCA1NS45IEwgMTA2LjAgNTQuNiBMIDk4LjAgNTguNCBMIDkwLjAgNTMuNyBMIDgyLjAgNTQuOCBMIDc0LjAgNTMuNSBMIDY2LjAgNTQuNSBMIDU4LjAgNTYuNyBMIDUwLjAgNTYuOCBMIDQyLjAgNTguMiBMIDM0LjAgNTUuNSBMIDI2LjAgNTQuOSBMIDE4LjAgNTYuOCBMIDIuMiA1NC4wIEwgOS42IDUwLjAgTCA0LjIgNDYuMCBMIDExLjIgNDIuMCBMIDUuNiAzOC4wIEwgNy45IDM0LjAgTCAxNC4zIDMyLjAgTCAyLjIgMzAuMCBMIDExLjggMjYuMCBMIDExLjkgMjIuMCBMIDkuNSAxOC4wIEwgMi4xIDE0LjAgTCA4LjkgMTAuMCBaIiAvPgo8L3N2Zz4=");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.nav-listen-btn:hover {
    transform: scale(1.03) translateY(-1px);
    opacity: 0.95;
    background-color: #000000 !important;
}

.nav-listen-btn:active {
    transform: scale(0.98);
}

.btn-signal-icon {
    position: relative;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-signal-icon svg {
    width: 16px;
    height: 16px;
}

/* Signal Pulse dot */
.btn-signal-icon .signal-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--yellow-accent);
    border-radius: 50%;
    top: 5px;
    left: 5px;
    animation: signal-pulse 1.5s infinite ease-in-out;
}

@keyframes signal-pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.4); opacity: 1; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

/* Language Selector Component */
.lang-selector-wrapper {
    position: relative;
    display: inline-block;
}

.lang-selector-btn {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    border: 1.5px solid rgb(0 0 0 / 34%);
    background-color: transparent;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-sizing: border-box;
    transition: border-color var(--transition-smooth), transform var(--transition-smooth);
}

.lang-selector-btn:hover {
    border-color: var(--blue-primary);
    transform: scale(1.05);
}

.lang-flag-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-flag-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* Dropdown styling */
.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    padding: 8px 0;
    list-style: none;
    min-width: 150px;
    z-index: 100;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.lang-selector-wrapper:hover .lang-dropdown,
.lang-dropdown.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.lang-dropdown::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background-color var(--transition-smooth), color var(--transition-smooth);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-primary);
}

.lang-option:hover {
    background-color: rgba(48, 86, 243, 0.05);
}

.lang-option.active {
    color: var(--blue-primary);
    font-weight: 700;
    background-color: rgba(48, 86, 243, 0.04);
}

.lang-flag-circle-option {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lang-flag-circle-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.mobile-menu-toggle {
    display: none;
}

/* ==========================================================================
   5. HERO CONTENT SECTION
   ========================================================================== */
.hero-header-section {
    position: relative;
    background-image: url('../images/slide-1.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: calc(var(--header-height-full) + 20px);
    padding-bottom: 10px;
    box-sizing: border-box;
}

.hero-container {
    max-width: 1200px;
    padding: 20px 40px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.hero-text-content {
    max-width: 580px;
}

.hero-subtitle {
    display: inline-block;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 140px;
    font-weight: 800;
    line-height: 0.9;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    margin-left: -5px;
}

.title-line-condensed {
    font-family: var(--font-condensed) !important;
    font-weight: 400 !important;
    letter-spacing: 0px !important;
    color: #000000 !important;
}

.title-line-pink {
    color: #f2047c !important;
    font-family: 'Permanent Marker', cursive !important;
}

/* Description Block */
.hero-description-block {
    position: relative;
    padding-left: 24px;
    margin-bottom: 3vh;
}

.hero-description-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background-color: rgba(0, 0, 0, 0.15);
}

.hero-description {
    font-size: 24px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.5;
    font-family: var(--font-main);
}

/* Hero CTA Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Paint Brush Stroke Buttons */
.btn-brush-paint {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff !important;
    text-decoration: none;
    user-select: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    
    /* Brush mask clipping */
    -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNjAgNjAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPgogICAgPHBhdGggZmlsbD0iY3VycmVudENvbG9yIiBkPSJNIDEwLjAgNi4wIEwgMTguMCA1LjIgTCAyNi4wIDQuMCBMIDM0LjAgMi40IEwgNDIuMCAyLjMgTCA1MC4wIDQuMCBMIDU4LjAgMS43IEwgNjYuMCA2LjMgTCA3NC4wIDIuMyBMIDgyLjAgNC4wIEwgOTAuMCAzLjIgTCA5OC4wIDIuMCBMIDEwNi4wIDEuOSBMIDExNC4wIDYuMyBMIDEyMi4wIDQuMCBMIDEzMC4wIDMuMiBMIDEzOC4wIDQuNSBMIDE0Ni4wIDUuMCBMIDE1NC4wIDUuNCBMIDE2Mi4wIDIuMyBMIDE3MC4wIDIuNyBMIDE3OC4wIDIuMCBMIDE4Ni4wIDUuNSBMIDE5NC4wIDMuNyBMIDIwMi4wIDMuMiBMIDIxMC4wIDMuNyBMIDIxOC4wIDUuMyBMIDIyNi4wIDUuMiBMIDIzNC4wIDMuMCBMIDI0Mi4wIDUuMyBMIDI1MC45IDYuMCBMIDI0NC45IDguMCBMIDI0OS40IDEwLjAgTCAyNDguNiAxNC4wIEwgMjU1LjYgMTguMCBMIDI0Ni40IDIwLjAgTCAyNDguMyAyMi4wIEwgMjQ2LjQgMjQuMCBMIDI1My42IDI2LjAgTCAyNTYuOSAzMC4wIEwgMjUxLjUgMzQuMCBMIDI1Ny41IDM4LjAgTCAyNDMuNiA0MC4wIEwgMjU1LjIgNDIuMCBMIDI1NC40IDQ2LjAgTCAyNTMuMyA1MC4wIEwgMjUwLjAgNTQuMiBMIDI0Mi4wIDU1LjMgTCAyMzQuMCA1NS4xIEwgMjI2LjAgNTguNCBMIDIxOC4wIDU1LjAgTCAyMTAuMCA1Ni4yIEwgMjAyLjAgNTMuNSBMIDE5NC4wIDU3LjkgTCAxODYuMCA1Ni4xIEwgMTc4LjAgNTguMCBMIDE3MC4wIDU2LjkgTCAxNjIuMCA1OC4yIEwgMTU0LjAgNTQuMyBMIDE0Ni4wIDU1LjcgTCAxMzguMCA1My42IEwgMTMwLjAgNTUuMSBMIDEyMi4wIDU2LjcgTCAxMTQuMCA1NS45IEwgMTA2LjAgNTQuNiBMIDk4LjAgNTguNCBMIDkwLjAgNTMuNyBMIDgyLjAgNTQuOCBMIDc0LjAgNTMuNSBMIDY2LjAgNTQuNSBMIDU4LjAgNTYuNyBMIDUwLjAgNTYuOCBMIDQyLjAgNTguMiBMIDM0LjAgNTUuNSBMIDI2LjAgNTQuOSBMIDE4LjAgNTYuOCBMIDIuMiA1NC4wIEwgOS42IDUwLjAgTCA0LjIgNDYuMCBMIDExLjIgNDIuMCBMIDUuNiAzOC4wIEwgNy45IDM0LjAgTCAxNC4zIDMyLjAgTCAyLjIgMzAuMCBMIDExLjggMjYuMCBMIDExLjkgMjIuMCBMIDkuNSAxOC4wIEwgMi4xIDE0LjAgTCA4LjkgMTAuMCBaIiAvPgo8L3N2Zz4=");
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNjAgNjAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPgogICAgPHBhdGggZmlsbD0iY3VycmVudENvbG9yIiBkPSJNIDEwLjAgNi4wIEwgMTguMCA1LjIgTCAyNi4wIDQuMCBMIDM0LjAgMi40IEwgNDIuMCAyLjMgTCA1MC4wIDQuMCBMIDU4LjAgMS43IEwgNjYuMCA2LjMgTCA3NC4wIDIuMyBMIDgyLjAgNC4wIEwgOTAuMCAzLjIgTCA5OC4wIDIuMCBMIDEwNi4wIDEuOSBMIDExNC4wIDYuMyBMIDEyMi4wIDQuMCBMIDEzMC4wIDMuMiBMIDEzOC4wIDQuNSBMIDE0Ni4wIDUuMCBMIDE1NC4wIDUuNCBMIDE2Mi4wIDIuMyBMIDE3MC4wIDIuNyBMIDE3OC4wIDIuMCBMIDE4Ni4wIDUuNSBMIDE5NC4wIDMuNyBMIDIwMi4wIDMuMiBMIDIxMC4wIDMuNyBMIDIxOC4wIDUuMyBMIDIyNi4wIDUuMiBMIDIzNC4wIDMuMCBMIDI0Mi4wIDUuMyBMIDI1MC45IDYuMCBMIDI0NC45IDguMCBMIDI0OS40IDEwLjAgTCAyNDguNiAxNC4wIEwgMjU1LjYgMTguMCBMIDI0Ni40IDIwLjAgTCAyNDguMyAyMi4wIEwgMjQ2LjQgMjQuMCBMIDI1My42IDI2LjAgTCAyNTYuOSAzMC4wIEwgMjUxLjUgMzQuMCBMIDI1Ny41IDM4LjAgTCAyNDMuNiA0MC4wIEwgMjU1LjIgNDIuMCBMIDI1NC40IDQ2LjAgTCAyNTMuMyA1MC4wIEwgMjUwLjAgNTQuMiBMIDI0Mi4wIDU1LjMgTCAyMzQuMCA1NS4xIEwgMjI2LjAgNTguNCBMIDIxOC4wIDU1LjAgTCAyMTAuMCA1Ni4yIEwgMjAyLjAgNTMuNSBMIDE5NC4wIDU3LjkgTCAxODYuMCA1Ni4xIEwgMTc4LjAgNTguMCBMIDE3MC4wIDU2LjkgTCAxNjIuMCA1OC4yIEwgMTU0LjAgNTQuMyBMIDE0Ni4wIDU1LjcgTCAxMzguMCA1My42IEwgMTMwLjAgNTUuMSBMIDEyMi4wIDU2LjcgTCAxMTQuMCA1NS45IEwgMTA2LjAgNTQuNiBMIDk4LjAgNTguNCBMIDkwLjAgNTMuNyBMIDgyLjAgNTQuOCBMIDc0LjAgNTMuNSBMIDY2LjAgNTQuNSBMIDU4LjAgNTYuNyBMIDUwLjAgNTYuOCBMIDQyLjAgNTguMiBMIDM0LjAgNTUuNSBMIDI2LjAgNTQuOSBMIDE4LjAgNTYuOCBMIDIuMiA1NC4wIEwgOS42IDUwLjAgTCA0LjIgNDYuMCBMIDExLjIgNDIuMCBMIDUuNiAzOC4wIEwgNy45IDM0LjAgTCAxNC4zIDMyLjAgTCAyLjIgMzAuMCBMIDExLjggMjYuMCBMIDExLjkgMjIuMCBMIDkuNSAxOC4wIEwgMi4xIDE0LjAgTCA4LjkgMTAuMCBaIiAvPgo8L3N2Zz4=");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.btn-brush-paint.btn-pink {
    background-color: #f2047c;
}

.btn-brush-paint.btn-black {
    background-color: #000000;
}

.btn-brush-paint:hover {
    transform: scale(1.04) translateY(-1px);
    opacity: 0.95;
}

.btn-brush-paint:active {
    transform: scale(0.98);
}

.hero-buttons .btn-brush-paint {
    padding: 12px 24px;
    height: 54px;
    min-width: 200px;
    font-size: 14px;
    letter-spacing: 0.5px;
    gap: 12px;
}

.hero-buttons .btn-brush-paint.btn-black {
    padding-left: 34px;
}

/* ==========================================================================
   6. FLOATING PLAYER WIDGET
   ========================================================================== */
.floating-player-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    display: grid;
    grid-template-columns: 28% 46% 26%;
    align-items: stretch;
    padding: 16px;
    margin: 0 40px 16px 40px;
    z-index: 10;
}

/* --- PLAYER COLUMN 1: STATION DETAILS --- */
.player-station-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 20px;
    border-right: 1px solid var(--border-color);
}

.player-cover {
    width: 250px;
    max-width: 100%;
    height: 167px;
    border: 1px solid rgb(177 177 177 / 50%);
    padding: 3px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    box-sizing: border-box;
}

.player-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px; /* Concentric border radius (14px - 3px padding - 1px border) */
    display: block;
}

/* Metadata Text */
.player-meta {
    overflow: hidden;
}

.live-status {
    font-size: 15px;
    font-weight: 750;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.live-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    animation: pulseDot 1s infinite alternate;
}

@keyframes pulseDot {
    0% { opacity: 0.4; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1.1); }
}

.track-title-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-artist-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Action Icons */
.player-action-icons {
    display: flex;
    gap: 12px;
}

.player-action-icons .icon-btn {
    font-size: 16px;
    color: var(--text-secondary);
}

.player-action-icons .icon-btn:hover {
    color: var(--primary-orange);
    transform: scale(1.1);
}

/* --- PLAYER COLUMN 2: TUNER SCALE --- */
.player-tuner-section {
    padding: 0 50px;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tuner-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin-bottom: 12px;
}

.tuner-arrow {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 14px;
}

.tuner-arrow:hover {
    background-color: var(--bg-color);
    border-color: var(--text-primary);
}

.tuner-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tuner-prefix, .tuner-suffix {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
}

.active-station-freq {
    font-size: 65px;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
    display: inline-block;
    width: 180px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

/* Ticks Ruler */
.tuner-scale-wrapper {
    position: relative;
    padding: 6px 0;
}

.tuner-scale-container {
    height: 44px;
    position: relative;
    cursor: pointer;
}

/* CSS-based ruler lines background */
.tuner-lines {
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    height: 15px;
    /* Drawing the ticks using repeating background gradient */
    background: repeating-linear-gradient(90deg, 
        var(--border-color) 0px, 
        var(--border-color) 1.5px, 
        transparent 1.5px, 
        transparent 5% /* Draws exactly 21 ticks matching 88-108 MHz scale (5% intervals) */
    );
    opacity: 0.85;
}

.tuner-lines::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1.5px;
    height: 100%;
    background-color: var(--tuner-lines-color, var(--border-color));
}

.tuner-labels {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
}

.tuner-labels span {
    position: absolute;
    transform: translateX(-50%);
}

/* Needle Pointer */
.tuner-needle {
    position: absolute;
    top: 0px;
    left: 43.5%; /* Calculated based on initial 96.7 FM frequency */
    transform: translateX(-50%);
    height: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: left 0.1s ease-out; /* Smooth slide response */
    pointer-events: none;
}

.tuner-needle.dragging {
    transition: none; /* No lag during manual drag */
}

.needle-line {
    width: 2.5px;
    height: 18px;
    background-color: var(--primary-orange);
    border-radius: 1px;
}

.needle-knob {
    width: 8px;
    height: 8px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(242, 2, 124, 0.4);
}

/* --- PLAYER COLUMN 3: AUDIO CONTROLS & EQUALIZER --- */
.player-controls-section {
    padding-left: 30px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
    align-self: center;
}

/* 1. Equalizer Section Styles */
.player-equalizer-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-grow: 1;
    padding-top: 10px;
    padding-bottom: 5px;
}

.equalizer-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25px;
    height: 100%;
    justify-content: flex-end;
}

.equalizer-track {
    position: relative;
    width: 1px;
    height: 55px;
    background-color: var(--border-color);
}

/* Horizontal ticks background for equalizer channels */
.equalizer-track::before {
    content: '';
    position: absolute;
    top: 0;
    left: -4px;
    width: 9px;
    height: 100%;
    background: repeating-linear-gradient(to bottom,
        var(--text-muted) 0px,
        var(--text-muted) 1px,
        transparent 1px,
        transparent 7px
    );
    opacity: 0.6;
}

.equalizer-handle {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 14px;
    height: 15px;
    background-color: #4c4c4c;
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 50%; /* Default middle position */
    transition: bottom 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smooth transition back to center */
    cursor: grab;
}

/* Equalizer knob center orange dot */
.equalizer-handle .handle-dot {
    width: 4px;
    height: 4px;
    background-color: var(--primary-orange);
    border-radius: 50%;
}

.equalizer-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 8px;
    line-height: 1;
    text-align: center;
}

/* 2. Control Row Divider */
.player-controls-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 6px 0;
    width: 100%;
}

/* 3. Bottom Volume & Compact Play Row */
.player-volume-play-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 40px;
}

.player-volume-play-row .volume-slider-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.player-play-btn {
    width: auto;
    height: auto;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--text-primary);
    font-size: 22px; /* Plain triangular play button size */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transition: color var(--transition-smooth), transform var(--transition-smooth);
}

.player-play-btn:hover {
    color: var(--primary-orange);
    background-color: transparent;
    border-color: transparent;
    transform: scale(1.15);
}

.player-play-btn.playing {
    color: var(--primary-orange);
    background-color: transparent;
    border-color: transparent;
}

/* Custom equalizer transition when active for slow random gliding */
.floating-player-card.playing .equalizer-handle {
    transition: bottom 1.5s ease-in-out;
    cursor: default;
}


.volume-icon-btn {
    font-size: 16px;
    color: var(--text-secondary);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.volume-icon-btn svg.icon-volume {
    width: 30px;
    height: 30px;
    fill: currentColor;
    transition: fill var(--transition-smooth);
}

.volume-icon-btn:hover {
    color: var(--primary-orange);
}

.volume-slider-wrapper {
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    z-index: 2;
}

/* Custom slider thumb */
.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-primary);
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--primary-orange);
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: var(--text-primary);
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
}

.volume-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    background: var(--primary-orange);
}

/* Dynamic slider fill overlay */
.volume-slider-fill {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
    height: 4px;
    background-color: var(--primary-orange);
    border-radius: 2px;
    pointer-events: none;
    z-index: 1;
}

/* Audio EQ Visualizer Toggle */
.visualizer-toggle-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.visualizer-toggle-btn:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.visualizer-toggle-btn.active {
    background-color: var(--active-bg);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.btn-visualizer-bars {
    display: flex;
    align-items: flex-end;
    gap: 2.5px;
    height: 14px;
}

.btn-visualizer-bars span {
    width: 2.5px;
    background-color: currentColor;
    border-radius: 0.5px;
    height: 3px;
}

/* Dynamic dancing waves when active */
.visualizer-toggle-btn.active .btn-visualizer-bars span {
    animation: btnWave 0.8s ease-in-out infinite alternate;
}

.visualizer-toggle-btn.active .btn-visualizer-bars span:nth-child(1) { height: 4px; animation-duration: 0.6s; }
.visualizer-toggle-btn.active .btn-visualizer-bars span:nth-child(2) { height: 12px; animation-duration: 0.9s; }
.visualizer-toggle-btn.active .btn-visualizer-bars span:nth-child(3) { height: 6px; animation-duration: 0.7s; }
.visualizer-toggle-btn.active .btn-visualizer-bars span:nth-child(4) { height: 10px; animation-duration: 0.8s; }

@keyframes btnWave {
    0% { height: 3px; }
    100% { height: 14px; }
}

/* ==========================================================================
   7. CATEGORY FILTER BAR
   ========================================================================== */
.station-filters-section {
    padding-top: 0;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.filters-container {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #faf9f5;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 6px;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none; /* Hide scrollbar for clean horizontal track */
}

.filters-container::-webkit-scrollbar {
    display: none;
}

.filter-pill {
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    white-space: nowrap;
}

.filter-pill:hover {
    color: var(--primary-orange);
}

.filter-pill.active {
    background-color: #650cfc;
    color: #ffffff;
}

/* ==========================================================================
   8. MOBILE NAVIGATION OVERLAY & RESPONSIVENESS
   ========================================================================== */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 26px;
    color: var(--text-primary);
}

.mobile-menu-items {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-item {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.mobile-nav-item.active a {
    color: var(--primary-orange);
}

/* Responsive media queries are consolidated at the end of this stylesheet */

@media (max-width: 480px) {
    .top-utility-bar {
        display: none; /* Hide whole top bar on very small devices */
    }
    
    .hero-container {
        padding: 20px 10px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary, .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* 2.5K SCREEN RESOLUTION ADJUSTMENTS */
@media (min-width: 2350px) {
    .hero-header-section {
        background-image: url('../images/slide-1.jpg');
    }
    
    .navbar-logo.logo {
        position: relative;
        width: 250px;
    }
    
    .hero-text-content {
        max-width: 860px;
    }
    
    .hero-subtitle {
        font-size: 25px;
    }
    
    .hero-title {
        font-size: 220px;
        font-weight: 800;
        margin-left: -8px;
        line-height: 0.9;
    }

    .btn-primary {
        padding: 16px 55px;
    }

    .hero-description {
        font-size: 28px;
    }

}

/* ==========================================================================
   Language Selector Component
   ========================================================================== */
.lang-selector-wrapper {
    position: relative;
    display: inline-block;
}

.lang-selector-btn {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    border: 1px solid #181816; /* Dark border from design */
    background-color: #ffffff;
    padding: 2px; /* 2px padding from border */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-sizing: border-box;
    transition: border-color var(--transition-smooth), transform var(--transition-smooth);
}

.lang-selector-btn:hover {
    border-color: var(--primary-orange);
    transform: scale(1.05);
}

.lang-flag-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-flag-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* Dropdown styling */
.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
    padding: 8px 0;
    list-style: none;
    min-width: 150px;
    z-index: 100;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.lang-selector-wrapper:hover .lang-dropdown,
.lang-dropdown.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.lang-dropdown::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background-color var(--transition-smooth), color var(--transition-smooth);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.lang-option:hover {
    background-color: var(--active-bg);
}

.lang-option.active {
    color: var(--primary-orange);
    font-weight: 700;
    background-color: rgba(242, 2, 124, 0.04);
}

.lang-flag-circle-option {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lang-flag-circle-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* ==========================================================================
   Stations Section (Explore Stations)
   ========================================================================== */
.stations-section {
    padding: 20px 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.stations-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
}

.stations-header .box-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stations-header .subtitle {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    color: var(--primary-orange);
    font-size: 15px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.stations-header .title {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 24px;
    letter-spacing: -0.02em;
    margin: 0;
    text-transform: uppercase;
}

.stations-header .view-all-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    color: var(--primary-orange);
    font-size: 15px;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color var(--transition-smooth), transform var(--transition-smooth);
}

.stations-header .view-all-link:hover {
    color: var(--primary-orange-hover);
    transform: translateX(3px);
}

.stations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.station-card {
    flex: 0 0 calc(25% - 15px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    min-height: 390px;
    background-color: var(--card-bg);
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr auto;
    padding: 40px;
    overflow: hidden;
    position: relative;
}

.station-card:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-premium);
}

.station-card .card-text {
    grid-row: 1;
    grid-column: 1 / 3;
}

.station-card .card-text h3 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 36px;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    line-height: 1.1;
}

.station-card .card-text p {
    font-family: var(--font-main);
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 24px;
    margin: 0;
}

.station-card .card-stats {
    grid-row: 2;
    grid-column: 1;
    align-self: end;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.station-card .card-play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid var(--text-primary);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.station-card .card-play-btn i {
    font-size: 16px;
    color: var(--text-primary);
    margin-left: 2px;
    transition: color var(--transition-smooth);
}

.station-card .card-play-btn:hover,
.station-card .card-play-btn.playing {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.station-card .card-play-btn:hover i,
.station-card .card-play-btn.playing i {
    color: #ffffff;
}

.station-card .listening-info {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 20px;
}

.station-card .listening-count {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 14px;
    letter-spacing: 0.05em;
}

.station-card .waveform-icon {
    color: var(--primary-orange);
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: inline-block;
}

.station-card .station-img {
    grid-row: 2;
    grid-column: 2;
    align-self: end;
    width: 195px;
    height: 195px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-color);
    padding: 4px;
    background-color: #ffffff;
    transition: transform var(--transition-smooth);
}

.station-card:hover .station-img {
    transform: scale(1.05);
}

/* CSS Waveform Animation when playing */
.css-waveform {
    display: none;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
}

.station-card.is-playing .waveform-icon {
    display: none;
}

.station-card.is-playing .css-waveform {
    display: flex !important;
}

.css-waveform span {
    display: block;
    width: 3px;
    background-color: var(--primary-orange);
    border-radius: 2px;
    height: 3px;
    animation: wave-bar 1s ease-in-out infinite;
}

.css-waveform span:nth-child(1) { animation-delay: 0s; }
.css-waveform span:nth-child(2) { animation-delay: 0.2s; }
.css-waveform span:nth-child(3) { animation-delay: 0.4s; }
.css-waveform span:nth-child(4) { animation-delay: 0.1s; }
.css-waveform span:nth-child(5) { animation-delay: 0.3s; }

@keyframes wave-bar {
    0%, 100% { height: 3px; }
    50% { height: 14px; }
}

/* RESPONSIVE LAYOUT FOR STATIONS SECTION */
@media (max-width: 1200px) {
    .station-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .stations-section {
        padding: 40px 20px;
    }
    
    .stations-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .stations-header .view-all-link {
        margin-bottom: 0;
    }

    .station-card {
        flex: 0 0 100%;
        padding: 24px;
        min-height: auto;
    }
    
    .station-card .station-img {
        width: 100px;
        height: 100px;
    }
    
    .station-card .card-text h3 {
        font-size: 22px;
    }
    
    .station-card .card-text p {
        font-size: 15px;
    }
}

/* ==========================================================================
   Equalizer Status Indicator
   ========================================================================== */
.eq-status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 11px;
    font-family: var(--font-main);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
}

.eq-status-indicator .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #8c8c88; /* Neutral gray (EQ Off / Suspended) */
    display: inline-block;
    transition: background-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

/* EQ Working - Green Dot */
.eq-status-indicator.active .status-dot {
    background-color: #00c853;
    animation: eq-pulse 2s infinite ease-in-out;
}

.eq-status-indicator.active .status-text {
    color: var(--text-primary);
}

/* EQ Bypassed - Red Dot */
.eq-status-indicator.bypassed .status-dot {
    background-color: #ff3d00;
    animation: eq-pulse-bypassed 2s infinite ease-in-out;
}

.eq-status-indicator.bypassed .status-text {
    color: #ff3d00;
}

@keyframes eq-pulse {
    0% {
        box-shadow: 0 0 2px rgba(0, 200, 83, 0.4);
    }
    50% {
        box-shadow: 0 0 10px rgba(0, 200, 83, 0.8);
    }
    100% {
        box-shadow: 0 0 2px rgba(0, 200, 83, 0.4);
    }
}

@keyframes eq-pulse-bypassed {
    0% {
        box-shadow: 0 0 2px rgba(255, 61, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 10px rgba(255, 61, 0, 0.8);
    }
    100% {
        box-shadow: 0 0 2px rgba(255, 61, 0, 0.4);
    }
}

/* ==========================================================================
   Live & Schedule Sections (Copied from old-paper template)
   ========================================================================== */
.live-section {
  padding: 9px 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}


.stations-grid.two-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.stations-grid.two-cards .station-card {
  grid-template-columns: 2.05fr 1fr;
  grid-template-rows: 1fr;
  gap: 40px;
  padding: 40px;
}

.stations-grid.two-cards .station-card:first-child {
  flex: 1 1 calc(50% - 10px);
  min-width: 400px;
}

.stations-grid.two-cards .station-card:last-child {
  flex: 1 1 calc(50% - 10px);
  min-width: 400px;
}

/* Schedule Card Styles */
.station-card.schedule-card {
  display: block;
  /* Override grid */
  padding: 40px;
}

.schedule-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.schedule-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #dcdcdc;
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-item.active {
  background-color: var(--primary-orange);
  border-radius: 8px;
  border-bottom: none;
  color: #fff;
}

/* Hide border of the item preceding the active item to avoid double lines/artifacts */
.schedule-item:has(+ .schedule-item.active) {
  border-bottom-color: transparent;
}

.schedule-time {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
  width: 120px;
}

.schedule-item.active .schedule-time {
  color: #fff;
}

.schedule-item:not(.active) .schedule-time {
  color: #000;
}

.schedule-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.schedule-info h4 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin: 0;
}

.schedule-item:not(.active) .schedule-info h4 {
  color: #000;
}

.schedule-item.active .schedule-info h4 {
  color: #fff;
}

.schedule-info p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin: 0;
}

.schedule-item:not(.active) .schedule-info p {
  color: #000;
}

.schedule-item.active .schedule-info p {
  color: #fff;
}

.schedule-icon {
  font-size: 24px;
  color: #fff;
}

/* Schedule Header and Extras */
.schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eaeaea;
}

.schedule-header h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
}

.schedule-header h3 i {
  color: var(--primary-orange);
}

.schedule-header a {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}

.schedule-header a:hover {
  color: var(--primary-orange);
}

.schedule-badge {
  background-color: #e0e0e0;
  color: #555;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.notify-btn {
  background: none;
  border: 1px solid #ccc;
  color: #555;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.notify-btn:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

.live-left {
  grid-column: 1;
  height: 100%;
  display: flex;
  align-items: center;
}

.live-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  border-radius: 15px;
}

.live-info {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.live-info .live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-orange);
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 25px;
  text-transform: uppercase;
  margin: 0;
}

.live-info .live-badge .dot {
  width: 10px;
  height: 10px;
  background-color: var(--primary-orange);
  border-radius: 50%;
}

.live-info .track-info h3 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 30px;
  margin: 0;
  text-transform: uppercase;
  line-height: 1;
}

.live-info .track-info p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: 400;
  color: #000000;
  font-size: 24px;
  margin: 0;
}

.live-info .play-wave-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.live-info .waveforms {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
}

.live-info .live-waveform {
  color: var(--primary-orange) !important;
  font-size: 32px;
  margin: 0;
}

.live-info .live-time {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 24px;
  margin: 0;
}

@media (max-width: 2300px) {
  .stations-grid.two-cards .station-card {
    grid-template-columns: 1.25fr 1fr;
    gap: 30px;
    padding: 30px;
  }
}

@media (max-width: 1600px) {
  .stations-grid.two-cards .station-card {
    grid-template-columns: 1.1fr 1fr;
    gap: 20px;
    padding: 20px;
  }
}

@media (max-width: 1200px) {
  .stations-grid.two-cards {
    flex-direction: column;
  }
  
  .stations-grid.two-cards .station-card:first-child,
  .stations-grid.two-cards .station-card:last-child {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0 !important;
  }

  .stations-grid.two-cards .station-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    padding: 20px;
  }
  
  .stations-grid.two-cards .station-card .live-left {
    grid-column: 1;
    grid-row: 1;
  }
  
  .stations-grid.two-cards .station-card .live-info {
    grid-column: 1;
    grid-row: 2;
  }
}

/* ==========================================================================
   App Banner Section & Footer Styles (Copied from old-paper template)
   ========================================================================== */

/* App Banner Section */
.app-banner-section {
  padding: 15px 40px 40px 40px;
  width: 100%;
  box-sizing: border-box;
}

.app-banner {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  min-height: 250px;
}

.banner-text {
  padding: 40px;
  flex: 1;
  max-width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-text h2 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text-primary);
}

.title-with-apps {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 15px;
}

.banner-text .script-title {
  font-family: "Signatra", Helvetica, sans-serif;
  font-size: 60px;
  color: var(--primary-orange);
  text-transform: none;
  font-weight: 400;
  margin: -10px 0 0 0;
  letter-spacing: 1px;
}

.banner-text p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.banner-apps {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 2;
}

.banner-apps a {
  display: inline-block;
  transition: transform 0.2s;
}

.banner-apps a:hover {
  transform: scale(1.05);
}

.banner-apps img {
  height: 45px;
  width: auto;
  display: block;
}

/* Footer Styles */
.site-footer {
  background-color: #131619;
  color: #a0a0a0;
  padding: 60px 40px 20px;
  margin: 0 40px;
  max-width: calc(100% - 80px);
  font-family: "Roboto", Helvetica, sans-serif;
  border-radius: 17px 17px 0 0;
  box-sizing: border-box;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col-logo {
  flex: 1.5 1 250px;
}

.footer-col-newsletter {
  flex: 2 1 300px;
}

.site-footer .footer-logo {
  position: relative;
  width: auto;
  height: 70px;
  margin-bottom: 30px;
}

.site-footer .footer-logo-img {
  height: 100%;
  width: auto;
  display: block;
}

.site-footer .footer-logo .logo-subtitle {
  position: absolute;
  top: 42px;
  left: 0;
  width: 208px;
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 300;
  color: #ffffff;
  font-size: 20.5px;
  letter-spacing: 8px;
  line-height: normal;
  white-space: nowrap;
}

.site-footer .footer-logo .logo-waveform-svg {
  position: absolute;
  color: #ffffff;
  top: 11px;
  left: 205px;
  width: 47px;
  height: 47px;
}

.site-footer .footer-logo .logo-title {
  top: 0;
  width: 312px;
  font-family: "BBH Bartle-Regular", Helvetica, sans-serif;
  color: var(--primary-orange);
  font-size: 40px;
  letter-spacing: -2.8px;
  position: absolute;
  left: 1px;
}

.footer-tagline {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #1a1e22;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a.social-btn {
  font-size: 20px;
}

.social-icons a.fb-icon {
  color: #1877F2;
}

.social-icons a.ig-icon {
  color: #E4405F;
}

.social-icons a.tt-icon {
  color: #1DA1F2;
}

.social-icons a.yt-icon {
  color: #FF0000;
}

.social-icons a.db-icon {
  color: #EA4C89;
}

.social-icons a.social-btn:hover {
  background-color: var(--primary-orange);
  transform: translateY(-3px);
  color: #ffffff;
}

.footer-col h4 {
  color: #ffffff;
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #ffffff;
  font-size: 16px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--primary-orange);
}

.footer-col-newsletter p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #a0a0a0;
}

.newsletter-form {
  position: relative;
  display: flex;
  border: 1px solid #333333;
  border-radius: 30px;
  overflow: hidden;
  background-color: transparent;
}

.newsletter-form input {
  flex-grow: 1;
  background-color: transparent;
  border: none;
  padding: 15px 20px;
  color: #ffffff;
  font-size: 14px;
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form button {
  background-color: var(--primary-orange);
  color: #ffffff;
  border: none;
  padding: 15px 50px;
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  cursor: pointer;
  border-radius: 30px;
  margin: 3px;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: var(--primary-orange-hover);
}

.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 25px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #666666;
}

.scroll-top-btn {
  position: absolute;
  right: 0;
  top: calc(50% + 12.5px);
  transform: translateY(-50%);
  font-size: 30px;
  color: #666666;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.scroll-top-btn:hover {
  color: var(--primary-orange);
  transform: translateY(calc(-50% - 3px));
}

/* ==========================================================================
   13. ABOUT & TEAM PAGES
   ========================================================================== */
.about-page-header {
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    margin: 0 40px;
}

.about-page-header .top-utility-bar,
.about-page-header .main-navbar {
    margin-left: 0;
    margin-right: 0;
}

.floating-player-card.about-tuner {
    margin-top: 40px !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
}

.about-live-stream-box {
    width: 100%;
    padding: 40px 40px 20px 40px;
    box-sizing: border-box;
}

.about-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    padding: 20px;
    align-items: center;
}

.about-img-col {
    width: 100%;
    height: 100%;
}

.about-main-img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

.about-mission-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mission-label {
    font-family: "Roboto Condensed", sans-serif;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.about-mission-col h2 {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 42px;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
    text-transform: uppercase;
}

.about-mission-col p {
    font-family: var(--font-main);
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.team-section {
    padding: 20px 40px 10px 40px;
    width: 100%;
    box-sizing: border-box;
}

.team-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    margin-top: 0;
    padding-bottom: 15px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.team-grid::-webkit-scrollbar {
    height: 6px;
}

.team-grid::-webkit-scrollbar-track {
    background: transparent;
}

.team-grid::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

.team-grid::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

.team-card {
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    background-color: var(--card-bg);
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(24.22% - 26px);
    min-width: 240px;
    transition: var(--transition-smooth);
}

.team-card:hover {
    border-color: var(--primary-orange);
}

.team-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}



.team-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.team-info h3 {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

.team-role {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-orange);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
    letter-spacing: 0.05em;
}

.team-info p {
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.team-socials {
    display: flex;
    gap: 12px;
}

.team-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.team-socials a svg {
    transition: fill var(--transition-smooth);
}

.team-socials a:hover {
    background-color: var(--text-primary);
    color: #ffffff;
    border-color: var(--text-primary);
}

.team-socials a:hover svg {
    color: #ffffff;
}

/* ==========================================================================
   Consolidated Responsive Media Queries
   ========================================================================== */

@media (max-width: 1200px) {
    .floating-player-card {
        grid-template-columns: 33% 40% 27%;
        width: calc(100% - 80px);
        margin: 0 auto 16px auto;
    }
    
    .nav-menu {
        gap: 8px;
        margin-right: 20px;
    }
    
    .nav-item {
        font-size: 15px;
    }
    
    .nav-item a {
        padding: 8px 12px;
    }
    
    .nav-item.active a {
        padding: 8px 20px !important;
    }
    
    .navbar-listen-btn {
        width: 150px;
        font-size: 13px;
        padding: 10px 0;
    }
    
    .navbar-logo.logo {
        width: 220px;
        height: 55px;
    }
    
    .navbar-logo.logo .logo-title {
        font-size: 30px;
    }
    
    .navbar-logo.logo .logo-waveform-svg {
        left: 165px;
        top: 8px;
        width: 38px;
        height: 38px;
    }
    
    .navbar-logo.logo .logo-subtitle {
        font-size: 16px;
        top: 34px;
        letter-spacing: 5px;
    }
}

@media (max-width: 991px) {
    .hero-header-section {
        background-size: cover;
        background-position: center center;
        height: auto;
        min-height: 100vh;
        padding-top: 240px !important;
        padding-bottom: 20px;
    }
    
    .hero-container {
        padding: 40px 20px;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-text-content {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .floating-player-card {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        margin: 0 20px 16px 20px;
        width: calc(100% - 40px);
        max-width: 100%;
    }
    
    .player-station-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 15px;
    }

    .player-action-icons {
        justify-content: center;
    }

    .live-status {
        justify-content: center;
    }
    
    .player-tuner-section {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 0 0 15px 0;
    }
    
    .player-controls-section {
        padding-left: 0;
        padding-right: 0;
        align-self: stretch;
    }
    
    .station-filters-section {
        padding-top: 0;
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .filters-container {
        display: flex;
        justify-content: flex-start;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .site-footer {
        padding: 60px 20px 20px;
        margin: 0 20px;
        max-width: calc(100% - 40px);
    }
    
    .app-banner-section {
        padding: 15px 20px 20px 20px;
    }

    .header-container {
        flex-wrap: wrap;
        height: auto !important;
        padding: 15px 24px !important;
        gap: 15px;
    }
    
    .nav-menu {
        display: flex;
        order: 3;
        width: 100%;
        margin-right: 0;
        justify-content: center;
        gap: 15px;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .nav-listen-btn span {
        display: none;
    }
    .nav-listen-btn {
        padding: 12px;
    }

    .live-section {
        padding: 9px 20px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 40px;
    }

    .newsletter-form {
        flex-direction: column;
        border: none;
        width: 100%;
    }

    .newsletter-form input {
        border: 1px solid #333333;
        border-radius: 30px;
        margin-bottom: 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .newsletter-form button {
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-col-newsletter p {
        font-size: 13px;
    }
    
    .app-banner {
        flex-direction: column;
        text-align: center;
        padding-bottom: 0;
    }

    .banner-text {
        padding: 40px 20px;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .title-with-apps {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }

    .about-page-header {
        margin: 0;
    }

    .top-utility-bar {
        margin: 0;
        padding: 12px 20px;
    }
    
    .main-navbar {
        margin: 0;
        padding: 20px 20px;
    }

    .about-live-stream-box {
        padding: 20px;
    }
    
    .about-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }
    
    .about-img-col {
        height: 320px;
    }
    
    .about-mission-col h2 {
        font-size: 32px;
    }
    
    .team-section {
        padding: 20px 20px 10px 20px;
    }
}

@media (max-width: 768px) {
    .top-utility-bar {
        padding: 10px 20px;
        margin: 0;
    }
    
    .top-bar-visualizer {
        display: none; /* Hide visualizer on small mobiles to save space */
    }
    
    .main-navbar {
        padding: 15px 20px;
        margin: 0;
    }
    
    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        display: none;
    }
    
    .hero-container {
        padding: 20px 20px;
    }
    
    .floating-player-card {
        margin: 0 10px 16px 10px;
        width: calc(100% - 20px);
        padding: 15px;
    }

    .player-cover {
        width: 100%;
        max-width: 100%;
        height: 100%;
    }

    .btn-outline {
        background-color: #ffffff;
        border-color: #ffffff;
        color: var(--text-primary);
    }

    .btn-outline:hover {
        background-color: #f5f5f5;
        border-color: #f5f5f5;
        color: var(--text-primary);
    }

    .player-tuner-section {
        display: flex !important;
        padding: 15px 0;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .tuner-header {
        gap: 15px;
        margin-bottom: 10px;
    }

    .tuner-arrow {
        width: 36px;
        height: 36px;
        font-size: 11px;
    }

    .tuner-title {
        gap: 10px;
    }

    .tuner-prefix, .tuner-suffix {
        font-size: 14px;
    }

    .active-station-freq {
        font-size: 40px;
        width: 120px;
    }

    .tuner-scale-container {
        height: 38px;
    }

    .tuner-labels {
        font-size: 11px;
        top: 25px;
    }

    .tuner-needle {
        height: 22px;
    }

    .needle-line {
        height: 14px;
        width: 2px;
    }

    .needle-knob {
        width: 6px;
        height: 6px;
    }

    .stations-section {
        padding: 40px 20px;
    }

    .live-section {
        padding: 9px 20px;
    }

    .app-banner-section {
        padding: 15px 20px 20px 20px;
    }

    .app-banner {
        border-radius: 20px;
    }

    .banner-text {
        padding: 24px 15px;
    }

    .site-footer {
        padding: 40px 15px 20px;
        margin: 0 20px;
        max-width: calc(100% - 40px);
    }

    .about-img-col {
        height: 250px;
    }
}

@media (max-width: 600px) {
    .top-utility-bar {
        display: none !important;
    }
    
    .header-container {
        padding: 10px 15px !important;
        gap: 10px;
    }
    
    .nav-menu {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        margin-right: 15px;
    }
    
    .nav-menu::-webkit-scrollbar {
        display: none;
    }
    
    .nav-item {
        flex-shrink: 0;
        font-size: 15px;
    }
    
    .nav-item a {
        padding: 6px 12px;
    }
    
    .hero-header-section {
        padding-top: 130px !important;
    }
}

@media (max-width: 480px) {
    .top-utility-bar {
        display: none; /* Hide whole top bar on very small devices */
    }
    
    .hero-container {
        padding: 20px 10px;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary, .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   STATIONS PAGE STYLES (Find Your Station & Selected Stations)
   ========================================================================== */

.search-section {
    padding: 0 40px;
    margin-top: 40px;
    max-width: 100%;
}

.stations-search-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
    justify-content: flex-end;
}

.search-cat-link {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all var(--transition-smooth);
    background: none;
    border: 1px solid transparent;
    padding: 8px 30px;
    border-radius: 100px;
    cursor: pointer;
}

.search-cat-link:hover {
    color: var(--primary-orange);
}

.search-cat-link.active {
    background-color: #ede2ce;
    color: var(--color-text-primary) !important;
    border: 1px solid var(--color-text-primary) !important;
    border-radius: 100px;
    padding: 8px 30px !important;
}

@media (max-width: 768px) {
    .stations-search-categories {
        width: 100%;
        justify-content: flex-end;
        margin-top: 4px;
    }
}

.stations-search-container {
    width: 100%;
    margin-bottom: 0;
}

.stations-search-wrapper {
    position: relative;
    width: 100%;
}

.stations-search-form {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 6px 6px 6px 30px;
    transition: border-color var(--transition-smooth);
}

.stations-search-form:focus-within {
    border-color: var(--primary-orange);
}

.stations-search-form input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--font-main);
    font-size: 16px;
    color: var(--text-primary);
    outline: none;
}

.stations-search-form input::placeholder {
    color: var(--text-muted);
}

.stations-search-clear-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    padding: 0 12px;
    margin-right: 4px;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-smooth);
    flex-shrink: 0;
}

.stations-search-clear-btn:hover {
    color: var(--primary-orange);
}

.stations-search-clear-btn.active {
    display: flex;
}

.stations-search-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-orange);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: background-color var(--transition-smooth);
    flex-shrink: 0;
}

.stations-search-btn:hover {
    background-color: var(--primary-orange-hover);
}

.stations-search-btn.playing {
    background-color: var(--text-primary);
}

.stations-search-btn.playing:hover {
    background-color: var(--primary-orange);
}

.search-hint {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 15px;
    margin-left: 30px;
}

/* Search Dropdown Results Menu */
.search-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    margin-top: 10px;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    border: 1px solid var(--border-color);
}

.search-dropdown-menu.active {
    display: block;
}

.search-dropdown-item {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    transition: background-color var(--transition-smooth);
}

.search-dropdown-item:last-child {
    border-bottom: none;
}

.search-dropdown-item:hover {
    background-color: var(--active-bg);
}

.search-dropdown-item-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-color);
}

.search-dropdown-item-text {
    flex: 1;
}

.search-dropdown-item-title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.search-dropdown-item-genre {
    font-family: var(--font-main);
    font-size: 13px;
    color: var(--text-secondary);
}

.search-dropdown-no-results {
    padding: 20px;
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    font-family: var(--font-main);
}

/* Selected Stations Section */
.stations-page-section {
    padding: 0 40px;
    margin-top: 40px;
    margin-bottom: 0;
    max-width: 100%;
}

.stations-page-section + .app-banner-section {
    padding-top: 40px;
}

.stations-page-section .stations-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.clear-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--primary-orange);
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: color var(--transition-smooth), transform var(--transition-smooth);
}

.clear-all-btn:hover {
    color: var(--primary-orange-hover);
    transform: translateY(-1px);
}

.stations-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stations-page-card {
    border: 1px solid var(--border-color);
    border-radius: 20px;
    min-height: 380px;
    background-color: var(--card-bg);
    transition: border-color var(--transition-smooth), opacity 0.3s ease, transform 0.3s ease;
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr auto;
    padding: 40px;
    position: relative;
}

.stations-page-card:hover {
    border-color: var(--primary-orange);
}

.close-sp-card {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 30px;
    width: 27px;
    height: 27px;
    color: var(--text-muted);
    text-decoration: none;
    background-color: var(--bg-color);
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.close-sp-card:hover {
    color: #ffffff;
    background-color: var(--primary-orange);
}

.stations-page-card .sp-card-text {
    grid-row: 1;
    grid-column: 1 / 3;
}

.stations-page-card .sp-card-text h3 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 800;
    color: var(--text-primary);
    font-size: 32px;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.1;
}

.stations-page-card .sp-card-text p {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 20px;
    margin-top: 5px;
}

.stations-page-card .sp-card-stats {
    grid-row: 2;
    grid-column: 1;
    align-self: end;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stations-page-card .sp-card-play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--text-primary);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.stations-page-card .sp-card-play-btn i {
    font-size: 20px;
    color: var(--text-primary);
    margin-left: 2px;
    transition: color var(--transition-smooth);
}

.stations-page-card .sp-card-play-btn:hover,
.stations-page-card .sp-card-play-btn.playing {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.stations-page-card .sp-card-play-btn:hover i,
.stations-page-card .sp-card-play-btn.playing i {
    color: #ffffff;
    margin-left: 0;
}

.stations-page-card .sp-listening-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stations-page-card .sp-listening-count {
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--text-primary);
    font-size: 15px;
    letter-spacing: 0.02em;
}

.stations-page-card .sp-waveform-icon {
    color: var(--primary-orange);
    font-size: 18px;
}

.stations-page-card .sp-station-img {
    grid-row: 2;
    grid-column: 2;
    align-self: end;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-color);
    padding: 5px;
}

/* Custom modal overlay */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 24, 22, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
}

.custom-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.custom-modal {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-premium);
    transform: translateY(20px);
    transition: transform var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.custom-modal-overlay.active .custom-modal {
    transform: translateY(0);
}

.custom-modal-icon {
    color: var(--primary-orange);
    font-size: 64px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.custom-modal-title {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 24px;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.custom-modal-text {
    font-family: var(--font-main);
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.custom-modal-actions {
    display: flex;
    gap: 15px;
    width: 100%;
}

.modal-btn-cancel,
.modal-btn-confirm {
    flex: 1;
    padding: 14px 24px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 14px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-btn-cancel {
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
}

.modal-btn-cancel:hover {
    background: var(--border-color);
}

.modal-btn-confirm {
    border: none;
    background: var(--primary-orange);
    color: #ffffff;
}

.modal-btn-confirm:hover {
    background: var(--primary-orange-hover);
}

/* Contact Page Section */
.contact-page-section {
    padding: 0 40px;
    margin-top: 40px;
    margin-bottom: 0;
    max-width: 100%;
}

.contact-page-section + .app-banner-section {
    padding-top: 40px;
}

.contact-container {
    display: flex;
    gap: 30px;
    width: 100%;
    max-width: 100%;
}

.contact-info-col {
    flex: 1;
}

.contact-form-col {
    flex: 1.5;
}

.contact-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-sizing: border-box;
    height: 100%;
}

.contact-card h3 {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-card p {
    font-family: var(--font-main);
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.info-list li:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-orange);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    flex-shrink: 0;
}

.info-text {
    font-family: var(--font-main);
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.5;
}

.contact-map {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.contact-map iframe {
    display: block;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 16px;
    color: var(--text-primary);
    background-color: transparent;
    box-sizing: border-box;
    transition: var(--transition-smooth);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(242, 2, 124, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .stations-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .search-section {
        padding: 0 20px;
        margin-top: 30px;
    }
    
    .stations-page-section {
        padding: 30px 20px;
    }
    
    .stations-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stations-page-card {
        padding: 30px;
        min-height: 340px;
    }
    
    .stations-page-card .sp-station-img {
        width: 130px;
        height: 130px;
    }

    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .contact-page-section {
        padding: 0 20px;
        margin-top: 30px;
        margin-bottom: 0;
    }

    .contact-page-section + .app-banner-section {
        padding-top: 30px;
    }

    .contact-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .stations-page-grid {
        grid-template-columns: 1fr;
    }
    
    .stations-page-card {
        min-height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 20px;
    }
    
    .stations-page-card .sp-station-img {
        grid-row: 1;
        grid-column: 1;
        justify-self: center;
        width: 140px;
        height: 140px;
    }
    
    .stations-page-card .sp-card-text {
        grid-row: 2;
        grid-column: 1;
        text-align: center;
    }
    
    .stations-page-card .sp-card-stats {
        grid-row: 3;
        grid-column: 1;
        align-self: center;
        align-items: center;
    }
    
    .stations-search-form {
        padding: 6px 6px 6px 15px;
    }
    
    .stations-search-form input {
        font-size: 14px;
    }
    
    .custom-modal {
        padding: 30px 20px;
    }
}


/* ==========================================================================
   BLOG PAGE STYLES (Ported from Light Theme)
   ========================================================================== */

/* --- Blog Page Styles --- */
.blog-page-section {
  padding: 40px 40px 0 40px;
  max-width: 100%;
}

.blog-container {
  display: grid;
  grid-template-columns: 380px 1fr 380px;
  grid-template-areas: "left-sidebar main-content right-sidebar";
  gap: 40px;
  width: 100%;
  align-items: start;
}

.blog-sidebar-left {
  grid-area: left-sidebar;
}

.blog-main-content {
  grid-area: main-content;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.blog-sidebar-right {
  grid-area: right-sidebar;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blog-posts-area {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.single-post-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 40px;
  background-color: #ffffff;
  overflow: hidden;
  /* clear floats */
}

.single-post-image {
  float: left;
  width: 40%;
  margin-right: 30px;
  margin-bottom: 20px;
  border-radius: 12px;
  object-fit: cover;
}

.single-post-text {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
  text-align: justify;
  margin-bottom: 20px;
}

.single-post-text:last-child {
  margin-bottom: 0;
}

/* Post Comments Section */
.post-comments-section {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background-color: #ffffff;
}

.comments-title {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 22px;
  margin-bottom: 30px;
  color: #000;
}

.comments-list {
  margin-bottom: 50px;
}

.comment {
  display: flex;
  margin-bottom: 30px;
  gap: 20px;
}

.comment-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 24px;
  flex-shrink: 0;
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.comment-content {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 12px;
  flex: 1;
}

.comment-content h4 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  margin: 0 0 5px;
  font-size: 16px;
  color: #000;
}

.comment-date {
  font-family: "Roboto", Helvetica, sans-serif;
  display: block;
  font-size: 13px;
  color: #888;
  margin-bottom: 15px;
}

.comment-content p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.reply-btn {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: var(--primary-orange);
  text-decoration: none;
  transition: color 0.3s;
}

.reply-btn:hover {
  color: #000;
}

.leave-comment-form h3 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 22px;
  margin-bottom: 10px;
}

.leave-comment-form p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 14px;
  color: #777;
  margin-bottom: 25px;
}

.leave-comment-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.leave-comment-form .form-group {
  flex: 1;
  margin-bottom: 20px;
}

.leave-comment-form input,
.leave-comment-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #b0b0b0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  background: #ffffff;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.leave-comment-form input:focus,
.leave-comment-form textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
}

.submit-comment-btn {
  background-color: var(--primary-orange);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-comment-btn:hover {
  background-color: #000;
}

/* Sidebar Blocks */
.sidebar-block {
  background: transparent;
  border: 1px solid #b0b0b0;
  border-radius: 20px;
  padding: 40px 30px;
}

.sidebar-block h3 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-top: 0;
  margin-bottom: 25px;
  text-transform: uppercase;
}

/* Categories List */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.category-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: color 0.3s;
}

.category-list li:hover .cat-name,
.category-list li.active .cat-name {
  color: var(--primary-orange);
  font-weight: 700;
}

.category-list li .cat-badge {
  background-color: #e6ecef;
  color: #333;
  font-size: 12px;
  font-weight: 700;
  min-width: 28px;
  height: 28px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}

.category-list li.active .cat-badge {
  background-color: var(--primary-orange);
  color: #fff;
}

/* Tags Block */
.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tags-container .tag {
  background-color: #f4f6f8;
  color: #333;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 20px;
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}

.tags-container .tag:hover {
  background-color: var(--primary-orange);
  color: #fff;
}

/* Newsletter Block */
.newsletter-block {
  text-align: center;
}

.newsletter-icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: #fff5f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.newsletter-icon-wrapper i {
  font-size: 36px;
  color: var(--primary-orange);
}

.newsletter-block h3 {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #111;
  margin-top: 0;
  margin-bottom: 10px;
  text-transform: none;
  font-size: 24px;
}

.newsletter-block p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 15px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 25px;
}

.blog-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.blog-newsletter-form input {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.blog-newsletter-form input:focus {
  border-color: var(--primary-orange);
}

.blog-newsletter-form button {
  width: 100%;
  padding: 14px 15px;
  background-color: var(--primary-orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
}

.blog-newsletter-form button:hover {
  background-color: #e65500;
}

/* Post Card */
.blog-post-card {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  border: 1px solid #b0b0b0;
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.blog-post-card:hover {
  border-color: var(--primary-orange);
}

.blog-post-card .post-image {
  width: 100%;
  height: 500px !important;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-post-card:hover .post-image {
  transform: scale(1.03);
}

.blog-post-card .post-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.blog-post-card .post-category {
  color: var(--primary-orange);
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-post-card .post-title {
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #000;
  margin: 0 0 15px 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.blog-post-card .post-excerpt {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.blog-post-card .post-meta-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-post-card .post-meta {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #999;
}

.blog-post-card .post-arrow {
  color: var(--primary-orange);
  font-size: 22px;
  text-decoration: none;
  transition: transform 0.3s;
}

.blog-post-card:hover .post-arrow {
  transform: translateX(5px);
}

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.blog-pagination a,
.blog-pagination span {
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s, color 0.3s;
}

.blog-pagination a.page-arrow {
  color: var(--primary-orange);
}

.blog-pagination a:hover:not(.active) {
  background-color: #f4f6f8;
}

.blog-pagination a.active {
  background-color: var(--primary-orange);
  color: #fff;
}



/* --- Blog Page Responsive Rules --- */

  .blog-posts-area {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1250px) {
  .blog-container {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "main-content"
      "left-sidebar"
      "right-sidebar";
    gap: 40px;
  }

  .blog-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .sidebar-block.newsletter-block {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .sidebar-block.newsletter-block {
    grid-column: span 1;
  }

  .blog-post-card .post-image {
    height: 250px !important;
  }
}



/* --- Blog Search & Recent Posts Sidebar Updates --- */

.blog-search-form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.blog-search-form input {
  width: 100%;
  background: #f4f6f8;
  border: 1px solid #b0b0b0;
  padding: 14px 50px 14px 20px;
  border-radius: 30px;
  color: #000000;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.blog-search-form input:focus {
  border-color: var(--primary-orange);
  background: #ffffff;
  box-shadow: 0 0 10px rgba(209, 74, 28, 0.2);
}

.blog-search-form button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #333333;
  cursor: pointer;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.blog-search-form button:hover {
  color: var(--primary-orange);
}

.recent-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.recent-posts-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 20px;
}

.recent-posts-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.recent-post-item {
  display: flex;
  gap: 15px;
  text-decoration: none;
  align-items: center;
}

.recent-post-item img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.recent-post-item:hover img {
  border-color: var(--primary-orange);
  transform: scale(1.05);
}

.recent-post-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.recent-post-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #000000;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.recent-post-item:hover .recent-post-title {
  color: var(--primary-orange);
}

.recent-post-date {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.8rem;
  color: #999999;
}

/* --- Breadcrumbs --- */
.breadcrumbs-container {
    padding: 0 40px;
    margin-top: 10px;
    margin-bottom: 25px;
    width: 100%;
    box-sizing: border-box;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
}

.breadcrumb-item {
    color: #333333;
    text-decoration: none;
    transition: color var(--transition-smooth);
}

.breadcrumb-item:hover {
    color: var(--primary-orange);
}

.breadcrumb-separator {
    color: #999999;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item.active {
    color: #ff6f01;
    font-weight: 400;
    cursor: default;
}

@media (max-width: 2000px) {
    .breadcrumbs {
        display: flex;
        align-items: center;
        gap: 12px;
        font-family: var(--font-main);
        font-size: 14px;
    }

    .site-footer .footer-logo {
        position: relative;
        width: auto;
        height: 50px;
    }
}

/* Mobile responsiveness for breadcrumbs */
@media (max-width: 992px) {
    .breadcrumbs-container {
        padding: 0 20px;
        margin-top: 10px;
        margin-bottom: 20px;
    }
    .breadcrumbs {
        font-size: 14px;
    }
}

/* ==========================================================================
   20. PLAYLIST & STATIONS TABLE PAGE
   ========================================================================== */
.playlist-page-section {
    padding: 0 40px;
    margin-bottom: 40px;
    box-sizing: border-box;
    width: 100%;
}

/* Featured Header Card */
.playlist-header-box {
    display: flex;
    align-items: stretch;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
}

.playlist-header-col {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.playlist-header-col.col-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    flex: 0 0 auto;
    width: fit-content;
    padding-right: 20px;
}

.playlist-header-col.col-mid {
    flex: 1 1 auto;
    padding: 0 20px;
    justify-content: flex-end;
}

.playlist-header-col.col-right-placeholder {
    flex: 0 0 80px;
    width: 80px;
    padding-left: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* 20-Band Graphic Equalizer Styles */
.playlist-eq-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 10px 0;
}

.playlist-eq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 2px;
    padding-left: 2.5%;
    padding-right: 2.5%;
    box-sizing: border-box;
}

.playlist-eq-header .eq-status-indicator {
    margin-bottom: 0;
}

.btn-eq-reset {
    background: transparent;
    border: none;
    color: var(--primary-orange);
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 1px;
    padding: 2px 0;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.btn-eq-reset:hover {
    color: var(--primary-orange-hover);
}

.playlist-eq-sliders {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 150px;
    width: 100%;
    box-sizing: border-box;
}

.eq-channel {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    height: 100%;
    justify-content: flex-end;
}

.eq-track {
    position: relative;
    width: 1px;
    height: 110px;
    background-color: var(--border-color);
    cursor: pointer;
}

/* Horizontal ticks background for equalizer channels */
.eq-track::before {
    content: '';
    position: absolute;
    top: 0;
    left: -4px;
    width: 9px;
    height: 100%;
    background: repeating-linear-gradient(to bottom,
        transparent 0px,
        transparent 4px,
        var(--text-muted) 4px,
        var(--text-muted) 5px,
        transparent 5px,
        transparent 8px
    );
    opacity: 0.6;
}

.eq-handle {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 18px;
    height: 22px;
    background-color: #ff6e00;
    border: 1px solid #000;
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    bottom: 50%; /* center */
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
    z-index: 2;
}

.eq-handle .handle-dot {
    width: 4px;
    height: 4px;
    background-color: #ffffff;
    border-radius: 50%;
}

.eq-handle:active {
    cursor: grabbing;
    transform: translate(-50%, 50%) scale(1.15);
}

.eq-track:hover .eq-handle,
.eq-handle.dragging {
    background-color: #333333;
}

.eq-label {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-top: 6px;
    text-align: center;
    pointer-events: none;
    white-space: nowrap;
}

/* Custom Vertical Volume Slider Styles */
.vertical-volume-slider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 100%;
    width: 100%;
}

.vertical-volume-slider {
    position: relative;
    width: 20px;
    height: 150px;
    cursor: pointer;
}

.slider-track-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background-color: var(--border-color);
}

/* Horizontal ticks background for volume slider track */
.slider-track-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -4px;
    width: 9px;
    height: 100%;
    background: repeating-linear-gradient(to bottom,
        transparent 0px,
        transparent 4px,
        var(--text-muted) 4px,
        var(--text-muted) 5px,
        transparent 5px,
        transparent 8px
    );
    opacity: 0.6;
}

.slider-fill-line {
    display: none;
}

.slider-handle {
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translate(-50%, 50%);
    width: 20px;
    height: 25px;
    background-color: #ff6e00;
    border: 1px solid #000;
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
    z-index: 2;
    will-change: bottom;
}

.slider-handle .handle-dot {
    width: 4px;
    height: 4px;
    background-color: #ffffff;
    border-radius: 50%;
}

.slider-handle:active {
    cursor: grabbing;
    transform: translate(-50%, 50%) scale(1.15);
}

.vertical-volume-slider:hover .slider-handle,
.slider-handle.dragging {
    background-color: #333333;
}

.volume-slider-label {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #515151;
}

.playlist-header-divider {
    width: 1px;
    background-color: var(--border-color);
    align-self: stretch;
    margin: 10px 0;
    flex-shrink: 0;
}


.playlist-cover-wrapper {
    width: auto;
    height: 190px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background-color: #fafafa;
}

.playlist-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.playlist-info-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 380px;
    width: 100%;
    text-align: left;
}

.playlist-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-orange);
    background-color: rgba(242, 2, 124, 0.08);
    padding: 4px 10px;
    border-radius: 4px;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-family: var(--font-main);
}

.playlist-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 10px 0;
    font-family: var(--font-main);
    line-height: 1.2;
}

.playlist-description {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0 0 20px 0;
    line-height: 1.6;
    font-family: var(--font-main);
    word-wrap: break-word;
}

.playlist-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-play-all {
    background-color: var(--primary-orange);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-main);
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 2, 124, 0.15);
}

.btn-play-all:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 2, 124, 0.25);
}

.btn-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: #ffffff;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-icon-circle:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background-color: rgba(242, 2, 124, 0.04);
    transform: translateY(-2px);
}

.btn-icon-circle.liked {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(242, 2, 124, 0.2);
}

.btn-icon-circle.liked i {
    font-weight: 900; /* Force solid FontAwesome icon */
}

.playlist-visualizer-placeholder {
    width: 250px;
    height: 120px;
    flex-shrink: 0;
}

/* Playlist Table Layout */
.playlist-table-container {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background-color: #ffffff;
    padding: 20px 30px;
    box-sizing: border-box;
    overflow-x: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.playlist-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-family: var(--font-main);
}

.playlist-table th {
    padding: 15px 10px;
    font-size: 12px;
    font-weight: 700;
    color: #999999;
    border-bottom: 1px solid var(--border-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.playlist-table td {
    padding: 15px 10px;
    vertical-align: middle;
    font-size: 15px;
    color: var(--text-primary);
}

.playlist-table tbody tr {
    border-bottom: 1px solid #f8f8f8;
    transition: background-color 0.2s ease;
}

.playlist-table tbody tr:hover {
    background-color: #fafafa;
}

.playlist-table tbody tr:last-child {
    border-bottom: none;
}

/* Table columns customization */
.playlist-table .col-num {
    width: 50px;
    text-align: center;
    color: #999999;
    font-family: var(--font-main);
    font-size: 15px;
}

.playlist-table .col-title {
    width: 45%;
    padding-left: 20px;
}

.playlist-table .col-genre {
    width: 30%;
}

.playlist-table .col-plays {
    width: 120px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
    color: #555555;
}

.playlist-table .col-likes {
    width: 120px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
    color: #555555;
    position: relative;
}

.playlist-table .col-action {
    width: 120px;
    text-align: right;
}

/* Station Details in Cell */
.playlist-station-title-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}

.playlist-table-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.playlist-table-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Genre Badge */
.genre-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    background-color: #f4f4f4;
    color: #666666;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Table Row Play Button */
.btn-row-play {
    background-color: transparent;
    border: 1px solid var(--text-primary);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    font-family: var(--font-main);
    text-transform: uppercase;
}

.btn-row-play:hover {
    background-color: var(--text-primary);
    color: #ffffff;
}

.btn-row-play.playing {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: #ffffff;
}

.btn-row-play.playing:hover {
    background-color: var(--primary-orange-hover);
    border-color: var(--primary-orange-hover);
}

/* Responsiveness media queries for Playlist section */
@media (max-width: 991px) {
    .playlist-page-section {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .playlist-header-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 20px;
        padding: 25px;
    }

    .playlist-header-col.col-left {
        flex-direction: column;
        gap: 20px;
        padding-right: 0;
    }

    .playlist-header-col.col-mid,
    .playlist-header-col.col-right-placeholder {
        display: none;
    }

    .playlist-header-divider {
        display: none;
    }

    .playlist-info-block {
        align-items: center;
        text-align: center;
    }

    .playlist-info-block .playlist-tag {
        align-self: center;
    }

    .playlist-info-block .playlist-title {
        font-size: 28px;
    }

    .playlist-info-block .playlist-description {
        font-size: 14px;
        text-align: center;
        margin-bottom: 15px;
    }

    .playlist-visualizer-placeholder {
        display: none;
    }

    .playlist-table-container {
        padding: 15px;
    }

    .playlist-table th, .playlist-table td {
        padding: 12px 8px;
    }
    
    .playlist-table .col-genre {
        width: 120px;
    }
    
    .playlist-table .col-plays,
    .playlist-table .col-likes {
        width: 80px;
    }
}

/* Playlist Pagination */
.playlist-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.playlist-pagination a {
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.playlist-pagination a.page-arrow {
    color: var(--primary-orange);
}

.playlist-pagination a.page-arrow.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.playlist-pagination a:hover:not(.active):not(.disabled) {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background-color: rgba(242, 2, 124, 0.04);
    transform: translateY(-2px);
}

.playlist-pagination a.active {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(242, 2, 124, 0.2);
}

/* ==========================================================================
   21. STREAMING ARCHIVE SECTION
   ========================================================================== */
.archive-page-section {
    padding: 0 40px;
    margin-top: 40px;
    margin-bottom: 60px;
    max-width: 100%;
    box-sizing: border-box;
}

.archive-header-intro {
    margin-bottom: 40px;
}

.archive-label {
    display: inline-block;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.archive-header-intro h2 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.archive-subtitle {
    font-family: var(--font-main);
    font-size: 16px;
    color: var(--text-secondary);
}

.archive-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.archive-section-header .box-title {
    border-left: 3px solid var(--primary-orange);
    padding-left: 15px;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.archive-section-header .title {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--text-primary);
    letter-spacing: 0.03em;
    margin: 0;
}

.selected-date-display {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Date Grid Layout */
.archive-date-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* Date Card styles */
.archive-date-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.archive-date-card .date-card-month {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.archive-date-card .date-card-day-num {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 800;
    font-size: 44px;
    color: var(--text-primary);
    line-height: 1;
    margin: 8px 0;
    transition: var(--transition-smooth);
}

.archive-date-card .date-card-day-name {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

/* Date card hover & active */
.archive-date-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-premium);
}

.archive-date-card.active {
    border: 2px solid var(--primary-orange);
    background-color: var(--active-bg);
}

.archive-date-card.active .date-card-month,
.archive-date-card.active .date-card-day-num,
.archive-date-card.active .date-card-day-name {
    color: var(--primary-orange);
}

/* Divider styling */
.archive-divider {
    border: 0;
    height: 1px;
    background-color: var(--border-color);
    margin: 40px 0;
}

/* Shows Grid Layout */
.archive-shows-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* Show Card Styles */
.show-archive-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    transition: var(--transition-smooth);
    position: relative;
    box-sizing: border-box;
}

.show-archive-card:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-premium);
    transform: translateY(-3px);
}

.show-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.show-dj-avatar-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-color);
    background-color: #f5f3ee;
    transition: var(--transition-smooth);
}

.show-archive-card:hover .show-dj-avatar-wrapper {
    border-color: var(--primary-orange);
}

.show-dj-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.show-time-badge {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    background-color: #f5f3ee;
    padding: 6px 12px;
    border-radius: 20px;
}

.show-card-body {
    margin-top: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.show-card-genre {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.show-card-title {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--text-primary);
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 6px 0;
}

.show-card-host {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-orange);
}

.show-card-tags {
    font-family: var(--font-main);
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 10px;
    line-height: 1.4;
}

.show-card-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.show-listen-label {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.show-archive-card:hover .show-listen-label {
    color: var(--primary-orange);
}

.show-card-play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-orange);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-button);
}

.show-card-play-btn:hover {
    background-color: var(--primary-orange-hover);
    transform: scale(1.05);
}

.show-card-play-btn i {
    font-size: 14px;
    margin-left: 2px; /* Center play icon slightly */
}

.show-archive-card.playing {
    border-color: var(--primary-orange);
    background-color: var(--active-bg);
}

.show-archive-card.playing .show-card-play-btn {
    background-color: var(--text-primary);
}

/* --- Podcast Page Styles --- */
.podcast-page-section {
  padding: 40px 40px 0 40px;
  max-width: 100%;
}

.podcast-header-intro {
  margin-bottom: 50px;
}

.podcast-label {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-orange);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.podcast-header-intro h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.podcast-subtitle {
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--text-secondary);
}

.podcast-container {
  display: grid;
  grid-template-columns: 380px 1fr 380px;
  grid-template-areas: "left-sidebar main-content right-sidebar";
  gap: 40px;
  width: 100%;
  align-items: start;
}

.dj-info-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  grid-template-areas: "main-content right-sidebar";
  gap: 40px;
  width: 100%;
  align-items: start;
}

.dj-info-container .podcast-active-cover-img {
  width: 300px;
  height: 300px;
  border-radius: 16px;
}

.podcast-sidebar-left {
  grid-area: left-sidebar;
}

.podcast-main-content {
  grid-area: main-content;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.podcast-sidebar-right {
  grid-area: right-sidebar;
}

.podcast-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Category list style in left sidebar */
.podcast-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.podcast-category-list li {
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  background-color: #ffffff;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.podcast-category-list li:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
  transform: translateX(3px);
}

.podcast-category-list li.active {
  background-color: var(--active-bg);
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

/* Active header block: image floated left, description wraps */
.podcast-active-header-block {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 30px;
  overflow: hidden; /* Clear floats */
}

.podcast-active-header-block h2 {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 32px;
  color: var(--text-primary);
  margin: 0 0 4px 0;
}

.podcast-active-host {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-orange);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.podcast-active-cover-img {
  float: left;
  width: 240px;
  height: 240px;
  border-radius: 12px;
  margin-right: 30px;
  margin-bottom: 15px;
  object-fit: cover;
  box-shadow: var(--shadow-premium);
}

.podcast-active-desc-text {
  font-family: var(--font-main);
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.podcast-active-desc-text p {
  margin: 0 0 18px 0;
}

.podcast-active-desc-text p:last-child {
  margin-bottom: 0;
}

.podcast-active-meta-row {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  clear: both; /* Clear float */
  padding-top: 20px;
  border-top: 1px dashed var(--border-color);
}

.podcast-subscribe-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.podcast-subscribe-label {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.podcast-subscribe-icons {
  display: flex;
  gap: 8px;
}

.podcast-sub-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f3ee;
  color: var(--text-secondary);
  font-size: 14px;
  transition: var(--transition-smooth);
}

.podcast-sub-icon:hover {
  background-color: var(--primary-orange);
  color: #ffffff;
  transform: translateY(-2px);
}

.podcast-share-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.podcast-share-label {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.podcast-share-links {
  display: flex;
  gap: 12px;
}

.podcast-share-btn {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.podcast-share-btn:hover {
  color: var(--primary-orange);
}

.podcast-divider {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin: 30px 0;
}

/* Episodes Grid (5 columns on desktop) */
.podcast-episodes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* Episode Card Design (different from archive) */
.episode-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.episode-card:hover {
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-premium);
}

.episode-card-image-wrapper {
  position: relative;
  width: 100%;
  /* height: 220px; */
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.episode-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.episode-card:hover .episode-card-img {
  transform: scale(1.06);
}

.episode-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.episode-card-date {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.episode-card-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.episode-listen-row {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  width: fit-content;
}

.episode-play-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--primary-orange);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  transition: var(--transition-smooth);
}

.episode-listen-text {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.episode-card:hover .episode-play-icon {
  background-color: #ffffff;
  color: var(--primary-orange);
  transform: scale(1.1);
}

.episode-card:hover .episode-listen-text {
  color: var(--primary-orange);
}

.episode-card-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.episode-card-excerpt {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
  flex-grow: 1;
}

.episode-card.playing {
  border-color: var(--primary-orange);
}

.episode-card.playing .episode-play-icon {
  background-color: var(--text-primary);
  color: #ffffff;
}

.episode-card.playing .episode-listen-text {
  color: var(--primary-orange);
}

/* More Episodes Wrapper & Button */
.podcast-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.btn-more-episodes {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 30px;
  border-radius: 30px;
  background-color: #8c5d1a; /* Predefined brown/orange tone from theme */
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-button);
}

.btn-more-episodes:hover {
  background-color: var(--primary-orange);
  transform: translateY(-2px);
}

/* Premium Google Ad Block styling */
.google-ad-block {
  border: 1px dashed var(--border-color);
  border-radius: 20px;
  padding: 20px;
  background-color: var(--active-bg);
}

.ad-label {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 12px;
}

.ad-banner-placeholder {
  background: radial-gradient(circle at center, rgba(19, 19, 19, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
  border: 1px solid rgba(242, 2, 124, 0.25);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
}

.ad-banner-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(242, 2, 124, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.ad-title {
  font-family: "Syncopate", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--primary-orange);
  padding-bottom: 6px;
  width: 100%;
}

.ad-text {
  font-family: var(--font-main);
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.ad-btn {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: var(--primary-orange);
  color: #ffffff;
  text-decoration: none !important;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-button);
}

.ad-btn:hover {
  background-color: var(--primary-orange-hover);
  transform: scale(1.05);
  color: #ffffff;
}

.ad-meta {
  font-family: var(--font-main);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 15px;
}

/* --- Shows Page Styles --- */
.shows-page-section {
  padding: 40px 40px 0 40px;
  max-width: 100%;
}

.shows-header-intro {
  margin-bottom: 50px;
}

.shows-label {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-orange);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.shows-header-intro h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.shows-subtitle {
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--text-secondary);
}

.shows-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.show-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.show-card:hover {
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-premium);
  transform: translateY(-5px);
}

.show-card-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.show-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.show-card:hover .show-card-img {
  transform: scale(1.05);
}

.show-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 90, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.show-card:hover .show-card-overlay {
  opacity: 1;
}

.show-card-overlay i {
  font-size: 24px;
  color: #ffffff;
  background-color: var(--primary-orange);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-premium);
}

.show-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.show-card-genre {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.show-card-title {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.show-card-host {
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.show-card-schedule {
  font-family: var(--font-main);
  font-size: 13px;
  color: var(--primary-orange);
  background-color: rgba(255, 90, 0, 0.08);
  padding: 6px 12px;
  border-radius: 12px;
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.show-card-excerpt {
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.show-card-listen-btn {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: start;
  transition: var(--transition-smooth);
}

.show-card-listen-btn i {
  font-size: 18px;
  color: var(--primary-orange);
  transition: var(--transition-smooth);
  pointer-events: none;
}

.show-card-listen-btn:hover {
  color: var(--primary-orange);
}

.show-card-listen-btn:hover i {
  transform: scale(1.1);
}

/* --- DJs Page Styles --- */
.djs-page-section {
  padding: 40px 40px 0 40px;
  max-width: 100%;
}

.djs-header-intro {
  margin-bottom: 50px;
}

.djs-label {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-orange);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.djs-header-intro h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.djs-subtitle {
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--text-secondary);
}

.djs-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.dj-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.dj-avatar-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-color);
  background-color: var(--card-bg);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-premium);
}

.dj-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.dj-info {
  margin-top: 20px;
}

.dj-name {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 6px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.dj-show {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hover effects */
.dj-card:hover .dj-avatar-wrapper {
  border-color: var(--primary-orange);
  box-shadow: 0 0 25px rgba(255, 90, 0, 0.45);
}

.dj-card:hover .dj-avatar-img {
  transform: scale(1.08);
}

.dj-card:hover .dj-name {
  color: var(--primary-orange);
}

/* ==========================================================================
   22. RESPONSIVE MEDIA QUERIES FOR STREAMING ARCHIVE & PODCASTS
   ========================================================================== */
@media (max-width: 1200px) {
    .archive-shows-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .podcast-container {
        grid-template-columns: 320px 1fr 320px;
        gap: 25px;
    }
    .dj-info-container {
        grid-template-columns: 1fr 320px;
        gap: 25px;
    }
    .podcast-episodes-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .shows-grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .djs-grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .archive-date-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .archive-shows-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .archive-header-intro h2,
    .podcast-header-intro h2,
    .shows-header-intro h2,
    .djs-header-intro h2,
    .schedule-header-intro h2,
    .donate-header-intro h2 {
        font-size: 32px;
    }
    .podcast-container {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "main-content"
            "left-sidebar"
            "right-sidebar";
        gap: 30px;
    }
    .dj-info-container {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "main-content"
            "right-sidebar";
        gap: 30px;
    }
    .podcast-episodes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .shows-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .djs-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .archive-page-section {
        padding: 0 20px;
    }
    .archive-date-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .archive-shows-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .archive-header-intro h2,
    .podcast-header-intro h2,
    .shows-header-intro h2,
    .djs-header-intro h2,
    .schedule-header-intro h2,
    .donate-header-intro h2 {
        font-size: 28px;
    }
    .show-archive-card {
        min-height: auto;
    }
    .podcast-page-section {
        padding: 30px 20px 0 20px;
    }
    .podcast-episodes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .shows-grid-container {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 50px;
    }
    .shows-page-section {
        padding: 30px 20px 0 20px;
    }
    .djs-page-section {
        padding: 30px 20px 0 20px;
    }
    .podcast-active-cover-img {
        float: none;
        width: 100%;
        height: auto;
        max-width: 280px;
        margin: 0 auto 20px auto;
        display: block;
    }
    .dj-info-container .podcast-active-cover-img {
        float: none;
        width: 100%;
        height: auto;
        max-width: 300px;
        margin: 0 auto 20px auto;
        display: block;
    }
    .podcast-active-header-block {
        text-align: center;
        padding: 20px;
    }
    .podcast-active-meta-row {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .podcast-episodes-grid {
        grid-template-columns: 1fr;
    }
    .djs-grid-container {
        gap: 20px;
    }
}




/* ==========================================================================
   21. BROADCAST SCHEDULE PAGE STYLES
   ========================================================================== */
.schedule-page-section {
    padding: 40px 40px 0 40px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
}

.schedule-container-grid {
    display: grid;
    grid-template-columns: 280px 1fr 300px;
    grid-template-areas: "left-sidebar main-content right-sidebar";
    gap: 40px;
    width: 100%;
    align-items: start;
}

.schedule-container-grid .podcast-main-content {
    padding-top: 0;
}

.schedule-header-intro {
    margin-bottom: 50px;
}

.schedule-label {
    display: inline-block;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.schedule-header-intro h2 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.schedule-subtitle-text {
    font-family: var(--font-main);
    font-size: 16px;
    color: var(--text-primary);
    margin: 0;
}

/* Days Navigation */
.schedule-days-nav-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    width: 100%;
}

.schedule-days-nav {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 6px;
    backdrop-filter: blur(10px);
    overflow-x: auto;
    max-width: 100%;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.schedule-days-nav::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.day-tab {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.day-tab:hover {
    color: var(--text-primary);
    background: rgba(24, 24, 22, 0.05);
}

.day-tab.active {
    color: #ffffff;
    background: var(--text-primary);
    box-shadow: 0 4px 15px rgba(24, 24, 22, 0.2);
}

/* Day Title Head */
.schedule-day-heading-container {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.schedule-day-heading {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    padding-bottom: 10px;
}

/* Columns container */
.schedule-columns-container {
    display: flex;
    gap: 0;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.schedule-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.schedule-column-left {
    padding-right: 25px;
    padding-left: 0;
}

.schedule-column-right {
    padding-left: 25px;
    padding-right: 0;
}

.column-time-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-primary);
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.column-time-title i {
    color: var(--text-primary);
}

/* Divider */
.schedule-column-divider {
    width: 1px;
    background: linear-gradient(to bottom, rgba(24, 24, 22, 0) 0%, rgba(24, 24, 22, 0.15) 50%, rgba(24, 24, 22, 0) 100%);
    position: relative;
    align-self: stretch;
    flex-shrink: 0;
}

.divider-glow-dot {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--text-primary);
    border-radius: 50%;
}

/* Slots List */
.schedule-slots-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Slot Card Item */
.schedule-slot-item {
    display: flex;
    gap: 20px;
    align-items: stretch;
    transition: all 0.3s ease;
}

.slot-time-col {
    flex: 0 0 110px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    padding-top: 18px;
    text-align: right;
}

.slot-time-range {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #181816;
    white-space: nowrap;
}

.slot-live-badge {
    margin-top: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #ffffff;
    background: var(--primary-orange);
    border: 1px solid var(--primary-orange);
    padding: 3px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.5px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    animation: pulseWhite 1.5s infinite;
}

@keyframes pulseWhite {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.slot-card-content {
    flex: 1;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.schedule-slot-item:hover .slot-card-content {
    background: #ffffff;
    border-color: var(--text-primary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

/* Now playing state style */
.schedule-slot-item.now-playing .slot-card-content {
    background: #ffffff;
    border-color: var(--primary-orange);
    border-width: 2px;
    box-shadow: 0 8px 30px rgba(242, 2, 124, 0.05);
}

.schedule-slot-item.now-playing .slot-time-range {
    color: var(--primary-orange);
    font-weight: 800;
}

.slot-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.slot-show-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.slot-dj-row {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.slot-dj-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.slot-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.slot-dj-link:hover .slot-avatar {
    border-color: var(--text-primary);
}

.slot-dj-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.slot-dj-link:hover .slot-dj-name {
    color: var(--text-primary);
    text-decoration: underline;
}

.slot-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    border-top: none;
    padding-top: 5px;
}

.slot-genres {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13px;
    color: #181816;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slot-play-btn {
    background: #ffffff;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    border-radius: 20px;
    padding: 6px 14px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

.slot-play-btn i {
    font-size: 14px;
    color: inherit;
}

.slot-play-btn:hover,
.schedule-slot-item:hover .slot-play-btn {
    background: var(--primary-orange);
    color: #ffffff;
    border-color: var(--primary-orange);
    box-shadow: 0 0 10px rgba(242, 2, 124, 0.3);
}

.slot-play-btn.playing {
    background: var(--primary-orange) !important;
    color: #ffffff !important;
    border-color: var(--primary-orange) !important;
    box-shadow: 0 0 10px rgba(242, 2, 124, 0.3) !important;
}

.slot-play-btn:disabled,
.slot-play-btn.disabled {
    background: #f2f2ef !important;
    color: #8a8a85 !important;
    border-color: #dcdcd9 !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    transform: none !important;
}

.schedule-slot-item.inactive {
    opacity: 0.6;
}

.schedule-slot-item.inactive:hover .slot-play-btn {
    background: #f2f2ef !important;
    color: #8a8a85 !important;
    border-color: #dcdcd9 !important;
    box-shadow: none !important;
}




/* Sidebar Overrides for Schedule Page (Making Day Selector black instead of orange) */
.schedule-container-grid .podcast-category-list li.day-tab-vertical:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
    transform: translateX(3px);
}

.schedule-container-grid .podcast-category-list li.day-tab-vertical.active {
    background-color: var(--primary-orange);
    border-color: var(--text-primary);
    color: #ffffff;
}

/* Search Focus & Hover Overrides for Schedule Page */
.schedule-container-grid .blog-search-form input:focus {
    border-color: var(--text-primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.schedule-container-grid .blog-search-form button:hover {
    color: var(--text-primary);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .schedule-container-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "main-content"
            "left-sidebar"
            "right-sidebar";
        gap: 30px;
    }

    .schedule-container-grid .podcast-main-content {
        padding-top: 0;
    }

    .schedule-page-section {
        padding: 30px 20px;
    }
    
    .schedule-columns-container {
        flex-direction: column;
        gap: 30px;
    }

    .schedule-column-divider {
        display: none;
    }

    .column-time-title {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .schedule-title {
        font-size: 28px;
    }

    .schedule-slot-item {
        flex-direction: column;
        gap: 10px;
    }

    .slot-time-col {
        flex: none;
        align-items: flex-start;
        padding-top: 0;
        text-align: left;
    }

    .slot-live-badge {
        margin-top: 5px;
    }

    .slot-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .slot-dj-row {
        align-self: flex-start;
    }

    .day-tab {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* ==========================================================================
   22. DONATE PAGE STYLES
   ========================================================================== */
.donate-page-section {
    padding: 40px 40px 0 40px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
}

.donate-header-intro {
    margin-bottom: 50px;
}

.donate-label {
    display: inline-block;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.donate-header-intro h2 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.donate-subtitle {
    font-family: var(--font-main);
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

.donate-container {
    width: 100%;
    max-width: 100%;
}


.donation-wizard {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.wizard-step {
    border-bottom: 1px solid #f0ede6;
    padding-bottom: 40px;
}

.wizard-step:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.wizard-step h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wizard-step h3 span.step-number {
    background: var(--text-primary);
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

/* 1. Donation Type Selectors */
.donation-type-selectors {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 10px;
}

.type-btn {
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 30px;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 250px;
    box-sizing: border-box;
}

.type-btn span.btn-desc {
    font-size: 11px;
    font-weight: 400;
    color: #666;
    text-transform: none;
    margin-top: 4px;
    letter-spacing: 0;
}

.type-btn:hover {
    border-color: var(--text-primary);
}

.type-btn.active {
    background: #fff8f3;
    border: 2px solid var(--primary-orange);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(242, 2, 124, 0.12);
}

.type-btn.active span.btn-desc {
    color: var(--text-primary);
}

/* 2. Donation Amount Grid */
.donation-amount-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.amount-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    min-height: 100px;
    box-sizing: border-box;
    position: relative;
}

.amount-card:hover {
    border-color: var(--text-primary);
}

.amount-card.active {
    background: #fff8f3;
    border: 2px solid var(--primary-orange);
    box-shadow: 0 4px 15px rgba(242, 2, 124, 0.12);
}

.amount-val {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.amount-lbl {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.amount-card.active .amount-lbl {
    color: var(--primary-orange);
}

/* Custom amount card styles */
.amount-card.custom-card {
    padding: 12px 10px;
}

.custom-input-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
}

.custom-input-container span {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.custom-amount-input {
    border: none;
    border-bottom: 2px solid var(--border-color);
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    width: 70px;
    text-align: center;
    outline: none;
    background: transparent;
    padding: 0;
}

.amount-card.custom-card.active .custom-amount-input {
    border-color: var(--primary-orange);
}

.amount-card.custom-card.active .custom-input-container span {
    color: var(--primary-orange);
}

.amount-card.custom-card span.surprise-lbl {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.amount-card.custom-card.active span.surprise-lbl {
    color: var(--primary-orange);
}

.amount-info-text {
    font-size: 13px;
    color: #666;
    margin-top: 15px;
    text-align: center;
}

/* 3. Thank you gifts grid */
.donation-gifts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gift-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    box-sizing: border-box;
}

.gift-card:hover:not(.locked) {
    border-color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.gift-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f9f8f6;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-bottom: 12px;
}

.gift-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gift-card:hover:not(.locked) .gift-img-wrapper img {
    transform: scale(1.03);
}

.gift-status-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 20px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.gift-card.locked .gift-status-badge {
    background: rgba(24, 24, 22, 0.85);
}

.gift-card.unlocked .gift-status-badge {
    background: var(--primary-orange);
}

.gift-level {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.gift-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 6px 0;
}

.gift-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* Shirt Size Selection */
.gift-size-select-row {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gift-size-select-row label {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
}

.gift-size-select {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 4px 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    background: #ffffff;
}

.gift-select-btn {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    border-radius: 20px;
    padding: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
    box-sizing: border-box;
}

.gift-select-btn:hover:not(:disabled) {
    background: var(--text-primary);
    color: #ffffff;
}

.gift-card.locked {
    opacity: 0.55;
}

.gift-card.locked .gift-select-btn {
    border-color: var(--border-color);
    color: #999;
    cursor: not-allowed;
}

.gift-card.selected {
    border-color: var(--primary-orange);
    background: #fff8f3;
}

.gift-card.selected .gift-select-btn {
    background: var(--primary-orange);
    color: #ffffff;
    border-color: var(--primary-orange);
    box-shadow: 0 2px 10px rgba(242, 2, 124, 0.2);
}

/* No Gift / Stylized Dark Box */
.gift-card.no-gift-box {
    background: var(--text-primary);
    border-color: var(--text-primary);
    color: #ffffff;
}

.gift-card.no-gift-box .gift-title {
    color: #ffffff;
}

.gift-card.no-gift-box .gift-desc {
    color: #ccc;
}

.gift-card.no-gift-box .gift-select-btn {
    border-color: #ffffff;
    color: #ffffff;
    background: transparent;
}

.gift-card.no-gift-box .gift-select-btn:hover:not(:disabled) {
    background: #ffffff;
    color: var(--text-primary);
}

.gift-card.no-gift-box.selected {
    border-color: var(--primary-orange);
    box-shadow: 0 4px 15px rgba(242, 2, 124, 0.25);
}

.gift-card.no-gift-box.selected .gift-select-btn {
    background: var(--primary-orange);
    color: #ffffff;
    border-color: var(--primary-orange);
}

/* VIP Club Gifts Grid */
.vip-gifts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.vip-warning-text {
    text-align: center;
    font-size: 13px;
    color: #888;
    background: #f9f8f6;
    border-radius: 8px;
    padding: 15px;
    max-width: 500px;
    margin: 0 auto;
    border: 1px dashed var(--border-color);
}

/* Bottom Actions Row */
.donate-actions-row {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.proceed-payment-btn {
    background: var(--primary-orange);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 16px 45px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(242, 2, 124, 0.2);
    outline: none;
}

.proceed-payment-btn:hover:not(:disabled) {
    background: #e05e00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 2, 124, 0.3);
}

.proceed-payment-btn:disabled {
    background: #ccc;
    color: #888;
    cursor: not-allowed;
    box-shadow: none;
}

.payment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.payment-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.payment-modal-card {
    background: #ffffff;
    border-radius: 16px;
    width: 500px;
    max-width: 90%;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    position: relative;
    transform: translateY(35px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.payment-modal-overlay.active .payment-modal-card {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 22px;
    color: #888;
    cursor: pointer;
    outline: none;
    transition: color 0.2s;
}

.modal-close-btn:hover {
    color: var(--text-primary);
}

.payment-modal-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.modal-summary-box {
    background: #f9f8f6;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-row.total-row {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    border-top: 1px solid var(--border-color);
    padding-top: 8px;
    margin-top: 8px;
}

/* Modal Form Fields */
.payment-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.form-input {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 12px 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    background: #ffffff;
}

.form-input:focus {
    border-color: var(--primary-orange);
}

.submit-payment-btn {
    background: var(--primary-orange);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 14px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
    outline: none;
}

.submit-payment-btn:hover {
    background: #e05e00;
}

/* Success State styling inside modal */
.modal-success-state {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
}

.success-checkmark-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e6f7ed;
    color: #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin-bottom: 20px;
    animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.modal-success-state h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.modal-success-state p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.success-close-btn {
    background: var(--text-primary);
    color: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 10px 25px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    outline: none;
    transition: opacity 0.2s;
}

.success-close-btn:hover {
    opacity: 0.9;
}

/* Responsive Media Queries for Donate Page */
@media (max-width: 992px) {
    .donation-amount-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .donation-gifts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .donate-page-section {
        padding: 30px 20px;
    }
    .donation-wizard {
        padding: 25px;
    }
}

@media (max-width: 600px) {
    .donation-amount-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .donation-gifts-grid {
        grid-template-columns: 1fr;
    }
    .donation-type-selectors {
        flex-direction: column;
    }
    .type-btn {
        width: 100%;
        min-width: 0;
    }
    .vip-gifts-grid {
        grid-template-columns: 1fr;
    }
}







/* ==========================================================================
   VU METER DARK THEME & WIDGET STYLING RULES
   ========================================================================== */

/* --- MINIMIZE CONTROLS & MINIMIZED BAR STYLES --- */
    .floating-player-card:not(.rtp-minimized) .rtp-minimize-btn {
        top: 15px !important;
        right: 15px !important;
        left: auto !important;
        z-index: 100 !important;
    }
}

/* ==========================================================================
   Collapsible / Minimized Player States
   ========================================================================== */

/* Minimize Button (Main View) */
.floating-player-card .rtp-minimize-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    color: var(--primary-orange);
    cursor: pointer;
    font-size: 16px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-smooth);
    z-index: 10;
    width: 32px;
    height: 32px;
}
.floating-player-card .rtp-minimize-btn:hover {
    background-color: var(--active-bg);
    opacity: 0.8;
}

/* Minimized View Bar */
.floating-player-card .rtp-minimized-bar {
    display: none;
}

/* Minimized Player Card Modifier */
.floating-player-card.rtp-minimized {
    display: block !important;
    grid-template-columns: none !important;
    width: 320px !important;
    max-width: calc(100% - 40px) !important;
    height: 72px !important;
    padding: 12px 16px !important;
    border-radius: 36px !important;
    overflow: hidden;
    bottom: 20px !important;
    left: auto !important;
    right: 20px !important;
    margin: 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Minimized Elements Toggle */
.floating-player-card.rtp-minimized .player-station-info,
.floating-player-card.rtp-minimized .player-band-section,
.floating-player-card.rtp-minimized .player-tuner-section,
.floating-player-card.rtp-minimized .player-vu-section,
.floating-player-card.rtp-minimized .player-controls-section,
.floating-player-card.rtp-minimized .rtp-minimize-btn {
    display: none !important;
}

.floating-player-card.rtp-minimized .rtp-minimized-bar {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    gap: 12px;
}

/* Minimized Inner Layout */
.rtp-minimized-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
    cursor: pointer;
}
.rtp-minimized-cover {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 2px solid var(--border-color);
    background-color: var(--bg-color);
}
.floating-player-card .rtp-minimized-cover-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    animation: rtp-spin 12s linear infinite;
    animation-play-state: paused;
}
.floating-player-card.playing .rtp-minimized-cover-img,
.floating-player-card.rtp-playing .rtp-minimized-cover-img {
    animation-play-state: running;
}
.rtp-minimized-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.rtp-minimized-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}
.rtp-minimized-desc {
    font-size: 10px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
    line-height: 1.2;
}

/* Minimized Action Controls */
.rtp-minimized-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.rtp-minimized-play-btn,
.rtp-minimized-expand-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background-color: var(--active-bg);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 12px;
}
.rtp-minimized-play-btn:hover,
.rtp-minimized-expand-btn:hover {
    background-color: var(--primary-orange);
    color: #ffffff;
}

/* Spin Animation */
@keyframes rtp-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Mobile responsive minimized positions */
@media (max-width: 768px) {
    .floating-player-card.rtp-minimized {
        left: 10px !important;
        right: 10px !important;
        margin: 0 auto !important;
        width: calc(100% - 20px) !important;
        max-width: calc(100% - 20px) !important;
        bottom: 16px !important;
    }
}

/* Explicit VU Meter Light Theme Variables styling */
.floating-player-card.rtp-design-vu-light {
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --text-primary: #181816;
    --text-secondary: #6e6c64;
    --text-muted: #a3a096;
    --border-color: rgb(213 213 213 / 75%);
    --active-bg: rgba(var(--rtp-accent-rgb), 0.08);
    --shadow-premium: 0 20px 40px rgba(24, 24, 22, 0.08);
    --tuner-lines-color: rgba(229, 226, 217, 0.9);
    --cover-bg: var(--bg-color);
    --cover-border: 1px solid var(--border-color);
}



/* --- VU DIALS & WIDGET LAYOUTS --- */
/* Explicit VU Meter Dark Theme Variables styling */
.floating-player-card.rtp-design-vu-dark {
    --bg-color: #0b0b0c;
    --card-bg: #0b0b0c;
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border-color: rgba(255, 255, 255, 0.18);
    --active-bg: rgba(var(--rtp-accent-rgb), 0.15);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    --tuner-lines-color: rgba(255, 255, 255, 0.55);
    --cover-bg: #333336;
    --cover-border: 0.6px solid rgb(255 255 255 / 62%);
}

/* VU Layout Grid & Section Styling */
.rtp-vu-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
    width: 100%;
    padding-right: 3px;
}

.rtp-vu-top-row .eq-status-indicator {
    margin-bottom: 0 !important;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.rtp-vu-eq-toggle-link {
    font-size: 10px;
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}
.rtp-vu-eq-toggle-link:hover {
    color: var(--primary-orange-hover);
    opacity: 0.8;
}

.rtp-vu-middle-area {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    width: 100%;
    margin: 0px 0 2px 0;
}

.rtp-vu-meter-layout .rtp-vu-middle-area {
    height: auto;
    align-items: flex-start;
}

.rtp-vu-meter-layout .vu-meters-container {
    display: flex;
    gap: 12px;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
}

.rtp-vu-meter-layout .vu-meter-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 50%;
    width: 50%;
    height: auto;
}

.rtp-vu-meter-layout .vu-dial-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 300 / 150;
    max-height: 125px;
    margin: 0 auto;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.rtp-vu-meter-layout .vu-dial-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: 8px;
    box-sizing: border-box;
}

.rtp-design-vu-light .vu-dial-wrapper::after {
    box-shadow: 
        inset 0 8px 12px rgba(0, 0, 0, 0.16),
        inset 4px 0 6px rgba(0, 0, 0, 0.06),
        inset -4px 0 6px rgba(0, 0, 0, 0.06),
        inset 0 -2px 4px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.rtp-design-vu-dark .vu-dial-wrapper::after {
    box-shadow: 
        inset 0 8px 12px rgba(0, 0, 0, 0.65),
        inset 4px 0 6px rgba(0, 0, 0, 0.4),
        inset -4px 0 6px rgba(0, 0, 0, 0.4),
        inset 0 -2px 4px rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.5);
}

.floating-player-card .player-controls-section.rtp-vu-meter-layout {
    justify-content: flex-start;
}

.floating-player-card .player-controls-section.rtp-vu-meter-layout .player-volume-play-row {
    margin-top: auto;
}

.rtp-vu-meter-layout .vu-dial-svg {
    width: 100%;
    height: auto;
    display: block;
}

.rtp-vu-meter-layout .player-volume-play-row {
    height: 20px;
}

.rtp-vu-meter-layout .player-volume-play-row .volume-icon-btn svg.icon-volume {
    width: 16px;
    height: 16px;
}

.rtp-vu-meter-layout .player-volume-play-row .player-play-btn {
    font-size: 13px;
    padding: 3px;
}

/* --- VU EQUALIZER DESIGN (Separate Grid & Classes) --- */
.floating-player-card .rtp-vu-equalizer-section {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Center vertically inside middle area */
    width: 100%;
    height: 114px; /* Matches the exact dial height of 114px on iMac for constant card height */
    padding-top: 5px;
    padding-bottom: 5px;
    box-sizing: border-box;
    border-bottom: 1px solid var(--border-color);
}

.floating-player-card .rtp-vu-equalizer-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20px;
    height: 100%;
    justify-content: center; /* Center the tracks and labels vertically */
}

.floating-player-card .rtp-vu-equalizer-track {
    position: relative;
    width: 1px;
    height: 50px; /* Standard track height matching other tuners (no longer bulky/tall) */
    background-color: var(--border-color);
}

.floating-player-card .rtp-vu-equalizer-track::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    width: 7px;
    height: 100%;
    background: repeating-linear-gradient(to bottom,
        var(--text-muted) 0px,
        var(--text-muted) 1px,
        transparent 1px,
        transparent 5px
    );
    opacity: 0.5;
}

.floating-player-card .rtp-vu-equalizer-handle {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 12px;
    height: 14px;
    background-color: var(--text-primary);
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 50%;
    transition: bottom 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: grab;
}

.floating-player-card .rtp-vu-equalizer-handle.dragging {
    transition: none !important;
}

.floating-player-card .rtp-vu-equalizer-handle .handle-dot {
    width: 4px;
    height: 4px;
    background-color: var(--primary-orange);
    border-radius: 50%;
}

.floating-player-card .rtp-vu-equalizer-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 6px;
    line-height: 1;
    text-align: center;
}

@media (min-width: 992px) {
    .floating-player-card.rtp-design-vu-light,
    .floating-player-card.rtp-design-vu-dark {
        min-height: 205px;
    }
    .rtp-vu-meter-layout .vu-dial-wrapper {
        aspect-ratio: 300 / 148;
    }
    .rtp-vu-meter-layout .rtp-vu-middle-area {
        align-items: center;
    }
}

/* ==========================================================================
   CRITICAL DESIGN RULE - DO NOT TOUCH OR MODIFY
   This styling is specifically optimized and approved for iMac / Mac screens 
   with width 2350px and above. DO NOT change aspect ratios or add height bounds.
   ========================================================================== */
@media (min-width: 2350px) {
    .rtp-vu-meter-layout .vu-dial-wrapper {
        aspect-ratio: 300 / 115;
    }
}

/* --- VU LAYOUT SPECIFIC: CORNER FLOATING MINIMIZE BUTTON --- */
.rtp-design-vu-light .rtp-minimize-btn {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(35%, -35%);
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: var(--primary-orange);
    z-index: 100;
}
.rtp-design-vu-light .rtp-minimize-btn:hover {
    background-color: #f4f4f5;
    transform: translate(35%, -35%) scale(1.05);
    opacity: 0.95;
}

.rtp-design-vu-dark .rtp-minimize-btn {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(35%, -35%);
    background-color: #1c1c1e;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    color: var(--primary-orange);
    z-index: 100;
}
.rtp-design-vu-dark .rtp-minimize-btn:hover {
    background-color: #2c2c2e;
    transform: translate(35%, -35%) scale(1.05);
    opacity: 0.95;
}
/* ==========================================================================
   FM-AM 5-Column Theme Styles
   ========================================================================== */

/* Theme variables and layout overrides */
.floating-player-card.rtp-design-fm-am-light,
.floating-player-card.rtp-design-fm-am-dark {
    display: grid;
    grid-template-columns: 32% 40% 28%;
    align-items: stretch;
    padding: 16px;
    box-sizing: border-box;
}

.floating-player-card.rtp-design-fm-am-light {
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --text-primary: #181816;
    --text-secondary: #6e6c64;
    --text-muted: #a3a096;
    --border-color: rgba(229, 226, 217, 0.6);
    --active-bg: rgba(var(--rtp-accent-rgb), 0.08);
    --shadow-premium: 0 20px 40px rgba(24, 24, 22, 0.08);
    --tuner-lines-color: rgba(229, 226, 217, 0.9);
    --cover-bg: var(--bg-color);
    --cover-border: 1px solid var(--border-color);
}

.floating-player-card.rtp-design-fm-am-dark {
    --bg-color: #0b0b0c;
    --card-bg: #0b0b0c;
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border-color: rgba(255, 255, 255, 0.18);
    --active-bg: rgba(var(--rtp-accent-rgb), 0.15);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    --tuner-lines-color: rgba(255, 255, 255, 0.55);
    --cover-bg: #333336;
    --cover-border: 0.6px solid rgb(255 255 255 / 62%);
}

/* Experimental Tuner Scale Backlight (fm-am-dark and vu-dark) - widened soft needle center spotlight */
.floating-player-card.rtp-design-fm-am-dark .tuner-needle::before,
.floating-player-card.rtp-design-vu-dark .tuner-needle::before {
    content: '';
    position: absolute;
    top: -2.5px; /* centered vertically along the needle height (55px) with 60px height */
    left: 50%;
    transform: translateX(-50%);
    width: 190px; /* widened backlight */
    height: 60px; /* taller backlight */
    background: radial-gradient(ellipse at center, rgba(242, 2, 124, 0.18) 0%, rgba(242, 2, 124, 0.04) 55%, transparent 75%);
    pointer-events: none;
    z-index: 1; /* render on top of lines for illumination effect */
    mix-blend-mode: screen;
}

.floating-player-card.rtp-design-fm-am-dark .tuner-needle .needle-line,
.floating-player-card.rtp-design-vu-dark .tuner-needle .needle-line {
    box-shadow: 0 0 5px rgba(242, 2, 124, 0.5);
    position: relative;
    z-index: 2; /* render needle line strictly on top of spotlight glow */
}

/* Column 1: Station Details */
.floating-player-card.rtp-design-fm-am-light .player-station-info,
.floating-player-card.rtp-design-fm-am-dark .player-station-info {
    border-right: 1px solid var(--border-color);
    padding-right: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: auto;
}

/* Column 2: Band Switcher */
.floating-player-card.rtp-design-fm-am-light .player-band-section,
.floating-player-card.rtp-design-fm-am-dark .player-band-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 0 10px;
    border-right: 1px solid var(--border-color);
    align-items: center;
}

.floating-player-card.rtp-design-fm-am-light .band-btn,
.floating-player-card.rtp-design-fm-am-dark .band-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 6px 4px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    transition: var(--transition-smooth);
}

.floating-player-card.rtp-design-fm-am-light .band-btn {
    color: var(--text-secondary);
}

.floating-player-card.rtp-design-fm-am-dark .band-btn {
    color: var(--text-secondary);
}

.floating-player-card.rtp-design-fm-am-light .band-btn:hover,
.floating-player-card.rtp-design-fm-am-dark .band-btn:hover {
    border-color: var(--primary-orange);
    color: var(--text-primary);
}

.floating-player-card.rtp-design-fm-am-light .band-btn.active,
.floating-player-card.rtp-design-fm-am-dark .band-btn.active {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: #ffffff !important;
}

/* Experimental Tuner Band Toggle */
.floating-player-card.rtp-design-fm-am-light .tuner-band-toggle,
.floating-player-card.rtp-design-fm-am-dark .tuner-band-toggle {
    display: flex;
    align-items: center;
    gap: 0 !important;
    padding: 0 !important;
    border-radius: 6px !important;
    box-sizing: border-box;
    height: 28px;
    overflow: hidden;
}

.floating-player-card.rtp-design-fm-am-dark .tuner-band-toggle {
    background: #121214;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.floating-player-card.rtp-design-fm-am-light .tuner-band-toggle {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.floating-player-card.rtp-design-fm-am-light .tuner-band-toggle .band-btn,
.floating-player-card.rtp-design-fm-am-dark .tuner-band-toggle .band-btn {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 4px 12px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    text-align: center !important;
    width: auto !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    transition: var(--transition-smooth) !important;
}

.floating-player-card.rtp-design-fm-am-light .tuner-band-toggle .band-btn + .band-btn {
    border-left: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.floating-player-card.rtp-design-fm-am-dark .tuner-band-toggle .band-btn + .band-btn {
    border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.floating-player-card.rtp-design-fm-am-light .tuner-band-toggle .band-btn.active,
.floating-player-card.rtp-design-fm-am-light .tuner-band-toggle .band-btn.active + .band-btn {
    border-left-color: transparent !important;
}

.floating-player-card.rtp-design-fm-am-dark .tuner-band-toggle .band-btn.active,
.floating-player-card.rtp-design-fm-am-dark .tuner-band-toggle .band-btn.active + .band-btn {
    border-left-color: transparent !important;
}

.floating-player-card.rtp-design-fm-am-dark .tuner-band-toggle .band-btn {
    color: #a1a1aa !important;
}

.floating-player-card.rtp-design-fm-am-light .tuner-band-toggle .band-btn {
    color: #71717a !important;
}

.floating-player-card.rtp-design-fm-am-dark .tuner-band-toggle .band-btn:hover:not(.active) {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.04) !important;
}

.floating-player-card.rtp-design-fm-am-light .tuner-band-toggle .band-btn:hover:not(.active) {
    color: #111111 !important;
    background: rgba(0, 0, 0, 0.03) !important;
}

.floating-player-card.rtp-design-fm-am-light .tuner-band-toggle .band-btn.active,
.floating-player-card.rtp-design-fm-am-dark .tuner-band-toggle .band-btn.active {
    background-color: var(--primary-orange) !important;
    color: #ffffff !important;
}

/* Column 3: Tuner section */
.floating-player-card.rtp-design-fm-am-light .player-tuner-section,
.floating-player-card.rtp-design-fm-am-dark .player-tuner-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 16px;
    border-right: 1px solid var(--border-color);
}

.floating-player-card.rtp-design-fm-am-light .active-station-location,
.floating-player-card.rtp-design-fm-am-dark .active-station-location {
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    margin-top: 2px;
    margin-bottom: 6px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.floating-player-card.rtp-design-fm-am-light .active-station-location {
    color: var(--text-secondary);
}

.floating-player-card.rtp-design-fm-am-dark .active-station-location {
    color: var(--text-secondary);
}



.floating-player-card.rtp-design-fm-am-light .vu-meters-container,
.floating-player-card.rtp-design-fm-am-dark .vu-meters-container {
    display: flex;
    gap: 12px;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.floating-player-card.rtp-design-fm-am-light .vu-meter-box,
.floating-player-card.rtp-design-fm-am-dark .vu-meter-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 1 50%;
    width: 50%;
}

.floating-player-card.rtp-design-fm-am-light .vu-dial-wrapper,
.floating-player-card.rtp-design-fm-am-dark .vu-dial-wrapper {
    width: 100%;
    aspect-ratio: 300 / 150;
    margin: 0 auto;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.floating-player-card.rtp-design-fm-am-light .vu-dial-wrapper::after,
.floating-player-card.rtp-design-fm-am-dark .vu-dial-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: 8px;
    box-sizing: border-box;
}

.floating-player-card.rtp-design-fm-am-light .vu-dial-wrapper::after {
    box-shadow: 
        inset 0 8px 12px rgba(0, 0, 0, 0.16),
        inset 4px 0 6px rgba(0, 0, 0, 0.06),
        inset -4px 0 6px rgba(0, 0, 0, 0.06),
        inset 0 -2px 4px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.floating-player-card.rtp-design-fm-am-dark .vu-dial-wrapper::after {
    box-shadow: 
        inset 0 8px 12px rgba(0, 0, 0, 0.65),
        inset 4px 0 6px rgba(0, 0, 0, 0.4),
        inset -4px 0 6px rgba(0, 0, 0, 0.4),
        inset 0 -2px 4px rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.5);
}

.floating-player-card.rtp-design-fm-am-light .vu-dial-svg,
.floating-player-card.rtp-design-fm-am-dark .vu-dial-svg {
    width: 100%;
    height: auto;
    display: block;
}

.floating-player-card.rtp-design-fm-am-light .vu-dial-label,
.floating-player-card.rtp-design-fm-am-dark .vu-dial-label {
    font-size: 9px;
    font-weight: 700;
    margin-top: 4px;
    letter-spacing: 0.1em;
}

.floating-player-card.rtp-design-fm-am-light .vu-dial-label {
    color: var(--text-secondary);
}

.floating-player-card.rtp-design-fm-am-dark .vu-dial-label {
    color: var(--text-secondary);
}

/* EQ section for FM-AM light/dark */




/* Minimize button styling for FM-AM themes */
.rtp-design-fm-am-light .rtp-minimize-btn {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(35%, -35%);
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: var(--primary-orange);
    z-index: 100;
}

.rtp-design-fm-am-light .rtp-minimize-btn:hover {
    color: var(--primary-orange) !important;
    background-color: rgba(var(--rtp-accent-rgb), 0.08) !important;
}

.rtp-design-fm-am-dark .rtp-minimize-btn {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(35%, -35%);
    background-color: #1c1c1e;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    color: var(--primary-orange);
    z-index: 100;
}

.rtp-design-fm-am-dark .rtp-minimize-btn:hover {
    color: var(--primary-orange) !important;
    background-color: rgba(var(--rtp-accent-rgb), 0.15) !important;
}



.floating-player-card.rtp-design-fm-am-light .volume-icon-btn svg.icon-volume,
.floating-player-card.rtp-design-fm-am-dark .volume-icon-btn svg.icon-volume {
    width: 18px;
    height: 18px;
}

.floating-player-card.rtp-design-fm-am-light .player-play-btn,
.floating-player-card.rtp-design-fm-am-dark .player-play-btn {
    font-size: 14px;
}

.floating-player-card.rtp-design-fm-am-light .volume-slider-wrapper,
.floating-player-card.rtp-design-fm-am-dark .volume-slider-wrapper {
    margin: 0 6px;
}

/* Volume Slider thumb override for FM-AM layouts - skeuomorphic dark thumb */
.floating-player-card.rtp-design-fm-am-light .volume-slider::-webkit-slider-thumb,
.floating-player-card.rtp-design-fm-am-dark .volume-slider::-webkit-slider-thumb {
    background: #2d2d2d !important;
    width: 12px;
    height: 12px;
    border: 1.5px solid rgba(0, 0, 0, 0.25) !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.35) !important;
    margin-top: 0px !important;
}
.floating-player-card.rtp-design-fm-am-light .volume-slider::-moz-range-thumb,
.floating-player-card.rtp-design-fm-am-dark .volume-slider::-moz-range-thumb {
    background: #2d2d2d !important;
    width: 12px;
    height: 12px;
    border: 1.5px solid rgba(0, 0, 0, 0.25) !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.35) !important;
}
.floating-player-card.rtp-design-fm-am-light .volume-slider::-webkit-slider-thumb:hover,
.floating-player-card.rtp-design-fm-am-dark .volume-slider::-webkit-slider-thumb:hover {
    background: #111111 !important;
    transform: scale(1.1);
}
.floating-player-card.rtp-design-fm-am-light .volume-slider::-moz-range-thumb:hover,
.floating-player-card.rtp-design-fm-am-dark .volume-slider::-moz-range-thumb:hover {
    background: #111111 !important;
    transform: scale(1.1);
}

/* Media query to make VU dials wider and taller on desktops and keep grid ratios */
@media (min-width: 992px) {
    .floating-player-card.rtp-design-fm-am-light,
    .floating-player-card.rtp-design-fm-am-dark {
        grid-template-columns: 32% 38% 30%;
    }
    .floating-player-card.rtp-design-fm-am-light .rtp-vu-middle-area,
    .floating-player-card.rtp-design-fm-am-dark .rtp-vu-middle-area {
        margin: 0px 0 2px 0;
    }
}

/* User-requested: Below 1350px screen width but not on mobile, set player cover to 175px width */
@media (max-width: 1350px) and (min-width: 769px) {
    .floating-player-card .player-cover {
        width: 175px !important;
        max-width: 100% !important;
    }
}

/* Custom dimmer backlight and optimized spacing for 2K/4K/5K large monitors (above 2000px width) */
@media (min-width: 2000px) {
    .floating-player-card.rtp-design-fm-am-dark .tuner-needle::before,
    .floating-player-card.rtp-design-vu-dark .tuner-needle::before {
        background: radial-gradient(ellipse at center, rgba(242, 2, 124, 0.10) 0%, rgba(242, 2, 124, 0.02) 55%, transparent 75%);
    }
    /* Generous premium card padding for high resolution displays */
    .floating-player-card {
        padding: 22px 24px !important;
    }
    .floating-player-card .player-station-info {
        padding-right: 28px !important;
        gap: 24px !important;
    }
    .floating-player-card .player-tuner-section {
        padding: 0 48px !important;
    }
    .floating-player-card .player-controls-section {
        padding-left: 28px !important;
        padding-right: 14px !important;
    }
}

/* Equalizer and VU Meters width boundary to prevent controls stretching too far on large screens */
.floating-player-card .player-equalizer-section,
.floating-player-card .rtp-vu-equalizer-section,
.floating-player-card .vu-meters-container {
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
}








/* --- DARK THEME & PINK ACCENT OVERRIDES --- */
/* ==========================================================================
   DARK THEME TUNER WIDGET OVERRIDES
   ========================================================================== */
.floating-player-card {
    --blue-primary: #f2027c !important;
    --rtp-accent-color: #f2027c !important;
    --rtp-accent-rgb: 242, 2, 124 !important;
    --primary-orange: #f2027c !important;
    --primary-orange-hover: #e0026e !important;
    font-family: 'Outfit', sans-serif !important;
}

.floating-player-card button,
.floating-player-card span,
.floating-player-card div,
.floating-player-card a,
.floating-player-card text {
    font-family: 'Outfit', sans-serif !important;
}

.floating-player-card.dark-theme {
    background-color: #0c0c0df2 !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

/* Borders */
.floating-player-card.dark-theme .player-station-info,
.floating-player-card.dark-theme .player-tuner-section {
    border-color: rgba(255, 255, 255, 0.12) !important;
}

/* Metadata Text */
.floating-player-card.dark-theme .track-title-name {
    color: #ffffff !important;
}

.floating-player-card.dark-theme .track-artist-desc {
    color: #a0a0a5 !important;
}

.floating-player-card.dark-theme .player-cover {
    background-color: transparent !important;
    border-color: rgb(255 255 255 / 49%) !important;
}

/* Action Icons */
.floating-player-card.dark-theme .icon-btn {
    color: #a0a0a5 !important;
}

.floating-player-card.dark-theme .icon-btn:hover {
    color: #ffffff !important;
}

/* Tuner Header & Dial */
.floating-player-card.dark-theme .tuner-arrow {
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

.floating-player-card.dark-theme .tuner-arrow:hover {
    background-color: #1a1a1c !important;
    border-color: #ffffff !important;
}

.floating-player-card.dark-theme .tuner-prefix,
.floating-player-card.dark-theme .tuner-suffix {
    color: #ffffff !important;
}

/* Ticks Ruler */
.floating-player-card.dark-theme .tuner-scale-container {
    overflow: visible !important;
}

.floating-player-card.dark-theme .tuner-lines {
    background: repeating-linear-gradient(90deg, 
        var(--tuner-lines-color, rgba(255, 255, 255, 0.18)) 0px, 
        var(--tuner-lines-color, rgba(255, 255, 255, 0.18)) 1.5px, 
        transparent 1.5px, 
        transparent 5%
    ) !important;
}

.floating-player-card.dark-theme .tuner-lines::after {
    background-color: var(--tuner-lines-color, rgba(255, 255, 255, 0.18)) !important;
    width: 1.5px !important;
    right: 0 !important;
}

.floating-player-card.dark-theme .tuner-labels {
    color: #a0a0a5 !important;
}

/* Equalizer Section */
.floating-player-card.dark-theme .equalizer-track,
.floating-player-card.dark-theme .rtp-vu-equalizer-track {
    background-color: rgba(255, 255, 255, 0.12) !important;
}

.floating-player-card.dark-theme .equalizer-track::before,
.floating-player-card.dark-theme .rtp-vu-equalizer-track::before {
    background: repeating-linear-gradient(to bottom,
        rgba(255, 255, 255, 0.3) 0px,
        rgba(255, 255, 255, 0.3) 1px,
        transparent 1px,
        transparent 7px
    ) !important;
}

.floating-player-card.dark-theme .equalizer-handle,
.floating-player-card.dark-theme .rtp-vu-equalizer-handle {
    background-color: #c9c9c9 !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) !important;
}

.floating-player-card.dark-theme .equalizer-label,
.floating-player-card.dark-theme .rtp-vu-equalizer-label {
    color: #a0a0a5 !important;
}

/* Control Row Divider */
.floating-player-card.dark-theme .player-controls-divider {
    background-color: rgba(255, 255, 255, 0.12) !important;
}

/* Volume Slider & Play Button */
.floating-player-card.dark-theme .player-play-btn {
    color: #ffffff !important;
}

.floating-player-card.dark-theme .player-play-btn:hover {
    color: var(--blue-primary) !important;
}

.floating-player-card.dark-theme .volume-icon-btn {
    color: #a0a0a5 !important;
}

.floating-player-card.dark-theme .volume-icon-btn:hover {
    color: #ffffff !important;
}

.floating-player-card.dark-theme .volume-slider {
    background: rgba(255, 255, 255, 0.12) !important;
}

.floating-player-card.dark-theme .volume-slider::-webkit-slider-thumb {
    background: #ffffff !important;
}

.floating-player-card.dark-theme .volume-slider::-webkit-slider-thumb:hover {
    background: var(--blue-primary) !important;
}

.floating-player-card.dark-theme .volume-slider::-moz-range-thumb {
    background: #ffffff !important;
}

.floating-player-card.dark-theme .volume-slider::-moz-range-thumb:hover {
    background: var(--blue-primary) !important;
}

/* Visualizer Toggle Button */
.floating-player-card.dark-theme .visualizer-toggle-btn {
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

.floating-player-card.dark-theme .visualizer-toggle-btn:hover {
    background-color: #1a1a1c !important;
    border-color: #ffffff !important;
}

.floating-player-card.dark-theme .eq-status-indicator {
    color: #a0a0a5 !important;
}

.floating-player-card.dark-theme .eq-status-indicator.active .status-text {
    color: #ffffff !important;
}

/* Ensure SVG and path inside minimize/expand buttons don't block pointer clicks */
.rtp-minimize-btn svg,
.rtp-minimize-btn path,
.rtp-minimized-expand-btn svg,
.rtp-minimized-expand-btn path {
    pointer-events: none !important;
}



/* Fix VU needle rotation center pivot */
.vu-needle-left, .vu-needle-right {
    transform-origin: 150px 145px !important;
}

/* ==========================================================================
   21. PREMIUM VINYL STATION CARD REDESIGN (HOMEPAGE ONLY)
   ========================================================================== */
.stations-section .stations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 20px 0;
}

.stations-section .station-card {
    display: flex !important;
    flex-direction: column;
    flex: 0 0 calc(25% - 22.5px);
    min-height: auto;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    overflow: visible !important; /* to allow vinyl to slide out */
    position: relative;
    z-index: 1;
    transition: z-index 0.3s step-start;
}

.stations-section .station-card:hover,
.stations-section .station-card.is-hovered,
.stations-section .station-card.is-playing {
    z-index: 10;
    transition: z-index 0s;
}

/* Wrapper for the album cover and vinyl record */
.album-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: visible; /* vinyl slide out */
}

/* Album cover */
.album-cover {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 2;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.album-cover .station-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important; /* Reset nested border radius */
    padding: 25px !important;
    background-color: #fcfbf7 !important;
    border: none !important;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Vinyl Record styling */
.vinyl-record {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 3px, transparent 4px),
                radial-gradient(circle, #18181b 16px, transparent 17px),
                repeating-radial-gradient(circle, #09090b, #09090b 2px, #1a1a1c 3px, #09090b 4px);
    z-index: 1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateX(0) rotate(0deg);
    pointer-events: none;
}

.vinyl-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32%;
    height: 32%;
    border-radius: 50%;
    border: 1.5px solid #000;
    overflow: hidden;
    background: #ffffff;
}

.vinyl-label-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
}

/* Vinyl spindle hole overlay */
.vinyl-record::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ffffff;
    z-index: 5;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.5);
}

/* Hover effects */
.stations-section .station-card:hover .album-cover,
.stations-section .station-card.is-hovered .album-cover {
    transform: translateY(-5px) perspective(800px) rotateY(-15deg);
    box-shadow: -10px 15px 35px rgba(0, 0, 0, 0.12);
}

.stations-section .station-card:hover .album-cover .station-img,
.stations-section .station-card.is-hovered .album-cover .station-img {
    transform: scale(1.05);
}

.stations-section .station-card:hover .vinyl-record,
.stations-section .station-card.is-hovered .vinyl-record {
    transform: translateX(55%) rotate(90deg);
}

/* Playing states */
.stations-section .station-card.is-playing .vinyl-record {
    animation: spin-slid-out 3s linear infinite;
}

/* Spin animation for playing state (keeps the slide out translateX) */
@keyframes spin-slid-out {
    0% {
        transform: translateX(55%) rotate(0deg);
    }
    100% {
        transform: translateX(55%) rotate(360deg);
    }
}

/* Play Button positioning inside cover */
.stations-section .station-card .card-play-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(10px);
}

.stations-section .station-card:hover .card-play-btn,
.stations-section .station-card.is-hovered .card-play-btn,
.stations-section .station-card.is-playing .card-play-btn {
    opacity: 1;
    transform: translateY(0);
}

.stations-section .station-card .card-play-btn i {
    font-size: 14px;
    color: #111111;
    margin-left: 2px;
    transition: color var(--transition-smooth);
}

.stations-section .station-card .card-play-btn:hover,
.stations-section .station-card .card-play-btn.playing {
    background-color: var(--primary-orange);
    transform: scale(1.08) !important;
}

.stations-section .station-card .card-play-btn:hover i,
.stations-section .station-card .card-play-btn.playing i {
    color: #ffffff;
}

/* Listening Badge (pill) */
.stations-section .station-card .listening-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.4);
    pointer-events: none;
}

.stations-section .station-card .listening-count {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    color: #111111;
    font-size: 12px;
    letter-spacing: normal;
}

.stations-section .station-card .waveform-icon {
    color: var(--primary-orange);
    width: 14px;
    height: 14px;
    display: inline-block;
}

.stations-section .station-card .css-waveform {
    height: 10px;
    gap: 1.5px;
    display: none;
}
.stations-section .station-card .css-waveform span {
    width: 2px;
    background-color: var(--primary-orange);
}

.stations-section .station-card.is-playing .waveform-icon {
    display: none;
}

.stations-section .station-card.is-playing .css-waveform {
    display: flex !important;
}

/* Details styles */
.stations-section .station-card .card-details {
    padding: 0 4px;
}

.stations-section .station-card .station-title {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 20px;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    line-height: 1.2;
}

.stations-section .station-card .station-subtitle {
    font-family: var(--font-main);
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .stations-section .station-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .stations-section .station-card {
        flex: 0 0 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   CUSTOM DESIGN Refinement (SOUL VIBES RADIO / CHILL VIBES Theme)
   ========================================================================== */

/* 1. Global Header Wrapper Overrides */
.top-utility-bar {
    display: none !important;
}

.hero-header-section {
    background-color: #ffffff !important;
}

.site-header-nav-wrapper {
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
}

.site-header-nav-wrapper .header-container {
    height: 110px;
    padding: 0 50px;
}

/* 2. Custom branding logo */
.navbar-logo-custom {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    flex-shrink: 0;
}

.logo-circle-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-title-top {
    font-family: var(--font-primary); /* Outfit */
    font-weight: 700;
    font-size: 19px;
    color: #204552;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.logo-subtitle-bottom {
    font-family: var(--font-primary); /* Outfit */
    font-weight: 400;
    font-size: 12px;
    color: #204552;
    letter-spacing: 5px;
    line-height: 1.1;
    margin-top: 1px;
}



.nav-listen-btn {
    background-color: #204552 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 100px !important;
    padding: 12px 26px !important;
    font-family: var(--font-primary) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    transition: var(--transition-smooth) !important;
    box-shadow: 0 4px 15px rgba(32, 69, 82, 0.15) !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
}

.nav-listen-btn:hover {
    background-color: #17333d !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(32, 69, 82, 0.25) !important;
}

/* Custom soundwave animation in nav button */
.nav-btn-wave-icon {
    display: flex;
    align-items: flex-end;
    gap: 2.5px;
    height: 12px;
}

.nav-btn-wave-icon span {
    width: 2px;
    background-color: #ffffff;
    border-radius: 1px;
    animation: navWave 1s ease-in-out infinite alternate;
}

.nav-btn-wave-icon span:nth-child(1) { height: 4px; animation-duration: 0.8s; }
.nav-btn-wave-icon span:nth-child(2) { height: 8px; animation-duration: 1.1s; }
.nav-btn-wave-icon span:nth-child(3) { height: 12px; animation-duration: 0.9s; }
.nav-btn-wave-icon span:nth-child(4) { height: 7px; animation-duration: 1.2s; }
.nav-btn-wave-icon span:nth-child(5) { height: 5px; animation-duration: 0.7s; }

@keyframes navWave {
    0% { transform: scaleY(0.4); }
    100% { transform: scaleY(1.1); }
}

/* 5. Hero Intro Text Content */
.hero-text-content-new {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
}

.hero-brand-title {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
}

.hero-title-main {
    font-family: "Playfair Display", serif;
    font-size: 250px;
    font-weight: 700;
    color: #204552;
    text-transform: uppercase;
    letter-spacing: -4px;
    display: block;
    line-height: 0.85;
    user-select: none;
}

.hero-title-script {
    font-family: "Signatra", cursive;
    font-size: 195px;
    color: #000000;
    position: absolute;
    left: 80px;
    top: 60px;
    text-transform: none;
    letter-spacing: 0px;
    line-height: 1;
    transform: rotate(-8deg);
    z-index: 2;
    user-select: none;
}

.hero-subtitle-new {
    font-family: var(--font-primary); /* Outfit */
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.25em;
    color: #000000;
    text-transform: uppercase;
    margin-top: 5px;
}

.hero-subtitle-new .text-teal {
    color: #204552;
    font-weight: 700;
}

.hero-divider-line {
    width: 35px;
    height: 2px;
    background-color: #204552;
    margin: 20px 0 25px 0;
}

.hero-details-new {
    font-family: var(--font-primary); /* Outfit */
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #204552;
    letter-spacing: 0.08em;
    margin-bottom: 40px;
}

/* Hero CTA Buttons */
.hero-buttons-new {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-btn-play {
    background-color: #204552;
    color: #ffffff;
    border: none;
    border-radius: 100px;
    padding: 15px 36px;
    font-family: var(--font-primary);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(32, 69, 82, 0.2);
    outline: none;
}

.hero-btn-play:hover {
    background-color: #17333d;
    transform: scale(1.03) translateY(-1px);
    box-shadow: 0 8px 25px rgba(32, 69, 82, 0.3);
}

.hero-play-icon {
    width: 14px;
    height: 14px;
    fill: #ffffff;
    transition: transform 0.2s ease;
}

.hero-btn-play:hover .hero-play-icon {
    transform: scale(1.1);
}

.hero-btn-schedule {
    color: #111111;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.hero-btn-schedule:hover {
    color: #204552;
    transform: translateX(3px);
}

.hero-arrow-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    transition: transform 0.2s ease;
}

/* 6. Responsive Adjustments for Header & Hero */
@media (max-width: 1200px) {
    .site-header-nav-wrapper .header-container {
        padding: 0 30px;
    }
    .nav-menu {
        gap: 20px;
    }
    .hero-brand-title {
        margin-bottom: 40px;
    }
    .hero-title-main {
        font-size: 145px;
        letter-spacing: -3px;
    }
    .hero-title-script {
        font-size: 155px;
        left: 65px;
        top: 50px;
        transform: rotate(-8deg);
    }
}

@media (max-width: 991px) {
    .hero-header-section {
        height: auto !important;
        min-height: 100vh;
        padding-top: 140px !important;
        padding-bottom: 40px !important;
    }
    .hero-text-content-new {
        max-width: 100%;
        align-items: center;
        text-align: center;
        padding-left: 0;
        margin: 0 auto;
    }
    .hero-brand-title {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 150px;
        margin-bottom: 30px;
    }
    .hero-title-main {
        font-size: 115px;
        letter-spacing: -2px;
        text-align: center;
        width: 100%;
    }
    .hero-title-script {
        font-size: 125px;
        left: 50%;
        transform: translateX(-30%) rotate(-8deg);
        top: 45px;
    }
    .hero-divider-line {
        margin: 20px auto;
    }
    .hero-buttons-new {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .site-header-nav-wrapper .header-container {
        height: 80px;
        padding: 0 20px;
    }
    .nav-menu {
        display: none; /* Relies on mobile menu drawer in main.js */
    }
    .header-search-btn {
        margin-right: 10px;
    }
    .hero-brand-title {
        min-height: 110px;
        margin-bottom: 25px;
    }
    .hero-title-main {
        font-size: 85px;
        letter-spacing: -1.5px;
    }
    .hero-title-script {
        font-size: 92px;
        left: 50%;
        transform: translateX(-30%) rotate(-8deg);
        top: 32px;
    }
    .hero-subtitle-new {
        font-size: 14px;
    }
    .hero-details-new {
        font-size: 13.5px;
    }
}

@media (max-width: 480px) {
    .hero-brand-title {
        min-height: 90px;
        margin-bottom: 20px;
    }
    .hero-title-main {
        font-size: 68px;
        letter-spacing: -1px;
    }
    .hero-title-script {
        font-size: 72px;
        left: 50%;
        transform: translateX(-30%) rotate(-8deg);
        top: 25px;
    }
    .hero-buttons-new {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    .hero-btn-play {
        width: 100%;
        justify-content: center;
    }
}

/* 7. Filters Container Override */
.filters-container {
    background-color: #ffffff !important;
    border: 1px solid #b0b0b0 !important;
}

.filter-pill.active {
    background-color: #2c5364 !important;
}

@media (max-width: 2000px) {
    .hero-brand-title {
        margin-bottom: 90px !important;
    }
    .hero-title-main {
        font-size: 240px !important;
    }
    .hero-title-script {
        font-size: 175px !important;
        top: 135px !important;
    }
    .hero-divider-line {
        margin: 10px 0 20px 0 !important;
    }
    .hero-details-new {
        margin-bottom: 20px !important;
    }
}

@media (min-width: 2001px) {
    .hero-title-main {
        font-size: 280px !important;
    }
    .hero-brand-title {
        margin-bottom: 140px !important;
    }
    .hero-title-script {
        font-size: 195px !important;
        top: 180px !important;
    }
    .hero-divider-line {
        margin: 20px 0 25px 0 !important;
    }
    .hero-details-new {
        margin-bottom: 40px !important;
    }
}

/* 8. Footer Subscribe Button Override */
.newsletter-form button {
    background-color: #ecd1bd !important;
    color: #204552 !important;
}
.newsletter-form button:hover {
    background-color: #dfbeab !important;
}

/* 9. Tuner Frequency Numbers Override */
.active-station-freq {
    color: #204552 !important;
}

.site-footer .footer-logo-img {
    height: 90% !important;
}

.breadcrumb-item.active {
    color: #b5700f !important;
}

.slot-live-badge {
    background: #f2027c !important;
    border: 1px solid #f2027c !important;
}

.slot-play-btn.playing {
    background: #f2057d !important;
    border-color: #f2057d !important;
}

.schedule-slot-item.now-playing .slot-card-content {
    box-shadow: 0 8px 30px rgb(45 84 101 / 5%) !important;
}

.slot-play-btn:hover, .schedule-slot-item:hover .slot-play-btn {
    box-shadow: 0 0 10px rgb(45 84 101 / 37%) !important;
}














