/* ==========================================================================
   Radio Nework — main stylesheet
   --------------------------------------------------------------------------
   Design tokens live in :root below. Change the palette / spacing / radii in
   ONE place and the whole site updates.

   Palette: a CLASSIC black + orange identity — warm near-black surfaces,
   burnt-orange accent, warm ivory paper. Timeless broadcast/editorial feel.
   ========================================================================== */

:root {
    /* ---- Brand colour system ---------------------------------------- */
    --black-900: #15110c;   /* deepest, warm near-black */
    --black-800: #1f1812;   /* dark espresso */
    --black-700: #2c2117;   /* warm dark */
    --black-600: #3f2c18;   /* warm brown — gradient depth toward orange */

    --orange-500: #efb22e;  /* primary accent — broadcast gold */
    --orange-400: #f7cf63;  /* lighter gold */
    --orange-600: #cf9412;  /* deeper gold */
    --red:        #e5332a;  /* live / strong CTA */
    --red-2:      #c4271f;

    --paper:    #f5efe3;   /* warm ivory background */
    --paper-2:  #fffdf7;   /* card surface (warm white) */
    --ink:      #1c1610;   /* primary text on light (warm near-black) */
    --ink-soft: #6f6354;   /* secondary text (warm taupe) */
    --line:     #e7dcc8;   /* hairline borders (warm) */

    /* ---- Semantic roles --------------------------------------------- */
    --bg:           var(--paper);
    --surface:      var(--paper-2);
    --text:         var(--ink);
    --text-muted:   var(--ink-soft);
    --accent:       var(--orange-500);
    --accent-strong:var(--orange-600);
    --on-dark:      #f4ece0;   /* cream text on dark surfaces */
    --on-dark-muted:#c0b09a;   /* warm muted text on dark */

    /* ---- Typography ------------------------------------------------- */
    --font-display: "Sora", "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body:    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* ---- Spacing & shape -------------------------------------------- */
    --container: 1180px;
    --radius:    16px;
    --radius-sm: 10px;
    --radius-lg: 26px;
    --gap:       clamp(1rem, 2.5vw, 2rem);

    --shadow-sm: 0 2px 10px rgba(30, 22, 14, .07);
    --shadow:    0 14px 40px rgba(30, 22, 14, .13);
    --shadow-lg: 0 30px 70px rgba(20, 15, 9, .24);

    --ease:      cubic-bezier(.22, .61, .36, 1);
    --dock-h:    74px;
}

/* ==========================================================================
   Base / reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
    padding-bottom: var(--dock-h);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; margin: 0 0 .5em; color: var(--text); font-weight: 700; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.container.narrow { width: min(100% - 2.4rem, 720px); }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 200;
    background: var(--black-800); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    --btn-bg: var(--black-800); --btn-fg: #fff;
    position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    padding: .85rem 1.6rem; border: 1px solid transparent; border-radius: 999px;
    background: var(--btn-bg); color: var(--btn-fg);
    font-family: var(--font-body); font-weight: 600; font-size: .95rem; letter-spacing: .01em; cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), filter .25s var(--ease);
    will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0) scale(.99); }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.btn-icon { width: 18px; height: 18px; fill: currentColor; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.03rem; }
.btn-block { width: 100%; }

.btn-primary {
    --btn-fg: var(--black-900);
    background: linear-gradient(135deg, var(--orange-400), var(--orange-500) 52%, var(--orange-600));
    border-color: rgba(255,255,255,.16); font-weight: 700;
    box-shadow: 0 10px 30px rgba(239,178,46,.42), inset 0 1px 0 rgba(255,255,255,.32);
}
.btn-primary:hover { filter: brightness(1.05); box-shadow: 0 16px 42px rgba(239,178,46,.55), inset 0 1px 0 rgba(255,255,255,.4); }

.btn-ghost { --btn-bg: rgba(255,255,255,.07); --btn-fg: #fff; border-color: rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); }

.btn-outline { --btn-bg: transparent; --btn-fg: var(--text); border-color: var(--line); }
.btn-outline:hover { border-color: var(--accent); background: var(--accent); color: var(--black-900); }

.live-dot {
    width: 9px; height: 9px; border-radius: 50%; background: #ff4d3d; display: inline-block;
    box-shadow: 0 0 0 0 rgba(255,77,61,.7); animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255,77,61,.6); }
    70%  { box-shadow: 0 0 0 8px rgba(255,77,61,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,77,61,0); }
}

/* ==========================================================================
   Header / navigation
   ========================================================================== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
    padding: .85rem 0;
}
.site-header.scrolled {
    background: rgba(18,14,10,.78);
    backdrop-filter: saturate(170%) blur(16px);
    box-shadow: inset 0 -1px 0 rgba(255,255,255,.08), 0 12px 34px rgba(0,0,0,.42);
    padding: .55rem 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand-mark {
    width: 40px; height: 40px; border-radius: 12px;
    background: linear-gradient(150deg, var(--black-700), var(--black-900));
    display: flex; align-items: flex-end; justify-content: center; gap: 3px; padding: 9px;
    box-shadow: var(--shadow-sm);
}
.brand-wave { width: 4px; background: var(--accent); border-radius: 4px; animation: brandWave 1.1s var(--ease) infinite; }
.brand-wave:nth-child(1){ height: 8px;  animation-delay: 0s; }
.brand-wave:nth-child(2){ height: 16px; animation-delay: .18s; }
.brand-wave:nth-child(3){ height: 11px; animation-delay: .34s; }
@keyframes brandWave { 0%,100%{ transform: scaleY(.5); } 50%{ transform: scaleY(1.25); } }

.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: #fff; }
.brand-sub  { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--on-dark-muted); margin-top: 3px; }

.main-nav { display: flex; align-items: center; gap: clamp(.6rem, 1.6vw, 1.6rem); }
.main-nav > a:not(.btn) {
    position: relative; font-weight: 500; color: var(--on-dark); opacity: .85; padding: .35rem 0; font-size: .96rem;
    transition: opacity .25s var(--ease), color .25s var(--ease);
}
.main-nav > a:not(.btn):hover { opacity: 1; color: #fff; }
.main-nav > a:not(.btn)::after {
    content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
    background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.main-nav > a:not(.btn):hover::after { transform: scaleX(1); }
.btn-listen { margin-left: .3rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--on-dark); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---- Language switcher ---- */
.lang-switcher { position: relative; }
.lang-current {
    display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .85rem;
    border: 1px solid rgba(255,255,255,.2); border-radius: 999px;
    background: linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.035));
    cursor: pointer; font-weight: 700; font-size: .82rem; letter-spacing: .05em; color: #fff;
    transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
    backdrop-filter: blur(8px);
}
.lang-current:hover { border-color: rgba(239,178,46,.65); background: linear-gradient(rgba(255,255,255,.16), rgba(255,255,255,.06)); box-shadow: 0 6px 18px rgba(0,0,0,.28); }
.lang-switcher.open .lang-current { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(239,178,46,.22); }
.lang-globe { width: 17px; height: 17px; flex: 0 0 auto; color: var(--accent); }
.lang-code { line-height: 1; }
.lang-caret { width: 13px; height: 13px; flex: 0 0 auto; color: rgba(255,255,255,.6); transition: transform .25s var(--ease), color .25s var(--ease); }
.lang-switcher.open .lang-caret { transform: rotate(180deg); color: var(--accent); }

