/* ═══════════════════════════════════════════════════════════════
   HOME PAGE — Full Redesign
   ═══════════════════════════════════════════════════════════════ */

/* ── Shared ──────────────────────────────────────────────────── */
.section-dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--brand-primary);
    box-shadow: 0 0 6px var(--brand-primary);
    flex-shrink: 0;
    animation: sdot-pulse 1.8s ease-in-out infinite;
}
@keyframes sdot-pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.section-label {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;
}

/* ── HERO SECTION ────────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: #070810;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/hero-bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Pulsing neon glow over the heart */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(var(--brand-rgb), 0.28);
    mix-blend-mode: screen;
    animation: hero-bg-pulse 3s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}
@keyframes hero-bg-pulse {
    from { opacity: 0.6; }
    to   { opacity: 1; }
}

/* Dark overlay to keep text readable */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4,3,10,0.82) 0%, rgba(4,3,10,0.35) 35%, rgba(4,3,10,0.35) 65%, rgba(4,3,10,0.82) 100%),
        linear-gradient(180deg, rgba(4,3,10,0.3) 0%, rgba(4,3,10,0.0) 40%, rgba(4,3,10,0.85) 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1380px;
    margin: 0 auto;
    padding: 56px 40px 52px;
    display: grid;
    grid-template-columns: 1.7fr 1.5fr;
    gap: 32px;
    align-items: center;
}

/* LEFT — Text + CTAs */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.on-air-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
    width: fit-content;
}

.on-air-dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--brand-primary);
    box-shadow: 0 0 8px var(--brand-primary);
    animation: sdot-pulse 1s ease-in-out infinite;
}

.hero-headline {
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 950;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #fff;
    line-height: 1.05;
    margin: 0 0 16px;
}

.hero-highlight { color: var(--brand-primary); }

.hero-sub {
    font-size: 13px;
    font-weight: 500;
    color: #888;
    line-height: 1.65;
    max-width: 380px;
    margin: 0 0 28px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
}

.btn-listen-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-primary);
    color: #fff;
    border: none;
    padding: 13px 28px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 20px var(--brand-glow);
    transition: transform .2s, box-shadow .2s;
}
.btn-listen-live:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--brand-glow);
}

.btn-view-schedule {
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    border-radius: 100px;
    border: 1.5px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color .2s, background .2s;
}
.btn-view-schedule:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    color: #888;
}
.hero-stat svg { color: var(--brand-primary); flex-shrink: 0; }
.hero-stat strong { color: #fff; font-weight: 900; }

.hero-stat-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* CENTER — Logo (absolute overlay, not a grid item) */
.hero-center {
    position: absolute;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    pointer-events: none;
}

.hero-logo-svg {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-neon-logo {
    width: clamp(180px, 22vw, 360px);
    height: auto;
    animation: hero-logo-glow 3s ease-in-out infinite alternate;
}
@keyframes hero-logo-glow {
    from { filter: drop-shadow(0 0 12px rgba(var(--brand-rgb),0.5)) drop-shadow(0 0 28px rgba(var(--brand-rgb),0.25)); }
    to   { filter: drop-shadow(0 0 22px rgba(var(--brand-rgb),0.85)) drop-shadow(0 0 50px rgba(var(--brand-rgb),0.45)); }
}

.hero-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.hero-logo-name {
    font-size: 18px;
    font-weight: 950;
    font-style: italic;
    letter-spacing: -1px;
    color: #fff;
    text-transform: uppercase;
}
.hero-logo-sub {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--brand-primary);
    text-transform: uppercase;
}

/* RIGHT — NOW PLAYING card */
.hero-right {
    display: flex;
    justify-content: flex-end;
}

.now-playing-card {
    background: rgba(15,10,22,0.92);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 20px;
    width: 100%;
    max-width: 360px;
    backdrop-filter: blur(20px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}

.np-header {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 16px;
}

.np-track {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.np-art {
    width: 88px;
    height: 88px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid rgba(var(--brand-rgb), 0.4);
    flex-shrink: 0;
    background: #111;
}

.np-track-info {
    min-width: 0;
    flex: 1;
    padding-top: 4px;
}

.np-title {
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 0 4px;
    letter-spacing: -.3px;
}

.np-artist {
    font-size: 12px;
    color: #888;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 0 10px;
}

.np-live-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--brand-primary);
    border: 1.5px solid var(--brand-primary);
    padding: 2px 9px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Waveform */
.np-waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 36px;
    margin-bottom: 10px;
    overflow: hidden;
}

.np-wave-bar {
    flex: 1;
    min-width: 3px;
    border-radius: 2px;
    background: var(--brand-primary);
    opacity: 0.75;
    animation: npWave 1.2s ease-in-out infinite alternate;
}

@keyframes npWave {
    0%   { height: 20%; }
    100% { height: 100%; }
}

/* Progress */
.np-progress {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.np-time-label {
    font-size: 10px;
    font-weight: 700;
    color: #555;
    flex-shrink: 0;
    min-width: 28px;
}

.np-progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.np-progress-fill {
    height: 100%;
    background: var(--brand-primary);
    border-radius: 2px;
    transition: width .5s ease;
}
.np-progress-fill::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--brand-primary);
    box-shadow: 0 0 4px var(--brand-primary);
}

