/* ════════════════════════════════════════════════════════════════
   Radio Benkovac — Brutalist Modern
   ════════════════════════════════════════════════════════════════ */

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #07070b;
  --bg-2:      #0d0d14;
  --ink:       #f4f1ea;
  --ink-dim:   #9a98a3;
  --line:      rgba(244,241,234,0.08);
  --line-2:    rgba(244,241,234,0.18);
  --accent:    #1a9fd4;    /* signal blue */
  --accent-2:  #4dc3f0;
  --gold:      #f5c451;
  --cyan:      #4ad9e4;
  --violet:    #a06bff;

  --font-display: 'Space Grotesk', 'Helvetica Neue', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
  --font-text:    'Inter', system-ui, sans-serif;

  --tr-fast: .25s cubic-bezier(.2,.7,.2,1);
  --tr:      .5s cubic-bezier(.2,.7,.2,1);
  --tr-slow: .9s cubic-bezier(.2,.7,.2,1);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-text);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 96px;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }

/* Selection */
::selection { background: var(--accent); color: var(--bg); }

/* Scrollbar */
::-webkit-scrollbar         { width: 8px; height: 8px; }
::-webkit-scrollbar-track   { background: var(--bg); }
::-webkit-scrollbar-thumb   { background: var(--accent); border-radius: 0; }

/* Grain overlay */
body::before {
  content:''; position: fixed; inset:0; pointer-events:none; z-index: 1000;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .06;
  mix-blend-mode: overlay;
}

/* Cursor blob */
.cursor-blob {
  position: fixed; top:0; left:0; width: 480px; height: 480px;
  pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(26,159,212,.18), transparent 60%);
  transform: translate(-50%, -50%);
  transition: transform .15s linear;
  filter: blur(40px);
}

/* ── NAV ─────────────────────────────────────────────────────── */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 36px;
  background: rgba(7,7,11,0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: padding var(--tr-fast), background var(--tr-fast);
}
.nav.scrolled { padding: 12px 36px; background: rgba(7,7,11,0.88); }

.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  position: relative; width: 38px; height: 38px;
  background: var(--accent); display:grid; place-items:center;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 78% 100%, 0 100%);
}
.brand-mark::after {
  content:''; position: absolute; inset: 4px;
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 100% 75%, 75% 100%, 0 100%);
}
.brand-mark svg { position: relative; z-index: 1; width: 16px; height: 16px; fill: var(--accent); }
.brand-name {
  font-family: var(--font-display); font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; font-size: 14px;
}
.brand-sub {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: .25em;
  color: var(--accent); text-transform: uppercase; margin-top: 2px;
}

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink-dim);
  position: relative; padding: 8px 0;
  transition: color var(--tr-fast);
}
.nav-links a::after {
  content:''; position: absolute; left:0; bottom: 0; width:100%; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: right center;
  transition: transform var(--tr) ;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left center; }

.nav-frequency {
  display:flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em;
  color: var(--ink);
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(26,159,212,0.55); }
  100% { box-shadow: 0 0 0 14px rgba(26,159,212,0); }
}

/* mobile top bar — hidden on desktop */
.mobile-top { display: none; }
.tabbar     { display: none; }