.lang-menu {
    position: absolute; right: 0; top: calc(100% + 12px); min-width: 188px;
    background: rgba(22,17,12,.92); border: 1px solid rgba(255,255,255,.12); border-radius: 14px;
    box-shadow: 0 22px 50px rgba(0,0,0,.5); padding: .4rem; z-index: 50;
    backdrop-filter: saturate(160%) blur(16px);
    opacity: 0; visibility: hidden; transform: translateY(-8px) scale(.97);
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.lang-switcher.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.lang-option { margin: 0; }
.lang-link {
    width: 100%; display: flex; align-items: center; gap: .7rem; padding: .55rem .65rem;
    border: 0; background: none; border-radius: 9px; cursor: pointer; text-align: left;
    font-family: var(--font-body); font-size: .9rem; color: var(--on-dark); transition: background .18s, color .18s;
}
.lang-link:hover { background: rgba(255,255,255,.07); color: #fff; }
.lang-link.is-active { background: rgba(239,178,46,.15); color: #fff; }
.lang-link.is-active .lang-link-code { background: var(--accent); color: var(--black-900); }
.lang-link-code {
    flex: 0 0 auto; display: inline-grid; place-items: center; min-width: 30px; height: 22px; padding: 0 7px;
    border-radius: 6px; background: rgba(255,255,255,.08); color: var(--on-dark-muted);
    font-weight: 700; font-size: .68rem; letter-spacing: .05em;
}
.lang-link-name { flex: 1; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    position: relative; overflow: hidden; color: var(--on-dark);
    background: radial-gradient(120% 120% at 80% -10%, var(--black-600), var(--black-900) 55%);
    min-height: 100vh; min-height: 100svh;
    display: grid; align-content: center;
    padding: clamp(7rem, 13vh, 10rem) 0 clamp(4.5rem, 9vh, 7rem);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 46px 46px; mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent);
}
.orb { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .55; }
.orb-1 { width: 420px; height: 420px; background: rgba(239,178,46,.5); top: -120px; right: -60px; animation: float 14s var(--ease) infinite; }
.orb-2 { width: 360px; height: 360px; background: rgba(150,70,18,.5); bottom: -120px; left: -80px; animation: float 18s var(--ease) infinite reverse; }
.orb-3 { width: 240px; height: 240px; background: rgba(255,255,255,.08); top: 40%; left: 55%; animation: float 12s var(--ease) infinite; }
@keyframes float { 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(20px,-30px); } }

.hero-inner { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: .5rem; font-size: .8rem; letter-spacing: .14em;
    text-transform: uppercase; color: var(--on-dark); background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16); padding: .45rem .9rem; border-radius: 999px; font-weight: 600;
}
.hero-title { font-size: clamp(2.6rem, 6vw, 4.6rem); margin: 1.2rem 0 .4rem; color: #fff; letter-spacing: -.01em; }
.hero-tagline { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--on-dark-muted); max-width: 34ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.8rem 0 2.4rem; }
.hero-stats { display: flex; gap: clamp(1.2rem, 4vw, 3rem); flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--accent); }
.hero-stats span { font-size: .82rem; color: var(--on-dark-muted); letter-spacing: .03em; }