/* Controls */
.np-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.np-ctrl-btn {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s, background .2s;
}
.np-ctrl-btn:hover { color: #fff; background: rgba(255,255,255,.06); }
.np-ctrl-btn:disabled, .np-ctrl-inactive { opacity: .35; cursor: default; }
.np-ctrl-btn:disabled:hover { color: #888; background: none; }

/* Volume popout */
.np-vol-wrap {
    position: relative;
}

.np-vol-popout {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #1a1c26;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 40px;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(6px);
    transition: opacity .18s ease, transform .18s ease;
}

.np-vol-popout.open {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.np-vol-pct {
    font-size: 9px;
    font-weight: 800;
    color: var(--brand-primary);
    letter-spacing: 0.5px;
}

.np-vol-slider {
    -webkit-appearance: none;
    appearance: none;
    writing-mode: vertical-lr;
    direction: rtl;
    width: 4px;
    height: 80px;
    background: rgba(255,255,255,0.12);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}
.np-vol-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--brand-primary);
    cursor: pointer;
    box-shadow: 0 0 6px rgba(var(--brand-rgb),0.6);
}
.np-vol-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--brand-primary);
    border: none;
    cursor: pointer;
}

.np-play-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--brand-primary);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 18px var(--brand-glow);
    transition: transform .2s, box-shadow .2s;
}
.np-play-btn:hover { transform: scale(1.1); box-shadow: 0 6px 24px var(--brand-glow); }

/* ── RECENTLY PLAYED ─────────────────────────────────────────── */
.rp-section {
    background: #0a0c11;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding: 24px 0;
}

.rp-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 40px;
}

.rp-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.rp-title-wrap {
    display: flex;
    align-items: center;
    gap: 9px;
}

.rp-nav-btns {
    display: flex;
    gap: 6px;
}

.rp-nav-btn {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #888;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s, border-color .2s;
    line-height: 1;
}
.rp-nav-btn:hover {
    background: var(--brand-primary);
    color: #fff;
    border-color: var(--brand-primary);
}

.rp-track-list {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}
.rp-track-list::-webkit-scrollbar { display: none; }