/* ── HERO ────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 36px 100px;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}

.hero-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 50% at 20% 20%, rgba(26,159,212,.25), transparent 60%),
    radial-gradient(50% 40% at 80% 30%, rgba(160,107,255,.18), transparent 60%),
    radial-gradient(50% 50% at 60% 90%, rgba(74,217,228,.12), transparent 60%);
  filter: blur(20px);
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  0%   { transform: translate3d(-2%,  0,    0) scale(1.05); }
  100% { transform: translate3d( 3%, -2%, 0) scale(1.12); }
}

.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  opacity: .5;
}

.hero-inner { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; width: 100%; }

.hero-meta {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ink-dim);
  margin-bottom: 28px;
}
.hero-meta .tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border: 1px solid var(--line-2);
  color: var(--ink);
}
.hero-meta .tag-live { color: var(--accent); border-color: rgba(26,159,212,.4); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 11vw, 180px);
  line-height: .88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-title .row { display: block; overflow: hidden; }
.hero-title .row span { display: inline-block; transform: translateY(110%); transition: transform var(--tr-slow); }
.hero-title.in-view .row span { transform: translateY(0); }
.hero-title .row:nth-child(2) span { transition-delay: .12s; }
.hero-title .row:nth-child(3) span { transition-delay: .22s; }
.hero-title .stroke {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
  font-style: italic;
}
.hero-title .accent { color: var(--accent); }

.hero-desc {
  max-width: 560px;
  font-size: 18px;
  color: var(--ink-dim);
  margin-bottom: 44px;
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--tr-slow) .5s, transform var(--tr-slow) .5s;
}
.hero-title.in-view ~ .hero-desc { opacity: 1; transform: translateY(0); }

.hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--tr-slow) .65s, transform var(--tr-slow) .65s;
}
.hero-title.in-view ~ .hero-cta { opacity: 1; transform: translateY(0); }

.btn {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .22em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: transparent; color: var(--ink);
  transition: color var(--tr-fast);
  overflow: hidden; z-index: 0;
}
.btn::before {
  content:''; position:absolute; inset:0; background: var(--ink);
  transform: translateY(100%); transition: transform var(--tr);
  z-index: -1;
}
.btn:hover { color: var(--bg); }
.btn:hover::before { transform: translateY(0); }
.btn-accent { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.btn-accent::before { background: var(--ink); }
.btn-accent:hover { color: var(--bg); }

.btn svg { width: 14px; height: 14px; }

/* Hero side: equalizer / artwork */
.hero-side {
  position: absolute; right: 36px; bottom: 80px; z-index: 2;
  display: flex; flex-direction: column; gap: 14px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .25em;
  color: var(--ink-dim); text-transform: uppercase;
  max-width: 280px; text-align: right;
}
.hero-side .label { color: var(--accent); }
.hero-side .big { font-family: var(--font-display); font-size: 22px; color: var(--ink); letter-spacing: 0; line-height: 1.3; text-transform: none; }

.eq {
  display: inline-flex; align-items: flex-end; gap: 3px; height: 26px; margin-left: auto;
}
.eq span {
  width: 3px; background: var(--accent); display: inline-block; height: 30%;
  animation: eq 1s ease-in-out infinite;
}
.eq span:nth-child(1) { animation-delay: -.1s; }
.eq span:nth-child(2) { animation-delay: -.4s; }
.eq span:nth-child(3) { animation-delay: -.7s; }
.eq span:nth-child(4) { animation-delay: -.2s; }
.eq span:nth-child(5) { animation-delay: -.5s; }
.eq.paused span { animation-play-state: paused; height: 30%; }
@keyframes eq {
  0%, 100% { height: 25%; }
  50%      { height: 100%; }
}

/* ── MARQUEE / TICKER ────────────────────────────────────────── */

.ticker {
  position: relative;
  display: flex; align-items: center;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  height: 56px; overflow: hidden;
  background: var(--bg-2);
}
.ticker-label {
  flex-shrink: 0; padding: 0 22px; height: 100%;
  display: flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--bg);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase;
}
.ticker-track {
  display: flex; flex: 1; overflow: hidden; white-space: nowrap; gap: 64px;
  mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
}
.ticker-content {
  display: flex; align-items: center; gap: 64px;
  font-family: var(--font-display); font-size: 18px; font-weight: 500;
  letter-spacing: -.005em;
  white-space: nowrap;
  animation: ticker 50s linear infinite;
  padding-left: 64px;
}
.ticker-content span { color: var(--ink); }
.ticker-content em {
  font-style: normal; color: var(--accent); margin: 0 6px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION HEAD ────────────────────────────────────────────── */

.section {
  position: relative;
  padding: 120px 36px;
  max-width: 1400px; margin: 0 auto;
}
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 72px; flex-wrap: wrap;
}
.section-num {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .25em;
  color: var(--accent); text-transform: uppercase; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-num::before {
  content:''; width: 28px; height: 1px; background: var(--accent);
}
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: .95; letter-spacing: -.03em;
  text-transform: uppercase;
}
.section-title .stroke {
  -webkit-text-stroke: 1.5px var(--ink); color: transparent; font-style: italic;
}
.section-desc {
  max-width: 380px; color: var(--ink-dim); font-size: 15px;
}