/* Hero player — standalone vinyl record (no card) */
.hero-disc { display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.hero-disc-caption { text-align: center; }

/* ---- Vinyl record ---- */
.hp-disc { position: relative; width: clamp(250px, 30vw, 380px); aspect-ratio: 1; }

.hp-vinyl {
    position: absolute; inset: 0; border-radius: 50%;
    background:
        repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,.05) 0 .5px, rgba(0,0,0,0) .5px 2.5px),
        radial-gradient(circle at 33% 28%, #343434, #0c0c0c 60%, #000 100%);
    box-shadow: 0 22px 52px rgba(0,0,0,.5), inset 0 0 2px 1px rgba(255,255,255,.06);
    animation: spin 3.2s linear infinite;
    animation-play-state: paused;          /* spins only while playing */
}
/* rotating light reflection across the grooves */
.hp-vinyl::before {
    content: ""; position: absolute; inset: 0; border-radius: 50%;
    background: conic-gradient(from 200deg, transparent 0deg, rgba(255,255,255,.14) 28deg, transparent 60deg, transparent 200deg, rgba(255,255,255,.07) 232deg, transparent 270deg);
    -webkit-mask: radial-gradient(circle, transparent 30%, #000 31%);
    mask: radial-gradient(circle, transparent 30%, #000 31%);
}
/* beige paper label */
.hp-vinyl::after {
    content: ""; position: absolute; inset: 30%; border-radius: 50%;
    background: radial-gradient(circle at 38% 32%, #e8d7ad, #c9b485 75%, #b8a373);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.18), inset 0 1px 3px rgba(0,0,0,.18);
}
body.is-playing .hp-vinyl { animation-play-state: running; }

/* play / pause button at the centre of the record (does not spin) */
.hp-disc-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 28%; height: 28%; padding: 0; border: 0; border-radius: 50%; cursor: pointer; z-index: 3;
    background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
    color: var(--black-900); display: grid; place-items: center;
    box-shadow: 0 8px 22px rgba(239,178,46,.55), 0 0 0 5px rgba(8,6,4,.6), inset 0 1px 0 rgba(255,255,255,.4);
    transition: transform .2s var(--ease), filter .2s var(--ease);
}
.hp-disc-btn:hover { transform: translate(-50%, -50%) scale(1.08); filter: brightness(1.05); }
.hp-disc-btn:active { transform: translate(-50%, -50%) scale(.95); }
.hp-disc-btn:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.hp-disc-btn svg { width: 32px; height: 32px; fill: currentColor; grid-area: 1/1; }
.hp-disc-btn .icon-play { transform: translateX(2px); }
.hp-disc-btn .icon-pause, .hp-disc-btn .hp-disc-spinner { display: none; }
body.is-playing .hp-disc-btn .icon-play { display: none; }
body.is-playing .hp-disc-btn .icon-pause { display: block; }
body.is-loading .hp-disc-btn .icon-play, body.is-loading .hp-disc-btn .icon-pause { display: none; }
body.is-loading .hp-disc-btn .hp-disc-spinner { display: block; }
.hp-disc-spinner { grid-area: 1/1; width: 30px; height: 30px; border: 4px solid rgba(8,6,4,.3); border-top-color: var(--black-900); border-radius: 50%; animation: spin .8s linear infinite; }

@keyframes spin { to { transform: rotate(360deg); } }
.hp-badge { display: inline-flex; align-items: center; gap: .5rem; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.hp-sub { color: var(--on-dark-muted); font-size: .98rem; margin: .55rem 0 0; }
@keyframes bars { 0%,100%{ height: 25%; } 50%{ height: 100%; } }

/* ==========================================================================
   Generic section scaffold
   ========================================================================== */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto clamp(2rem, 4vw, 3.2rem); }
.section-kicker { display: inline-block; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; color: var(--accent-strong); margin-bottom: .8rem; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.section-lead { color: var(--text-muted); font-size: 1.06rem; }
.section-cta { text-align: center; margin-top: 2.6rem; }

.page-hero {
    background: radial-gradient(120% 140% at 70% -20%, var(--black-600), var(--black-900));
    color: var(--on-dark); padding: clamp(6.5rem, 11vw, 9rem) 0 clamp(2.4rem, 5vw, 3.4rem);
    text-align: center;
}
.page-hero .section-lead { color: var(--on-dark-muted); }
.page-hero .section-kicker { color: var(--accent); }
.page-title { font-size: clamp(2.2rem, 5vw, 3.4rem); color: #fff; }

/* ==========================================================================
   News
   ========================================================================== */
.section-news { background: linear-gradient(180deg, var(--paper) 0%, #efe6d4 100%); }

.news-featured {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; background: var(--surface);
    border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); margin-bottom: 2.4rem; transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.news-featured:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.nf-media { position: relative; min-height: 320px; overflow: hidden; }
.nf-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.news-featured:hover .nf-media img { transform: scale(1.06); }
.nf-placeholder, .nc-placeholder { width: 100%; height: 100%; min-height: 200px; background: linear-gradient(135deg, var(--black-700), var(--black-900)); }
.nf-tag { position: absolute; top: 1rem; left: 1rem; background: var(--accent); color: var(--black-900); font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; padding: .4rem .8rem; border-radius: 999px; }
.nf-body { padding: clamp(1.6rem, 3vw, 2.6rem); display: flex; flex-direction: column; justify-content: center; }
.nf-body time { color: var(--accent-strong); font-weight: 600; font-size: .82rem; }
.nf-body h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: .6rem 0; }
.nf-body p { color: var(--text-muted); }

.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: var(--gap); }
.news-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.nc-media { aspect-ratio: 16/10; overflow: hidden; }
.nc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.news-card:hover .nc-media img { transform: scale(1.07); }
.nc-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.nc-body time { color: var(--accent-strong); font-weight: 600; font-size: .78rem; letter-spacing: .03em; }
.nc-body h3 { font-size: 1.22rem; margin: .5rem 0 .55rem; }
.nc-body p { color: var(--text-muted); font-size: .94rem; flex: 1; }
.link-more { color: var(--accent-strong); font-weight: 600; font-size: .9rem; margin-top: .9rem; transition: gap .25s; display: inline-flex; gap: .25rem; }
.news-card:hover .link-more, .news-featured:hover .link-more { color: var(--accent); }

.empty-state { text-align: center; color: var(--text-muted); padding: 3rem 0; font-size: 1.05rem; }

.pagination { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 3rem; }
.page-indicator { color: var(--text-muted); font-weight: 600; }

/* ==========================================================================
   About + stats
   ========================================================================== */
.section-about { background: var(--black-900); color: var(--on-dark); }
.section-about .section-title { color: #fff; }
.section-about .section-lead { color: var(--on-dark-muted); }
.section-about .section-kicker { color: var(--accent); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.stat-card {
    background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 1.6rem 1.4rem;
    text-align: center; transition: transform .35s var(--ease), border-color .35s;
}
.stat-card:hover { transform: translateY(-5px); border-color: rgba(239,178,46,.55); }
.stat-card strong { display: block; font-family: var(--font-display); font-size: clamp(1.9rem, 3vw, 2.6rem); color: var(--accent); }
.stat-card span { color: var(--on-dark-muted); font-size: .88rem; }

/* ==========================================================================
   Community
   ========================================================================== */
.section-community { background: linear-gradient(180deg, #efe6d4, var(--paper)); }
.community-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--gap); }
.community-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sm); margin: 0; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.community-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.community-card blockquote { margin: 0 0 1.2rem; font-size: 1.04rem; color: var(--text); position: relative; padding-left: 1.4rem; }
.community-card blockquote::before { content: "“"; position: absolute; left: -.1rem; top: -.6rem; font-family: var(--font-display); font-size: 2.6rem; color: var(--accent); line-height: 1; }
.community-card figcaption { display: flex; align-items: center; gap: .8rem; }
.cc-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(150deg, var(--black-700), var(--black-900)); color: var(--accent); display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); }
.cc-meta { display: flex; flex-direction: column; line-height: 1.25; }
.cc-meta strong { font-size: .95rem; }
.cc-meta small { color: var(--text-muted); font-size: .8rem; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.contact-cards { display: grid; gap: 1rem; }
.contact-card { display: flex; align-items: center; gap: 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.3rem; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), border-color .3s; }
.contact-card:hover { transform: translateX(6px); border-color: var(--accent); }
.cc-ic { width: 44px; height: 44px; flex: 0 0 44px; border-radius: 12px; background: rgba(239,178,46,.14); color: var(--accent-strong); display: grid; place-items: center; font-size: 1.25rem; }
.contact-card strong { display: block; }
.contact-card small { color: var(--text-muted); }

/* ==========================================================================
   Forms
   ========================================================================== */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(1.6rem, 4vw, 2.6rem); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; margin-bottom: 1.1rem; }
.field label { font-weight: 600; font-size: .9rem; margin-bottom: .45rem; }
.form-control, .field input, .field select, .field textarea {
    width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--text);
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
    padding: .8rem 1rem; transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(239,178,46,.2); }
.field textarea { resize: vertical; min-height: 120px; }
.field-error { color: #c0392b; font-size: .82rem; margin-top: .35rem; }
.form-note { color: var(--text-muted); font-size: .85rem; margin: 1rem 0 0; }
.hp { position: absolute; left: -9999px; }

/* ==========================================================================
   Flash messages
   ========================================================================== */
.flash-stack { width: min(100% - 2.4rem, var(--container)); margin: 6rem auto 0; display: grid; gap: .6rem; }
.flash { padding: .9rem 1.2rem; border-radius: var(--radius-sm); border: 1px solid; font-weight: 500; animation: flashIn .4s var(--ease); }
.flash--success { background: #eef7ec; border-color: #c2e2b6; color: #3f6b2a; }
.flash--error   { background: #fdecea; border-color: #f5b7b1; color: #b03a2e; }
.flash--info    { background: #fbf0e2; border-color: #f0d2a8; color: #9a5a12; }
@keyframes flashIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   Article
   ========================================================================== */
.article-hero { background: radial-gradient(120% 140% at 70% -30%, var(--black-600), var(--black-900)); color: var(--on-dark); padding: clamp(6.5rem,11vw,9rem) 0 clamp(2rem,4vw,3rem); }
.back-link { color: var(--on-dark-muted); font-weight: 600; font-size: .9rem; }
.back-link:hover { color: var(--accent); }
.article-title { color: #fff; font-size: clamp(2rem, 4.5vw, 3.2rem); max-width: 22ch; margin: 1rem 0 .8rem; }
.article-meta { color: var(--on-dark-muted); font-size: .9rem; }
.article-figure { margin: -3rem auto 0; max-width: 920px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; z-index: 2; }
.article-figure img { width: 100%; max-height: 460px; object-fit: cover; }
.article-body { max-width: 760px; padding-top: clamp(2rem, 5vw, 3.4rem); padding-bottom: 2rem; }
.article-lead { font-size: 1.2rem; color: var(--text); font-weight: 500; }
.prose { font-size: 1.07rem; color: #3a2e22; }
.prose p { margin-bottom: 1.2rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--black-900); color: var(--on-dark-muted); padding: clamp(3rem,6vw,4.5rem) 0 1.4rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.4rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand-name { color: #fff; font-size: 1.4rem; }
.footer-brand p { margin: .6rem 0 1rem; max-width: 32ch; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col a, .footer-col .footer-muted { display: block; color: var(--on-dark-muted); margin-bottom: .55rem; font-size: .95rem; transition: color .25s, transform .25s; }
.footer-col a:hover { color: var(--accent); transform: translateX(3px); }
.social-row { display: flex; gap: .6rem; }
.social-row a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: var(--on-dark); font-weight: 600; font-size: .82rem; transition: background .25s, border-color .25s, transform .25s; }
.social-row a:hover { background: var(--accent); color: var(--black-900); border-color: var(--accent); transform: translateY(-3px); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; padding-top: 1.4rem; font-size: .85rem; }
.footer-muted { color: var(--on-dark-muted); }
.site-footer .lang-current { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: #fff; }

/* ==========================================================================
   Radio dock (persistent bottom player)
   ========================================================================== */
.radio-dock {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; height: var(--dock-h);
    background: rgba(21,17,12,.93); backdrop-filter: saturate(160%) blur(16px);
    border-top: 1px solid rgba(255,255,255,.1); color: var(--on-dark);
    box-shadow: 0 -10px 30px rgba(20,15,9,.3);
}
.dock-inner { height: var(--dock-h); display: flex; align-items: center; gap: 1rem; }
.dock-play {
    position: relative; flex: 0 0 50px; width: 50px; height: 50px; border-radius: 50%; border: 0; cursor: pointer;
    background: var(--accent); color: var(--black-900); display: grid; place-items: center;
    transition: transform .25s var(--ease), box-shadow .25s; box-shadow: 0 6px 18px rgba(239,178,46,.42);
}
.dock-play:hover { transform: scale(1.07); }
.dock-play svg { width: 22px; height: 22px; fill: currentColor; grid-area: 1/1; }
.dock-play .icon-pause, .dock-play .dock-spinner { display: none; }
body.is-playing .dock-play .icon-play { display: none; }
body.is-playing .dock-play .icon-pause { display: block; }
body.is-loading .dock-play .icon-play, body.is-loading .dock-play .icon-pause { display: none; }
body.is-loading .dock-play .dock-spinner { display: block; }
.dock-spinner { grid-area: 1/1; width: 22px; height: 22px; border: 3px solid rgba(20,16,11,.25); border-top-color: var(--black-900); border-radius: 50%; animation: spin .8s linear infinite; }

.dock-meta { display: flex; flex-direction: column; min-width: 0; flex: 0 1 auto; }
.dock-now { display: flex; align-items: center; gap: .6rem; }
.dock-badge { display: inline-flex; align-items: center; gap: .35rem; font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.dock-title { font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dock-status { font-size: .8rem; color: var(--on-dark-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.equalizer { display: none; align-items: flex-end; gap: 3px; height: 26px; margin-left: auto; }
body.is-playing .equalizer { display: flex; }
.equalizer span { width: 4px; height: 40%; background: var(--accent); border-radius: 3px; animation: bars .9s var(--ease) infinite; }
.equalizer span:nth-child(2){ animation-delay: .15s; } .equalizer span:nth-child(3){ animation-delay: .3s; }
.equalizer span:nth-child(4){ animation-delay: .45s; } .equalizer span:nth-child(5){ animation-delay: .6s; }

.dock-volume { display: flex; align-items: center; gap: .5rem; margin-left: auto; }
body.is-playing .dock-volume { margin-left: 1rem; }
.dock-mute { background: none; border: 0; color: var(--on-dark); cursor: pointer; padding: 4px; display: grid; place-items: center; }
.dock-mute svg { width: 22px; height: 22px; fill: currentColor; opacity: .85; }
.dock-mute.muted svg { opacity: .35; }
input[type="range"]#dock-vol { width: 92px; accent-color: var(--accent); cursor: pointer; }

/* ==========================================================================
   Scroll-reveal animation utility
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.news-grid .reveal.is-visible, .community-grid .reveal.is-visible { transition-delay: calc(var(--i, 0) * 70ms); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
    .hero-inner, .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .news-featured { grid-template-columns: 1fr; }
    .nf-media { min-height: 220px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed; inset: 0 0 0 auto; width: min(82%, 340px);
        flex-direction: column; align-items: stretch; justify-content: flex-start; gap: .2rem;
        background: rgba(18,14,10,.97); backdrop-filter: blur(16px); padding: 6rem 1.6rem 2rem; box-shadow: var(--shadow-lg);
        transform: translateX(100%); transition: transform .4s var(--ease); z-index: 80;
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav > a:not(.btn) { padding: .9rem .2rem; border-bottom: 1px solid rgba(255,255,255,.1); opacity: 1; }
    .btn-listen { margin: 1rem 0 0; }
    .lang-switcher { margin: .8rem 0; }
    .lang-menu { right: auto; left: 0; }
    body.nav-open { overflow: hidden; }
    body.nav-open::after { content: ""; position: fixed; inset: 0; background: rgba(20,15,9,.55); z-index: 70; }

    .form-row { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
    .dock-title { max-width: 120px; }
    .dock-volume { display: none; }
}

@media (max-width: 420px) {
    .hero-stats { gap: 1.2rem; }
}

/* ==========================================================================
   ZARIK-style homepage
   ========================================================================== */
/* The whole homepage is dark top-to-bottom (sections below the hero must NOT
   fall back to the cream page background). */
body.home-page {
    padding-bottom: 0;
    background:
        radial-gradient(80% 50% at 85% 0%, rgba(239,178,46,.10), transparent 60%) no-repeat,
        var(--black-900);
    color: var(--on-dark);
}
body.home-page .radio-dock { display: none; }   /* inline player bar replaces it */
/* Headings in the dark sections (e.g. the greetings title) must read light. */
body.home-page .section-title,
body.home-page .section-lead { color: var(--on-dark); }

/* ---- Extra buttons ---- */
.btn-live { background: linear-gradient(135deg, var(--red), var(--red-2)); color: #fff; border-color: rgba(255,255,255,.14); box-shadow: 0 10px 28px rgba(229,51,42,.42); font-weight: 700; }
.btn-live:hover { filter: brightness(1.07); box-shadow: 0 16px 40px rgba(229,51,42,.55); }
.btn-live .live-dot { background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
.btn-outline-light { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.3); }
.btn-outline-light:hover { border-color: var(--accent); background: rgba(255,255,255,.06); color: #fff; }

/* ---- Hero ---- */
.zk-hero { min-height: auto; display: block; padding: clamp(7rem, 12vh, 9.5rem) 0 clamp(2rem, 5vh, 3.5rem); }
.zk-hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.zk-hero .hero-eyebrow { background: none; border: 0; padding: 0; color: var(--on-dark-muted); letter-spacing: .2em; font-size: .92rem; }
.zk-hero-title { font-family: var(--font-display); font-weight: 800; line-height: 1.02; font-size: clamp(2.8rem, 6.5vw, 5.2rem); color: var(--accent); margin: .4rem 0 1rem; text-shadow: 0 6px 36px rgba(239,178,46,.28); }
.zk-accent { color: #fff; }
.zk-hero-lead { color: var(--on-dark-muted); font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 44ch; }
.zk-live-badge { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.6rem; font-size: .82rem; font-weight: 700; letter-spacing: .06em; color: var(--on-dark); text-transform: uppercase; }

.zk-hero-art { position: relative; display: grid; place-items: center; min-height: 320px; }
.zk-art-glow { position: absolute; width: 72%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(239,178,46,.4), transparent 65%); filter: blur(24px); }
.zk-art-dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(239,178,46,.5) 1.3px, transparent 1.3px); background-size: 16px 16px; -webkit-mask: radial-gradient(circle at 50% 45%, #000 30%, transparent 70%); mask: radial-gradient(circle at 50% 45%, #000 30%, transparent 70%); opacity: .5; }
.zk-mic { position: relative; width: clamp(150px, 22vw, 230px); filter: drop-shadow(0 18px 44px rgba(239,178,46,.4)); }

/* ---- Inline player bar ---- */
.zk-playerbar-wrap { margin-top: -1.5rem; padding-bottom: clamp(2rem, 5vh, 3.5rem); position: relative; z-index: 5; }
.zk-playerbar { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; background: linear-gradient(180deg, rgba(34,27,19,.94), rgba(16,12,8,.96)); border: 1px solid rgba(239,178,46,.18); border-radius: 20px; padding: 1rem 1.4rem; box-shadow: 0 26px 60px rgba(0,0,0,.5); backdrop-filter: blur(12px); }
.zk-pb-meta { display: flex; align-items: center; gap: .9rem; flex: 1 1 240px; min-width: 0; }
.zk-pb-logo { width: 54px; height: 54px; flex: 0 0 54px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #2a2118, #0c0a07); border: 1px solid rgba(239,178,46,.3); display: flex; align-items: flex-end; justify-content: center; gap: 3px; padding: 14px; }
.zk-pb-logo .brand-wave { width: 3px; background: var(--accent); border-radius: 3px; }
.zk-pb-logo .brand-wave:nth-child(1){ height: 8px; } .zk-pb-logo .brand-wave:nth-child(2){ height: 16px; } .zk-pb-logo .brand-wave:nth-child(3){ height: 11px; }
.zk-pb-text { display: flex; flex-direction: column; min-width: 0; line-height: 1.25; }
.zk-pb-badge { display: inline-flex; align-items: center; gap: .4rem; font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--red); font-weight: 800; }
.zk-pb-text strong { color: #fff; font-size: 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.zk-pb-text small { color: var(--on-dark-muted); font-size: .82rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.zk-pb-controls { display: flex; align-items: center; gap: 1.1rem; }
.zk-pb-skip { background: none; border: 0; color: var(--on-dark-muted); cursor: pointer; padding: 6px; }
.zk-pb-skip:disabled { opacity: .4; cursor: default; }
.zk-pb-skip svg { width: 24px; height: 24px; fill: currentColor; }
.zk-pb-play { position: relative; width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--accent); background: rgba(239,178,46,.12); color: var(--accent); cursor: pointer; display: grid; place-items: center; transition: background .2s, color .2s, transform .2s, box-shadow .2s; }
.zk-pb-play:hover { background: var(--accent); color: var(--black-900); transform: scale(1.05); box-shadow: 0 0 0 6px rgba(239,178,46,.15); }
.zk-pb-play svg { width: 26px; height: 26px; fill: currentColor; grid-area: 1/1; }
.zk-pb-play .icon-pause, .zk-pb-play .zk-pb-spinner { display: none; }
body.is-playing .zk-pb-play .icon-play { display: none; }
body.is-playing .zk-pb-play .icon-pause { display: block; }
body.is-loading .zk-pb-play .icon-play, body.is-loading .zk-pb-play .icon-pause { display: none; }
body.is-loading .zk-pb-play .zk-pb-spinner { display: block; }
.zk-pb-spinner { grid-area: 1/1; width: 26px; height: 26px; border: 3px solid rgba(239,178,46,.3); border-top-color: var(--accent); border-radius: 50%; animation: spin .8s linear infinite; }
.zk-pb-right { display: flex; align-items: center; gap: .8rem; flex: 1 1 200px; justify-content: flex-end; }
.zk-pb-mute { background: none; border: 0; color: var(--on-dark); cursor: pointer; padding: 4px; }
.zk-pb-mute svg { width: 22px; height: 22px; fill: currentColor; opacity: .85; }
.zk-pb-mute.muted svg { opacity: .4; }
#hp-vol { width: 120px; accent-color: var(--accent); cursor: pointer; }
.zk-pb-eq { margin: 0; }

/* ---- Category cards ---- */
.zk-cats-section { padding-top: 0; }
.zk-cats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.zk-cat { display: flex; flex-direction: column; align-items: center; gap: .9rem; text-align: center; padding: 1.6rem 1rem; border-radius: 16px; background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.01)); border: 1px solid rgba(255,255,255,.08); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.zk-cat:hover { transform: translateY(-6px); border-color: rgba(239,178,46,.5); box-shadow: 0 18px 40px rgba(0,0,0,.4); }
.zk-cat-ic { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 14px; background: rgba(239,178,46,.12); color: var(--accent); }
.zk-cat-ic svg { width: 28px; height: 28px; }
.zk-cat-name { font-weight: 700; font-size: .9rem; color: #fff; text-transform: uppercase; letter-spacing: .03em; line-height: 1.3; }

/* ---- Greetings carousel ---- */
.zk-greet-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; }
.zk-greet-head .section-title { font-size: clamp(1.4rem, 3vw, 2.1rem); text-align: left; margin: 0; }
.zk-heart { color: var(--red); }
.zk-greet-nav { display: flex; gap: .5rem; flex: 0 0 auto; }
.zk-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(239,178,46,.4); background: rgba(239,178,46,.08); color: var(--accent); font-size: 1.4rem; line-height: 1; cursor: pointer; transition: background .2s, color .2s; }
.zk-arrow:hover { background: var(--accent); color: var(--black-900); }
.zk-greet-track { display: flex; gap: 1.2rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: .6rem; scrollbar-width: none; }
.zk-greet-track::-webkit-scrollbar { display: none; }
.zk-greet-card { flex: 0 0 clamp(220px, 24vw, 270px); scroll-snap-align: start; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); background: var(--black-800); transition: transform .3s var(--ease), box-shadow .3s; }
.zk-greet-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(0,0,0,.45); }
.zk-greet-media { position: relative; height: 150px; display: grid; place-items: center; background: linear-gradient(150deg, hsl(var(--g), 45%, 30%), hsl(var(--g), 50%, 12%)); }
.zk-greet-media::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(239,178,46,.25), transparent 60%); }
.zk-greet-flag { font-size: 2.6rem; filter: drop-shadow(0 4px 10px rgba(0,0,0,.5)); z-index: 1; }
.zk-greet-city { position: absolute; bottom: 8px; left: 12px; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.7); z-index: 1; }
.zk-greet-body { padding: 1rem 1.1rem; }
.zk-greet-body small { color: var(--on-dark-muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .04em; }
.zk-greet-body strong { display: block; color: var(--accent); margin-top: .2rem; }

/* ---- About / Dedication / Follow ---- */
.zk-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; align-items: start; }
.zk-panel { background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012)); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: clamp(1.4rem, 2.4vw, 2rem); }
.zk-panel-title { display: flex; align-items: center; gap: .7rem; font-family: var(--font-display); font-size: 1.3rem; color: #fff; margin-bottom: 1.2rem; }
.zk-bar { width: 5px; height: 22px; border-radius: 3px; background: var(--accent); flex: 0 0 auto; }
.zk-about-body p { color: var(--on-dark-muted); }
.zk-about-strong { color: var(--accent); font-weight: 700; }

.zk-form { display: grid; gap: .85rem; }
.zk-field { position: relative; display: flex; align-items: center; }
.zk-field-ic { position: absolute; left: .9rem; font-size: 1rem; opacity: .85; pointer-events: none; z-index: 1; }
.zk-field input, .zk-field select, .zk-field textarea { width: 100%; background: rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; color: #fff; font-family: var(--font-body); font-size: .95rem; padding: .85rem 1rem .85rem 2.6rem; transition: border-color .2s, box-shadow .2s; }
.zk-field-area textarea { padding-left: 1rem; resize: vertical; min-height: 96px; }
.zk-field input::placeholder, .zk-field textarea::placeholder { color: rgba(255,255,255,.4); }
.zk-field select { appearance: none; }
.zk-field select option { color: #111; }
.zk-field input:focus, .zk-field select:focus, .zk-field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(239,178,46,.2); }

/* Searchable country picker (dedication form) */
.zk-country { position: relative; }
.zk-country-search { cursor: text; }
.zk-country-menu {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 20;
  max-height: 220px; overflow-y: auto;
  background: #1a1510; border: 1px solid rgba(255,255,255,.14); border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0,0,0,.45); padding: .35rem;
}
.zk-country-option { padding: .55rem .8rem; border-radius: 8px; color: rgba(255,255,255,.85); font-size: .9rem; cursor: pointer; }
.zk-country-option:hover, .zk-country-option.is-active { background: rgba(239,178,46,.16); color: #fff; }
.zk-country-empty { padding: .55rem .8rem; color: rgba(255,255,255,.4); font-size: .85rem; }

.zk-follow { display: grid; gap: .6rem; }
.zk-follow-row { display: flex; align-items: center; gap: .8rem; padding: .7rem .9rem; border-radius: 12px; background: rgba(0,0,0,.3); border: 1px solid rgba(255,255,255,.08); transition: border-color .2s, transform .2s; }
.zk-follow-row:hover { border-color: rgba(239,178,46,.4); transform: translateX(3px); }
.zk-follow-row > span:nth-child(2) { flex: 1; color: #fff; font-weight: 600; }
.zk-follow-row em { font-style: normal; font-size: .8rem; font-weight: 700; color: var(--accent); }
.zk-sub-red { color: var(--red); }
.zk-fb-ic { width: 38px; height: 38px; flex: 0 0 38px; border-radius: 10px; display: grid; place-items: center; font-weight: 800; color: #fff; }
.zk-fb-facebook { background: #1877f2; }
.zk-fb-tiktok { background: #111; border: 1px solid #333; }
.zk-fb-instagram { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.zk-fb-youtube { background: #ff0000; }

.zk-apps { margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.08); }
.zk-apps-title { color: #fff; font-weight: 700; font-size: .95rem; margin-bottom: .8rem; }
.zk-apps-badges { display: flex; gap: .6rem; flex-wrap: wrap; }
.zk-badge { display: flex; align-items: center; gap: .5rem; padding: .55rem .9rem; border-radius: 10px; background: #000; border: 1px solid rgba(255,255,255,.2); color: #fff; }
.zk-badge > span:last-child { display: flex; flex-direction: column; line-height: 1.1; font-weight: 700; font-size: .85rem; }
.zk-badge small { font-weight: 400; font-size: .58rem; opacity: .7; text-transform: uppercase; }

/* ---- Footer additions ---- */
.footer-stats .foot-stat { display: flex; align-items: center; gap: .7rem; margin-bottom: .8rem; }
.foot-stat-ic { width: 38px; height: 38px; flex: 0 0 38px; border-radius: 10px; background: rgba(239,178,46,.12); display: grid; place-items: center; font-size: 1.05rem; }
.foot-stat-body { display: flex; flex-direction: column; line-height: 1.2; }
.foot-stat-body strong { color: var(--accent); font-family: var(--font-display); font-size: 1.2rem; }
.foot-stat-body small { color: var(--on-dark-muted); font-size: .78rem; }
.footer-eq { display: flex; align-items: flex-end; justify-content: center; gap: 3px; height: 38px; margin: 1.4rem 0 .4rem; opacity: .45; }
.footer-eq span { width: 5px; background: linear-gradient(var(--accent), transparent); border-radius: 3px; height: 28%; animation: bars 1.3s var(--ease) infinite; animation-delay: calc(var(--d, 0) * .05s); }

/* ---- Responsive ---- */
@media (max-width: 980px) {
    .zk-hero-inner { grid-template-columns: 1fr; }
    .zk-hero-art { min-height: 230px; }
    .zk-cats { grid-template-columns: repeat(3, 1fr); }
    .zk-cols { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
    .zk-cats { grid-template-columns: repeat(2, 1fr); }
    .zk-playerbar { gap: 1rem; justify-content: center; }
    .zk-pb-right { flex-basis: auto; }
    #hp-vol { width: 80px; }
}

/* ==========================================================================
   Top songs + poll
   ========================================================================== */
.zk-top-section { padding-top: 0; }
.zk-top-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 1.6rem; align-items: start; }
.zk-panel-sub { color: var(--on-dark-muted); font-size: .92rem; margin: -0.6rem 0 1.2rem; }
.zk-empty { color: var(--on-dark-muted); padding: 1.2rem 0; }

.zk-chart { list-style: none; margin: 0; padding: 0; counter-reset: chart; }
.zk-chart-row { display: flex; align-items: center; gap: 1rem; padding: .8rem .9rem; border-radius: 12px; border: 1px solid transparent; transition: background .2s, border-color .2s, transform .2s; }
.zk-chart-row:hover { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); transform: translateX(4px); }
.zk-chart-rank { flex: 0 0 40px; height: 40px; display: grid; place-items: center; border-radius: 11px; background: rgba(255,255,255,.06); color: var(--on-dark-muted); font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; }
.zk-chart-row.is-top .zk-chart-rank { background: linear-gradient(135deg, var(--orange-400), var(--orange-600)); color: var(--black-900); box-shadow: 0 6px 16px rgba(239,178,46,.35); }
.zk-chart-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.3; }
.zk-chart-meta strong { color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.zk-chart-meta small { color: var(--on-dark-muted); font-size: .82rem; }
.zk-chart-plays { flex: 0 0 auto; color: var(--accent); font-weight: 700; font-size: .95rem; }
.zk-chart-plays small { color: var(--on-dark-muted); font-weight: 500; font-size: .74rem; }

.zk-poll-q { color: #fff; font-weight: 600; font-size: 1.06rem; margin-bottom: 1.1rem; }
.zk-poll-form { display: grid; gap: .6rem; }
.zk-poll-option { display: flex; align-items: center; gap: .7rem; padding: .75rem .9rem; border-radius: 11px; background: rgba(0,0,0,.3); border: 1px solid rgba(255,255,255,.1); cursor: pointer; color: var(--on-dark); transition: border-color .2s, background .2s; }
.zk-poll-option:hover { border-color: rgba(239,178,46,.45); }
.zk-poll-option input { accent-color: var(--accent); width: 17px; height: 17px; flex: 0 0 auto; }
.zk-poll-option:has(input:checked) { border-color: var(--accent); background: rgba(239,178,46,.1); }
.zk-poll-form .btn { margin-top: .5rem; }

.zk-poll-results { display: grid; gap: .8rem; }
.zk-poll-row { display: grid; grid-template-columns: 1fr; gap: .3rem; }
.zk-poll-label { color: #fff; font-size: .92rem; font-weight: 600; }
.zk-poll-track { display: block; height: 10px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; }
.zk-poll-fill { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--orange-400), var(--orange-600)); box-shadow: 0 0 12px rgba(239,178,46,.4); transition: width .8s var(--ease); }
.zk-poll-pct { color: var(--accent); font-weight: 700; font-size: .85rem; }
.zk-poll-total { color: var(--on-dark-muted); font-size: .86rem; margin: .4rem 0 0; }
.zk-poll-total strong { color: var(--accent); }

/* ==========================================================================
   Live chat
   ========================================================================== */
.zk-chat-section { padding-top: 0; }
.zk-chat { max-width: 860px; margin: 0 auto; }
.zk-chat-box { height: 340px; overflow-y: auto; display: flex; flex-direction: column; gap: .8rem; padding: 1rem; border-radius: 14px; background: rgba(0,0,0,.32); border: 1px solid rgba(255,255,255,.08); scroll-behavior: smooth; }
.zk-chat-msg { display: flex; gap: .7rem; align-items: flex-start; animation: chatIn .25s var(--ease); }
@keyframes chatIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.zk-chat-avatar { width: 34px; height: 34px; flex: 0 0 34px; border-radius: 50%; background: linear-gradient(150deg, var(--orange-400), var(--orange-600)); color: var(--black-900); font-weight: 800; display: grid; place-items: center; font-size: .85rem; }
.zk-chat-body { display: flex; flex-direction: column; min-width: 0; }
.zk-chat-meta { display: flex; align-items: baseline; gap: .6rem; }
.zk-chat-meta strong { color: var(--accent); font-size: .88rem; }
.zk-chat-meta time { color: var(--on-dark-muted); font-size: .72rem; }
.zk-chat-text { color: var(--on-dark); font-size: .95rem; overflow-wrap: anywhere; }
.zk-chat-form { display: flex; gap: .7rem; margin-top: 1rem; }
.zk-chat-input { flex: 1; background: rgba(0,0,0,.32); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: #fff; font-family: var(--font-body); font-size: .95rem; padding: .8rem 1.2rem; transition: border-color .2s, box-shadow .2s; }
.zk-chat-input::placeholder { color: rgba(255,255,255,.4); }
.zk-chat-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(239,178,46,.2); }
.zk-chat-error { color: #f6a39c; font-size: .85rem; margin-top: .5rem; display: none; }
.zk-chat-error.show { display: block; }
.zk-chat-note { display: flex; align-items: center; gap: .55rem; margin-top: .8rem; color: var(--on-dark-muted); font-size: .85rem; }
.zk-chat-note .zk-chat-avatar { width: 26px; height: 26px; flex-basis: 26px; font-size: .7rem; }
.zk-inline-form { display: inline; margin: 0; }
.zk-linklike { background: none; border: 0; padding: 0; color: var(--accent); font-family: var(--font-body); font-size: .85rem; font-weight: 600; cursor: pointer; }
.zk-linklike:hover { text-decoration: underline; }
.zk-chat-auth { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; padding: 1rem 1.2rem; border-radius: 14px; background: rgba(239,178,46,.08); border: 1px dashed rgba(239,178,46,.35); }
.zk-chat-auth p { margin: 0; color: var(--on-dark); font-weight: 600; }
.zk-chat-auth-btns { display: flex; gap: .7rem; flex-wrap: wrap; }

@media (max-width: 980px) {
    .zk-top-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
    .zk-chat-box { height: 300px; }
    .zk-chat-form { flex-direction: column; }
}