.rp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #0e1019;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 210px;
    max-width: 210px;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
    transition: border-color .2s, background .2s;
    cursor: pointer;
}
.rp-item:hover { border-color: rgba(255,255,255,0.14); background: #121520; }
.rp-item.is-live { border-color: var(--brand-primary); }

.rp-art {
    width: 52px; height: 52px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #161820;
    border: 1px solid rgba(255,255,255,0.06);
    display: block;
}

.rp-art-skel {
    width: 52px; height: 52px;
    border-radius: 8px;
    background: #161820;
    flex-shrink: 0;
}

.rp-item-info { min-width: 0; flex: 1; }

.rp-song {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: .1px;
}

.rp-artist {
    font-size: 11px;
    color: #666;
    font-weight: 600;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rp-time {
    font-size: 10px;
    color: #444;
    font-weight: 700;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.rp-live-badge {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--brand-primary);
    border: 1px solid var(--brand-primary);
    padding: 2px 7px;
    border-radius: 4px;
    margin-top: 4px;
    display: inline-block;
}

.rp-skel {
    height: 10px;
    border-radius: 3px;
    background: #161820;
    display: block;
}

/* ── SCHEDULE + PRESENTERS ───────────────────────────────────── */
.sp-section {
    background: var(--bg-main, #0a0c10);
    padding: 50px 0;
}

.sp-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
}

.col-header {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
}

/* SCHEDULE */
.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 22px;
}

.schedule-empty {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333;
    padding: 20px 0;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.04);
    margin-bottom: 8px;
    transition: border-color .2s, background .2s;
    background: transparent;
}
.schedule-item:hover { background: rgba(255,255,255,0.02); border-color: rgba(255,255,255,0.08); }

.schedule-item--live {
    border-color: var(--brand-primary) !important;
    background: rgba(var(--brand-rgb), 0.05) !important;
}

.schedule-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.schedule-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.08);
    display: block;
}

.schedule-avatar-ph {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: #161820;
    border: 2px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    color: #444;
}

.schedule-live-ring {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid var(--brand-primary);
    box-shadow: 0 0 8px var(--brand-primary);
    animation: ring-pulse 1.5s ease-in-out infinite;
}
@keyframes ring-pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.schedule-content { flex: 1; min-width: 0; }

.schedule-time {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 2px;
    letter-spacing: .5px;
}

.schedule-show {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.schedule-dj {
    font-size: 10px;
    font-weight: 900;
    color: #555;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 1px;
}

.schedule-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--brand-primary);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
    padding: 4px 9px;
    border-radius: 20px;
    flex-shrink: 0;
}

.sched-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: schedDotPulse 1s ease-in-out infinite alternate;
    flex-shrink: 0;
}
@keyframes schedDotPulse { from { opacity: 1; } to { opacity: 0.3; } }

.view-schedule-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    color: #888;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color .2s, color .2s, background .2s;
}
.view-schedule-btn:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    background: rgba(var(--brand-rgb),0.04);
}

/* PRESENTERS */
.presenters-header {
    justify-content: space-between;
}
.col-header-left { display: flex; align-items: center; gap: 9px; }

.presenters-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.view-all-link {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand-primary);
    text-decoration: none;
    transition: opacity .2s;
}
.view-all-link:hover { opacity: .75; }

.presenters-slider {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}
.presenters-slider::-webkit-scrollbar { display: none; }

.presenters-empty {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333;
    padding: 20px 0;
}

.presenter-card {
    flex-shrink: 0;
    width: 190px;
    background: #0e1019;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: border-color .2s, transform .2s;
    display: block;
}
.presenter-card:hover { border-color: rgba(255,255,255,0.16); transform: translateY(-3px); }

.presenter-photo {
    position: relative;
    height: 200px;
    background: #161820;
    overflow: hidden;
}
.presenter-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .3s;
}
.presenter-card:hover .presenter-photo img { transform: scale(1.04); }

.presenter-photo-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 900;
    color: #222;
    background: linear-gradient(135deg, #161820, #1a1c26);
}

.presenter-on-air {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--brand-primary);
    color: #fff;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 5px;
    box-shadow: 0 2px 8px var(--brand-glow);
}

.presenter-info {
    padding: 14px 14px 12px;
}