/* ── NEWS GRID ───────────────────────────────────────────────── */

.news-controls {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px;
}
.news-controls button {
  padding: 10px 16px; border: 1px solid var(--line-2);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em;
  color: var(--ink-dim); text-transform: uppercase;
  transition: color var(--tr-fast), border-color var(--tr-fast), background var(--tr-fast);
}
.news-controls button:hover { color: var(--ink); border-color: var(--ink); }
.news-controls button.active {
  background: var(--ink); color: var(--bg); border-color: var(--ink);
}

.news-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px;
}
.news-card {
  position: relative; grid-column: span 4;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  transition: transform var(--tr), border-color var(--tr-fast);
  opacity: 0; transform: translateY(30px);
}
.news-card.in-view { opacity: 1; transform: translateY(0); transition: opacity var(--tr-slow), transform var(--tr-slow), border-color var(--tr-fast); }
.news-card:nth-child(odd) { transition-delay: .05s; }
.news-card:nth-child(3n+2) { transition-delay: .12s; }
.news-card:nth-child(3n+3) { transition-delay: .2s; }

.news-card.featured { grid-column: span 8; grid-row: span 2; }
.news-card.wide     { grid-column: span 8; }

.news-card:hover { border-color: var(--line-2); }
.news-card:hover .news-thumb img { transform: scale(1.06); }
.news-card:hover .news-arrow { transform: translate(4px, -4px); color: var(--accent); }

.news-thumb {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
  background:
    url('news-placeholder.svg') center / cover no-repeat,
    linear-gradient(135deg, #1a1a22, #0d0d14);
}
.news-card.featured .news-thumb { aspect-ratio: 16/9; }
.news-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
  filter: saturate(1.05) contrast(1.02);
}
.news-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,7,11,.7), transparent 50%);
  pointer-events: none;
}
.news-source {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 5px 10px;
  background: var(--bg); color: var(--ink);
  font-family: var(--font-mono); font-size: 9px; letter-spacing: .22em;
  text-transform: uppercase;
}

.news-body {
  padding: 22px; display: flex; flex-direction: column; gap: 14px; flex: 1;
  position: relative;
}
.news-card.featured .news-body { padding: 32px; }
.news-time {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .22em;
  color: var(--ink-dim); text-transform: uppercase;
}
.news-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: 19px; line-height: 1.2; letter-spacing: -.01em;
  color: var(--ink);
}
.news-card.featured .news-title { font-size: 32px; }
.news-card.wide     .news-title { font-size: 24px; }
.news-excerpt {
  color: var(--ink-dim); font-size: 14px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.news-arrow {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ink);
  transition: transform var(--tr-fast), color var(--tr-fast);
}
.news-arrow svg { width: 12px; height: 12px; }

.news-empty {
  grid-column: span 12; padding: 64px; border: 1px dashed var(--line-2);
  text-align: center; color: var(--ink-dim);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .15em;
}
.news-skeleton {
  grid-column: span 4; aspect-ratio: 4/5; background: var(--bg-2);
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.news-skeleton::after {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.04), transparent);
  animation: shimmer 1.6s linear infinite;
}
@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ── PODCAST BLOCKS ─────────────────────────────────────────── */

.podcasts {
  display: flex; flex-direction: column; gap: 72px;
}
.podcast-block {
  border-top: 1px solid var(--line);
  padding-top: 36px;
}
.podcast-block:first-child { border-top: 0; padding-top: 0; }

.podcast-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.podcast-num {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .25em;
  color: var(--accent); text-transform: uppercase; margin-bottom: 8px;
}
.podcast-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -.02em;
  line-height: 1; text-transform: uppercase;
  color: var(--ink);
}
.podcast-tagline {
  margin-top: 12px; max-width: 540px;
  color: var(--ink-dim); font-size: 15px;
}
.podcast-all {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line-2);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background var(--tr-fast), border-color var(--tr-fast), color var(--tr-fast), transform var(--tr-fast);
}
.podcast-all svg { width: 12px; height: 12px; }
.podcast-all:hover {
  background: var(--accent); border-color: var(--accent); color: var(--bg);
  transform: translateY(-2px);
}

.section-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line-2);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink);
  transition: background var(--tr-fast), border-color var(--tr-fast), color var(--tr-fast), transform var(--tr-fast);
  white-space: nowrap;
}
.section-link svg { width: 12px; height: 12px; }
.section-link:hover {
  background: var(--accent); border-color: var(--accent); color: var(--bg);
  transform: translateY(-2px);
}

/* ── PODCAST GRID ────────────────────────────────────────────── */

.podcast-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}

/* Sakrivene epizode iznad "Pokaži više" linije */
.podcast-hidden {
  display: none;
}
.podcast-block.expanded .podcast-hidden {
  display: block;
  animation: revealCard .55s cubic-bezier(.2,.7,.2,1) both;
}
/* Kartice unutar expanded sekcije ne ovise o IO observeru */
.podcast-block.expanded .podcast-hidden .podcast-card {
  opacity: 1;
  transform: none;
  transition: none;
}
.podcast-block.expanded .podcast-hidden:nth-child(3) { animation-delay: .04s; }
.podcast-block.expanded .podcast-hidden:nth-child(4) { animation-delay: .1s; }
.podcast-block.expanded .podcast-hidden:nth-child(5) { animation-delay: .16s; }
.podcast-block.expanded .podcast-hidden:nth-child(6) { animation-delay: .22s; }
.podcast-block.expanded .podcast-hidden:nth-child(7) { animation-delay: .28s; }
.podcast-block.expanded .podcast-hidden:nth-child(n+8) { animation-delay: .34s; }
@keyframes revealCard {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Toggle button "Pokaži još N / Sažmi" */
.podcast-toggle {
  margin-top: 28px;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; cursor: pointer;
  transition: background var(--tr-fast), border-color var(--tr-fast), color var(--tr-fast), transform var(--tr-fast);
}
.podcast-toggle svg {
  width: 14px; height: 14px;
  transition: transform var(--tr);
}
.podcast-toggle:hover {
  background: var(--accent); border-color: var(--accent); color: var(--bg);
  transform: translateY(-2px);
}
.podcast-block.expanded .podcast-toggle svg {
  transform: rotate(180deg);
}

.podcast-card {
  position: relative;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  transition: transform var(--tr), border-color var(--tr-fast);
  cursor: pointer;
  opacity: 0; transform: translateY(30px);
}
.podcast-card.in-view { opacity: 1; transform: translateY(0); transition: opacity var(--tr-slow), transform var(--tr-slow), border-color var(--tr-fast); }
.podcast-card:nth-child(2) { transition-delay: .1s; }
.podcast-card:nth-child(3) { transition-delay: .18s; }
.podcast-card:hover { border-color: var(--line-2); }
.podcast-card:hover .podcast-thumb img { transform: scale(1.06); }
.podcast-card:hover .podcast-play { transform: scale(1.1); background: var(--accent); color: var(--bg); }

.podcast-thumb {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  background: linear-gradient(135deg, #1a1a22, #0d0d14);
}
.podcast-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.podcast-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,7,11,.65), transparent 50%);
  pointer-events: none;
}
.podcast-play {
  position: absolute; bottom: 14px; right: 14px; z-index: 2;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(7,7,11,.7);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  color: var(--ink);
  transition: transform var(--tr-fast), background var(--tr-fast), color var(--tr-fast);
}
.podcast-play svg { width: 18px; height: 18px; }