.presenter-name {
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 4px;
    letter-spacing: -.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.presenter-time {
    font-size: 11px;
    color: #666;
    font-weight: 600;
    margin: 0 0 10px;
}

.presenter-socials {
    display: flex;
    gap: 8px;
}

.presenter-social-icon {
    width: 28px; height: 28px;
    border-radius: 7px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: background .2s, color .2s;
    cursor: pointer;
}
.presenter-card:hover .presenter-social-icon { color: #888; }

/* ── Spotify button (hero player) ───────────────────────────── */
.np-spotify-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(29,185,84,0.12);
    border: 1px solid rgba(29,185,84,0.25);
    color: #1db954;
    text-decoration: none;
    transition: background .2s, transform .2s, border-color .2s;
    flex-shrink: 0;
}
.np-spotify-btn:hover {
    background: rgba(29,185,84,0.25);
    border-color: rgba(29,185,84,0.5);
    transform: scale(1.08);
}

/* ── HOME NEWS FEED ──────────────────────────────────────────── */
.home-news-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-news-card {
    display: flex;
    gap: 12px;
    align-items: center;
    background: #0e1019;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color .2s, transform .15s;
}
.home-news-card:hover {
    border-color: rgba(var(--brand-rgb),0.3);
    transform: translateY(-2px);
}

.home-news-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    background: #161820;
}
.home-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-news-thumb-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.home-news-info {
    flex: 1;
    min-width: 0;
}