.podcast-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.podcast-meta {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .22em;
  color: var(--ink-dim); text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.podcast-meta::before {
  content: ''; width: 18px; height: 1px; background: var(--accent);
}
.podcast-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: 18px; line-height: 1.25; letter-spacing: -.01em;
  color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.podcast-excerpt {
  color: var(--ink-dim); font-size: 13px;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}

.podcast-empty {
  grid-column: span 12;
  padding: 80px 40px;
  border: 1px dashed var(--line-2);
  text-align: center;
  display: flex; flex-direction: column; gap: 16px; align-items: center;
}
.podcast-empty .icon {
  width: 56px; height: 56px; display: grid; place-items: center;
  border: 1px solid var(--line-2); border-radius: 50%;
  color: var(--accent);
}
.podcast-empty h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 22px;
  color: var(--ink);
}
.podcast-empty p {
  color: var(--ink-dim); font-size: 14px; max-width: 480px;
}

/* Modal lightbox za video */
.video-modal {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(7,7,11,.88);
  backdrop-filter: blur(12px);
  display: none; align-items: center; justify-content: center;
  padding: 32px;
  animation: fadeIn .3s ease;
}
.video-modal.open { display: flex; }
.video-modal-inner {
  position: relative; width: 100%; max-width: 1100px;
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid var(--line-2);
  animation: zoomIn .35s cubic-bezier(.2,.7,.2,1);
}
.video-modal-inner iframe { width: 100%; height: 100%; border: 0; }
.video-modal-close {
  position: absolute; top: -42px; right: 0;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  color: var(--ink);
  background: transparent; border: 1px solid var(--line-2);
  transition: background var(--tr-fast), color var(--tr-fast);
}
.video-modal-close:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.video-modal-close svg { width: 16px; height: 16px; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes zoomIn { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }

/* ── SOCIAL LINKS ────────────────────────────────────────────── */

.socials {
  display: flex; align-items: center; gap: 14px; margin-top: 28px; flex-wrap: wrap;
}
.socials-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .25em;
  text-transform: uppercase; color: var(--ink-dim);
  margin-right: 6px;
}
.social {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border: 1px solid var(--line-2);
  color: var(--ink-dim);
  transition: color var(--tr-fast), border-color var(--tr-fast), background var(--tr-fast), transform var(--tr-fast);
}
.social svg { width: 16px; height: 16px; }
.social:hover {
  color: var(--bg); background: var(--accent); border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-socials {
  display: inline-flex; gap: 14px; align-items: center;
}
.footer-socials a {
  display: grid; place-items: center;
  width: 32px; height: 32px;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  transition: color var(--tr-fast), border-color var(--tr-fast), transform var(--tr-fast);
}
.footer-socials a:hover {
  color: var(--accent); border-color: var(--accent); transform: translateY(-2px);
}

/* ── ON AIR / SHOWS ──────────────────────────────────────────── */

.shows {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 0;
  border-top: 1px solid var(--line);
}
.show {
  position: relative; grid-column: span 4;
  padding: 36px 28px; border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
  transition: background var(--tr-fast);
  overflow: hidden;
}
.show::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at top left, rgba(26,159,212,.15), transparent 60%);
  opacity: 0; transition: opacity var(--tr);
}
.show:hover { background: var(--bg-2); }
.show:hover::before { opacity: 1; }

.show-num {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .25em;
  color: var(--accent); text-transform: uppercase;
}
.show-time {
  font-family: var(--font-display); font-weight: 700;
  font-size: 36px; letter-spacing: -.02em;
}
.show-name {
  font-family: var(--font-display); font-size: 22px;
  font-weight: 500; line-height: 1.2;
}
.show-desc {
  color: var(--ink-dim); font-size: 14px;
}
.show-host {
  margin-top: auto; padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ink-dim);
}
.show.live {
  background: var(--accent); color: var(--bg);
}
.show.live::before { display: none; }
.show.live .show-num,
.show.live .show-host { color: rgba(7,7,11,.7); }
.show.live .show-host { border-color: rgba(7,7,11,.18); }

/* ── ABOUT / STATS ───────────────────────────────────────────── */

.about {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px;
  align-items: center;
}
.about-text p {
  font-size: 18px; color: var(--ink-dim); margin-bottom: 20px;
}
.about-text p strong { color: var(--ink); font-weight: 500; }

.stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat {
  background: var(--bg);
  padding: 36px 28px;
  position: relative;
  transition: background var(--tr-fast);
}
.stat:hover { background: var(--bg-2); }
.stat-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 64px; line-height: 1; letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--ink), var(--accent));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ink-dim);
  margin-top: 14px;
}

/* ── CONTACT ─────────────────────────────────────────────────── */

.contact {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 80px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px;
  align-items: center;
}
.contact h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 5vw, 64px); line-height: 1; letter-spacing: -.03em;
  text-transform: uppercase; margin-bottom: 24px;
}
.contact p { color: var(--ink-dim); font-size: 16px; margin-bottom: 12px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.contact-list li {
  padding-bottom: 18px; border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
}
.contact-list small {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent);
}
.contact-list b { font-weight: 500; font-size: 16px; color: var(--ink); }

/* ── FOOTER ──────────────────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--line);
  padding: 40px 36px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ink-dim);
  flex-wrap: wrap; gap: 20px;
  max-width: 1400px; margin: 0 auto;
}

/* ── STICKY PLAYER ───────────────────────────────────────────── */

.player {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  background: rgba(7,7,11,0.85);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-top: 1px solid var(--line-2);
  padding: 14px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  height: 88px;
  transform: translateY(0);
  transition: transform var(--tr);
}
.player-status {
  display: flex; align-items: center; gap: 14px;
}
.player-art {
  width: 56px; height: 56px; flex-shrink: 0; position: relative;
  background: linear-gradient(135deg, var(--accent), var(--violet));
  display: grid; place-items: center;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 78% 100%, 0 100%);
}
.player-art::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,.3));
}
.player-art svg { width: 22px; height: 22px; fill: var(--ink); position: relative; z-index: 1; }

.player-info {
  display: flex; flex-direction: column; gap: 4px; min-width: 0;
}
.player-now {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: .25em;
  color: var(--accent); text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
}
.player-listeners {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 2px 8px;
  border: 1px solid rgba(26,159,212,0.32);
  color: var(--accent);
  font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em;
  border-radius: 999px;
  transition: opacity var(--tr-fast), transform var(--tr-fast);
}
.player-listeners[hidden] { display: none; }
.player-listeners.bump { animation: bump .35s ease-out; }
@keyframes bump {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.14); }
  100% { transform: scale(1); }
}
.player-title {
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.player-wave {
  display: flex; align-items: center; gap: 3px;
  height: 30px; overflow: hidden;
}
.player-wave span {
  display: block; width: 3px; background: var(--ink-dim);
  border-radius: 2px;
  animation: wave 1.4s ease-in-out infinite;
}
.player-wave.paused span { animation-play-state: paused; height: 30% !important; background: var(--ink-dim); }
.player-wave.playing span { background: var(--accent); }
@keyframes wave {
  0%, 100% { height: 20%; }
  50%      { height: 100%; }
}

.player-controls {
  display: flex; align-items: center; gap: 16px;
}
.play-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
  transition: transform var(--tr-fast), box-shadow var(--tr-fast), background var(--tr-fast);
  box-shadow: 0 0 0 0 rgba(26,159,212,.5);
}
.play-btn:hover { transform: scale(1.08); box-shadow: 0 0 0 8px rgba(26,159,212,.18); }
.play-btn svg { width: 18px; height: 18px; fill: var(--bg); }
.play-btn.loading { background: var(--ink-dim); }
.play-btn.loading svg { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.volume {
  display: flex; align-items: center; gap: 10px;
}
.volume svg { width: 16px; height: 16px; fill: var(--ink-dim); }
.volume input[type=range] {
  -webkit-appearance: none; appearance: none;
  width: 100px; height: 3px; background: var(--line-2); outline: none;
  border-radius: 2px;
}
.volume input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 14px; height: 14px; border-radius: 50%; background: var(--accent);
  cursor: pointer; transition: transform var(--tr-fast);
}
.volume input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.2); }
.volume input[type=range]::-moz-range-thumb {
  width: 14px; height: 14px; border-radius: 50%; background: var(--accent);
  border: 0; cursor: pointer;
}