.home-news-title {
    font-size: 13px;
    font-weight: 700;
    color: #e8e8f0;
    line-height: 1.35;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-news-card:hover .home-news-title { color: #fff; }

.home-news-meta {
    font-size: 10px;
    font-weight: 600;
    color: #555;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.home-news-dot { color: #333; }

/* ── CTA SECTION ─────────────────────────────────────────────── */
.cta-section {
    background: #060810;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 50px 0;
}

.cta-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.cta-card {
    background: #0d0f18;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    transition: border-color .2s, background .2s;
}
.cta-card:hover { border-color: rgba(var(--brand-rgb),0.3); background: rgba(var(--brand-rgb),0.03); }

.cta-icon {
    width: 54px; height: 54px;
    border-radius: 50%;
    border: 1.5px solid rgba(var(--brand-rgb), 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    margin-bottom: 18px;
    background: rgba(var(--brand-rgb), 0.06);
    flex-shrink: 0;
}

.cta-card h3 {
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -.2px;
}

.cta-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px;
    flex: 1;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    border-radius: 8px;
    border: 1.5px solid var(--brand-primary);
    color: var(--brand-primary);
    background: transparent;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s, color .2s;
}
.cta-btn:hover { background: var(--brand-primary); color: #fff; }
.cta-btn--soon { border-color: #333; color: #444; cursor: default; }
.cta-btn--soon:hover { background: transparent; color: #444; }

/* ── FOOTER INFO BAR ─────────────────────────────────────────── */
.fib-section {
    background: #08080f;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 40px 0;
}

.fib-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.fib-col-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
}

.fib-live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
    animation: sdot-pulse 1s ease-in-out infinite;
    flex-shrink: 0;
}

.fib-member-badge {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 9px;
    font-weight: 700;
    color: #555;
    letter-spacing: .5px;
    text-transform: none;
}

.fib-online-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #10b981;
    flex-shrink: 0;
}

/* Discord widget */
.fib-discord-body {}

.discord-avatars {
    display: flex;
    align-items: center;
    gap: -6px;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 4px;
}

.disc-av {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    color: #fff;
    border: 2px solid #08080f;
    flex-shrink: 0;
}

.disc-av--more {
    background: #1a1c28;
    border-color: rgba(255,255,255,0.08);
    font-size: 9px;
    color: #888;
    border-radius: 18px;
    padding: 0 8px;
    width: auto;
    letter-spacing: .5px;
}

.discord-channel {
    font-size: 11px;
    font-weight: 700;
    color: #555;
    margin-bottom: 8px;
    letter-spacing: .5px;
}

.discord-msg {
    background: #0e1019;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 10px 12px;
}

.discord-msg-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.discord-user {
    font-size: 11px;
    font-weight: 800;
    color: #7289da;
}

.discord-time {
    font-size: 10px;
    color: #444;
}

.discord-text {
    font-size: 12px;
    color: #aaa;
    font-weight: 500;
}

/* Social list */
.fib-social-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fib-social-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    padding: 10px 14px;
    background: #0e1019;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 10px;
    transition: border-color .2s, background .2s;
}
.fib-social-item:hover { border-color: rgba(255,255,255,0.1); background: #121420; }

.fib-social-icon {
    width: 36px; height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.fib-instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.fib-tiktok    { background: #000; border: 1px solid rgba(255,255,255,0.1); }
.fib-youtube   { background: #ff0000; }
.fib-twitter   { background: #000; border: 1px solid rgba(255,255,255,0.1); }

.fib-social-info { min-width: 0; flex: 1; }

.fib-social-name {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.fib-social-count {
    display: block;
    font-size: 10px;
    color: #555;
    font-weight: 600;
}

/* Station stats */
.fib-stats-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fib-stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #0e1019;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 10px;
}

.fib-stat-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #666;
}
.fib-stat-label svg { color: #444; flex-shrink: 0; }

.fib-stat-val {
    font-size: 14px;
    font-weight: 900;
    color: var(--brand-primary);
    letter-spacing: -.3px;
}

/* ── REQUEST MODAL ───────────────────────────────────────────── */
.hero-btn {
    display: inline-block;
    background: var(--brand-primary);
    color: #fff;
    padding: 14px 42px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 24px var(--brand-glow);
    transition: .2s;
    font-family: inherit;
}
.hero-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px var(--brand-glow); }

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}
.modal-card {
    background: var(--bg-card, #11141b);
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 480px;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 14px; right: 18px;
    background: none;
    border: none;
    color: #555;
    font-size: 20px;
    cursor: pointer;
}
.modal-close:hover { color: #fff; }
.modal-card h3 {
    font-size: 28px;
    font-weight: 950;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: #fff;
}
.modal-card h3 span { color: var(--brand-primary); }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: 10px; font-weight: 900; letter-spacing: 2px; color: #555; text-transform: uppercase; margin-bottom: 6px; }
.fg input, .fg textarea { width: 100%; background: #0a0a0a; border: 1px solid #2a2a2a; color: #fff; padding: 12px 16px; border-radius: 8px; font-size: 14px; font-family: inherit; transition: .2s; box-sizing: border-box; }
.fg input:focus, .fg textarea:focus { outline: none; border-color: var(--brand-primary); }
.fg textarea { resize: vertical; min-height: 80px; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .hero-container { grid-template-columns: 1.4fr 1fr 1.5fr; gap: 24px; padding: 48px 32px 44px; }
    .sp-container { grid-template-columns: 340px 1fr; padding: 0 32px; }
    .cta-container { padding: 0 32px; }
    .fib-container { padding: 0 32px; }
    .rp-inner { padding: 0 32px; }
}

@media (max-width: 900px) {
    .hero-container { grid-template-columns: 1fr 1fr; padding: 40px 24px 36px; }
    .hero-center { opacity: 0.25; pointer-events: none; }
    .sp-container { grid-template-columns: 1fr; gap: 32px; padding: 0 24px; }
    .cta-container { grid-template-columns: repeat(2, 1fr); padding: 0 24px; }
    .fib-container { grid-template-columns: 1fr 1fr; padding: 0 24px; gap: 24px; }
    .rp-inner { padding: 0 24px; }
}

@media (max-width: 700px) {
    .hero-container { grid-template-columns: 1fr; gap: 20px; padding: 32px 20px 28px; }
    .hero-right { justify-content: stretch; }
    .now-playing-card { max-width: 100%; }
    .cta-container { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 20px; }
    .fib-container { grid-template-columns: 1fr; padding: 0 20px; }
    .sp-section { padding: 36px 0; }
    .sp-container { padding: 0 20px; }
    .rp-inner { padding: 0 20px; }
}

@media (max-width: 480px) {
    .hero-headline { font-size: 34px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn-listen-live, .btn-view-schedule { justify-content: center; }
    .hero-stats { gap: 10px; }
    .hero-stat-divider { display: none; }
    .cta-container { grid-template-columns: 1fr; }
    .cta-section { padding: 36px 0; }
    .fib-section { padding: 32px 0; }
}