/* ── REVEAL ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity var(--tr-slow), transform var(--tr-slow);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .news-card                { grid-column: span 6; }
  .news-card.featured       { grid-column: span 12; grid-row: span 1; }
  .news-card.wide           { grid-column: span 12; }
  .podcast-grid             { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .show                     { grid-column: span 6; }
  .about                    { grid-template-columns: 1fr; gap: 40px; }
  .contact                  { grid-template-columns: 1fr; padding: 50px; gap: 30px; }
}

@media (max-width: 640px), (pointer: coarse) and (max-width: 820px) {
  /* ═══ APP-LIKE MOBILE LAYOUT ═══ */
  body {
    padding-bottom: calc(140px + env(safe-area-inset-bottom, 0px));
    background: var(--bg);
  }
  /* nema cursor blob na touchu */
  .cursor-blob { display: none; }

  /* sakrij desktop nav */
  .nav { display: none; }

  /* ── MOBILE TOP BAR (status-bar style) ──────────── */
  .mobile-top {
    display: flex; align-items: center; justify-content: space-between;
    position: fixed; top: 0; left: 0; right: 0; z-index: 800;
    padding: calc(env(safe-area-inset-top, 0px) + 10px) 18px 10px;
    background: rgba(7,7,11,0.78);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-bottom: 1px solid var(--line);
    min-height: 60px;
  }
  .mobile-top .brand-name { font-size: 12px; letter-spacing: .12em; }
  .mobile-top .brand-sub  { font-size: 8px; }
  .mobile-top .brand-mark { width: 32px; height: 32px; }
  .mobile-top-live {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 11px;
    border: 1px solid rgba(26,159,212,.35);
    color: var(--accent);
    font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em;
    text-transform: uppercase;
    border-radius: 999px;
  }

  /* ── HERO ───────────────────────────────────────── */
  .hero {
    padding: 90px 20px 40px;
    min-height: calc(100vh - 60px);
  }
  .hero-side { display: none; }
  .hero-title { font-size: clamp(54px, 14vw, 92px); }
  .hero-desc  { font-size: 16px; margin-bottom: 32px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; justify-content: center; }

  .ticker-content { font-size: 14px; gap: 40px; }
  .ticker-label   { padding: 0 14px; font-size: 10px; }

  /* ── SECTIONS — card-like, more breathing room ──── */
  .section { padding: 60px 18px; }
  .section-head { margin-bottom: 32px; }
  .section-title { font-size: clamp(36px, 9vw, 56px); }
  .section-num { font-size: 10px; }
  .section-desc { font-size: 14px; }

  .news-controls { gap: 6px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; margin-bottom: 24px; scrollbar-width: none; }
  .news-controls::-webkit-scrollbar { display: none; }
  .news-controls button { padding: 9px 14px; font-size: 10px; white-space: nowrap; flex-shrink: 0; }

  .news-grid { gap: 16px; }
  .news-card, .news-card.featured, .news-card.wide { grid-column: span 12; }
  .news-card { border-radius: 14px; overflow: hidden; }
  .news-card.featured .news-title { font-size: 22px; }
  .news-card.featured .news-body  { padding: 22px; }
  .news-card .news-body { padding: 18px; }
  .news-thumb { aspect-ratio: 16/10; }

  .podcast-grid  { grid-template-columns: 1fr; }
  .podcast-body  { padding: 18px; }
  .podcast-title { font-size: 17px; }
  .video-modal   { padding: 16px; }

  .show, .stat { grid-column: span 12; }
  .show { border-right: 0; padding: 28px 22px; }
  .show-time { font-size: 28px; }
  .show-name { font-size: 19px; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 26px 20px; }
  .stat-num { font-size: 44px; }
  .stat-label { font-size: 9px; }

  .about { gap: 32px; }
  .about-text p { font-size: 16px; }

  .contact { padding: 32px 22px; border-radius: 18px; gap: 24px; }
  .contact h2 { font-size: 36px; }

  .footer { flex-direction: column; gap: 10px; text-align: center; padding: 24px 20px; font-size: 9px; }

  /* ── PLAYER (mini, above tab bar) ───────────────── */
  .player {
    grid-template-columns: auto 1fr auto;
    padding: 8px 14px;
    gap: 12px;
    height: 64px;
    bottom: calc(74px + env(safe-area-inset-bottom, 0px));
    border-bottom: 1px solid var(--line);
    background: rgba(13,13,20,0.92);
  }
  .player-art { width: 44px; height: 44px; }
  .player-art svg { width: 18px; height: 18px; }
  .player-now { font-size: 8px; }
  .player-title { font-size: 12px; max-width: 50vw; }
  .player-wave { display: none; }
  .play-btn { width: 44px; height: 44px; }
  .play-btn svg { width: 16px; height: 16px; }
  .volume { display: none; }

  /* ── BOTTOM TAB BAR ─────────────────────────────── */
  .tabbar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 901;
    background: rgba(7,7,11,0.94);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    border-top: 1px solid var(--line-2);
    padding: 6px 4px calc(env(safe-area-inset-bottom, 0px) + 6px);
    height: calc(74px + env(safe-area-inset-bottom, 0px));
  }
  .tab {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 4px;
    color: var(--ink-dim);
    font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em;
    text-transform: uppercase;
    background: transparent; border: 0; padding: 4px;
    transition: color var(--tr-fast), transform var(--tr-fast);
    text-decoration: none;
    position: relative;
  }
  .tab svg { width: 22px; height: 22px; transition: transform var(--tr-fast); }
  .tab:active { transform: scale(.92); }
  .tab.active { color: var(--accent); }
  .tab.active::before {
    content:''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 22px; height: 2px; background: var(--accent);
    border-radius: 2px;
  }

  /* central LIVE play button — pops out */
  .tab-play {
    cursor: pointer;
  }
  .tab-play-circle {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--accent);
    display: grid; place-items: center;
    color: var(--bg);
    box-shadow: 0 6px 22px rgba(26,159,212,.45), 0 0 0 4px var(--bg);
    margin-top: -22px;
    transition: transform var(--tr-fast), box-shadow var(--tr-fast);
  }
  .tab-play-circle svg { width: 20px; height: 20px; }
  .tab-play:active .tab-play-circle { transform: scale(.94); }
  .tab-play.playing .tab-play-circle {
    background: var(--ink);
    color: var(--bg);
    box-shadow: 0 0 0 4px var(--bg), 0 0 0 6px rgba(26,159,212,.35);
  }
  .tab-play.loading .tab-play-circle .loading-icon { animation: spin 1s linear infinite; }
  .tab-play span:not(.tab-play-circle) { color: var(--accent); font-weight: 600; }
}

/* very small phones */
@media (max-width: 380px) {
  .mobile-top .brand-name { font-size: 11px; }
  .mobile-top-live span:last-child { display: none; }
  .hero-title { font-size: clamp(44px, 13vw, 72px); }
  .tab span { font-size: 8px; }
  .tab svg { width: 20px; height: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .hero-title .row span, .reveal { transform: none !important; opacity: 1 !important; }
}
