:root {
  --side: 188px;
  --dock: 82px;
  --cyan: #20c3e3;
  --cyan-soft: rgba(32, 195, 227, .24);
  --ink: #020a10;
  --ink-2: #041019;
  --glass: rgba(4, 13, 20, .72);
  --glass-deep: rgba(2, 10, 16, .9);
  --line: rgba(214, 231, 238, .12);
  --soft-line: rgba(214, 231, 238, .075);
  --warm-line: rgba(222, 188, 132, .17);
  --serif: "Iowan Old Style", "Palatino Linotype", Georgia, "Times New Roman", serif;
}

.tv-home {
  margin: 0;
  padding: 0 0 var(--dock);
  overflow-x: hidden;
  color: #f6f2e9;
  background:
    radial-gradient(circle at 56% 8%, rgba(38, 77, 92, .12), transparent 34%),
    linear-gradient(180deg, #02090f 0%, #020b12 60%, #01070c 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}
.tv-home::selection { background: #1dbbda; color: #001117; }

/* Side rail: integrated into the scene instead of looking like a separate hard panel. */
.tv-sidebar {
  position:fixed;
  inset: 0 auto var(--dock) 0;
  width: var(--side);
  z-index: 90;
  display: flex;
  flex-direction: column;
  padding: 48px 18px 28px;
  background:
    radial-gradient(circle at 100% 34%, rgba(21, 85, 105, .13), transparent 34%),
    linear-gradient(180deg, rgba(2, 10, 16, .985), rgba(3, 14, 22, .965) 62%, rgba(2, 9, 14, .99));
  box-shadow: 22px 0 70px rgba(0, 0, 0, .22);
}
.tv-sidebar::after {
  content: "";
  position: absolute;
  inset: 0 -1px 0 auto;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(173, 211, 225, .14) 14%, rgba(173, 211, 225, .07) 72%, transparent 100%);
}
.side-brand {
  margin: 0 0 54px 14px;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: 1.28rem;
  letter-spacing: .035em;
  text-shadow: 0 4px 22px rgba(0, 0, 0, .28);
}
.side-brand span { color: var(--cyan); }
.side-nav { display: grid; gap: 7px; }
.side-nav a {
  position: relative;
  padding: 14px;
  color: #d9d5cc;
  font-size: .84rem;
  letter-spacing: .012em;
  transition: color .2s ease, background .2s ease, padding .2s ease;
}
.side-nav a::after {
  content: "";
  position: absolute;
  inset: 6px 8px 6px 0;
  z-index: -1;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(32, 195, 227, .075), transparent 82%);
  opacity: 0;
  transition: opacity .2s ease;
}
.side-nav a:hover { color: #fff; padding-left: 18px; }
.side-nav a:hover::after { opacity: 1; }
.side-nav a.active { color: #fff; }
.side-nav a.active::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  border-radius: 3px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(32, 195, 227, .78);
}
.side-signature {
  margin-top: auto;
  padding: 18px 14px;
  display: grid;
  gap: 6px;
  color: #7197a8;
  opacity: .78;
}
.side-signature .shore-line {
  width: 74px;
  height: 38px;
  background: linear-gradient(165deg, transparent 48%, rgba(32, 195, 227, .22) 49%, transparent 52%);
}
.side-signature strong { font-family: var(--serif); font-size: .82rem; letter-spacing: .12em; }
.side-signature small { color: #516e7b; font-size: .62rem; letter-spacing: .16em; }

.broadcast-shell {
  margin-left: var(--side);
  min-height: 100vh;
  background: transparent;
}
.broadcast-topbar {
  position: absolute;
  z-index: 40;
  left: calc(var(--side) + 48px);
  right: 38px;
  top: 0;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #dedbd3;
  font-size: .76rem;
}
.broadcast-topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .055) 18%, rgba(255, 255, 255, .035) 70%, transparent);
}
.now-status, .top-actions { display: flex; align-items: center; gap: 16px; }
.now-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(32, 195, 227, .95);
}
.now-status strong { font-size: .72rem; letter-spacing: .08em; }
.now-status span {
  padding: 7px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .075);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .035);
}
.now-status small { color: rgba(235, 231, 222, .72); font-size: .73rem; }
.top-actions a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  color: #dfdbd1;
  transition: color .2s ease, opacity .2s ease;
}
.top-actions a:first-child { position: relative; padding-right: 24px; }
.top-actions a:first-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.18), transparent);
}
.top-actions a:hover { color: var(--cyan); }

/* Hero receives a bottom fade so the next content layer visually grows out of the image. */
.hero-stage {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background-image: url('/assets/images/hero-ayvalik-sunset.webp');
  background-size: cover;
  background-position: center 48%;
  isolation: isolate;
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(2, 8, 13, .19) 0%, rgba(2, 8, 13, .035) 24%, rgba(2, 8, 13, .16) 54%, rgba(2, 8, 13, .68) 82%, #020a10 100%);
}
.hero-stage::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 170px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 54% 100%, rgba(9, 33, 44, .24), transparent 55%),
    linear-gradient(180deg, transparent 0%, rgba(2, 10, 16, .34) 38%, rgba(2, 10, 16, .92) 84%, #020a10 100%);
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 70% 29%, rgba(234, 164, 91, .08), transparent 24%),
    linear-gradient(90deg, rgba(2, 10, 16, .76) 0%, rgba(2, 10, 16, .47) 29%, rgba(2, 10, 16, .09) 61%, rgba(2, 10, 16, .28) 100%);
}
.hero-content {
  position: relative;
  z-index: 4;
  max-width: calc(100% - 334px);
  padding: 116px 36px 112px 50px;
}
.hero-copy { width: min(660px, 100%); }
.hero-copy h1 {
  margin: 0 0 25px;
  font-family: var(--serif);
  font-weight: 400;
  line-height: .93;
  letter-spacing: -.045em;
  text-wrap: balance;
  text-shadow: 0 8px 34px rgba(0, 0, 0, .35);
}
.hero-copy h1 span,
.hero-copy h1 em {
  display: block;
  color: #f3efe7;
  font-size: clamp(3.75rem, 5.15vw, 5.45rem);
}
.hero-copy h1 em { font-style: normal; }
.hero-play {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid rgba(83, 224, 248, .28);
  border-radius: 7px;
  color: #f7fbfc;
  background: linear-gradient(135deg, rgba(11, 128, 156, .96), rgba(13, 159, 190, .94));
  box-shadow: 0 18px 44px rgba(0, 111, 139, .23), inset 0 1px rgba(255,255,255,.14);
  font-size: .94rem;
  letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.hero-play:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 22px 50px rgba(0, 132, 162, .3); }
.hero-play b { font-size: 1.12rem; }

.hero-feature {
  position: relative;
  margin-top: 18px;
  width: min(530px, 100%);
  height: 145px;
  display: grid;
  grid-template-columns: 185px 1fr;
  overflow: hidden;
  border: 1px solid var(--warm-line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 95% 55%, rgba(164, 115, 57, .12), transparent 36%),
    linear-gradient(110deg, rgba(7, 15, 20, .78), rgba(4, 12, 18, .67));
  box-shadow: 0 26px 68px rgba(0, 0, 0, .35), inset 0 1px rgba(255,255,255,.035);
  backdrop-filter: blur(15px) saturate(1.12);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.hero-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,.035), transparent 28% 72%, rgba(32,195,227,.025));
}
.hero-feature:hover { transform: translateY(-3px); border-color: rgba(221, 190, 135, .28); box-shadow: 0 31px 76px rgba(0,0,0,.42); }
.hero-feature-image {
  position: relative;
  background: url('/assets/images/feature-kesfet.webp') center/cover no-repeat;
}
.hero-feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 64%, rgba(4,12,18,.88) 100%), linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.22));
}
.hero-feature-copy { position: relative; z-index: 2; display: flex; flex-direction: column; padding: 19px 22px 18px; }
.hero-feature-copy strong { font-family: var(--serif); font-size: 1.52rem; font-weight: 400; letter-spacing: .02em; }
.hero-feature-copy small { margin-top: 3px; color: #c9bfaf; }
.feature-line { display: block; width: 78%; height: 2px; margin: 16px 0 10px; background: linear-gradient(90deg, var(--cyan) 38%, rgba(255,255,255,.105) 38%); }
.hero-feature-copy b { color: #8db2c1; font-size: .68rem; letter-spacing: .1em; }

/* Right live panel floats above the hero, with rounded edges and no hard attachment to the section below. */
.world-panel {
  position:absolute;
  z-index: 12;
  right: 18px;
  top: 66px;
  width: 310px;
  bottom: 84px;
  padding: 20px 18px 14px;
  overflow: hidden;
  border: 1px solid rgba(195, 214, 223, .115);
  border-radius: 18px;
  background:
    radial-gradient(circle at 75% 15%, rgba(31, 170, 201, .055), transparent 30%),
    linear-gradient(180deg, rgba(5, 14, 22, .82), rgba(3, 11, 17, .91));
  box-shadow: -22px 18px 68px rgba(0, 0, 0, .28), inset 0 1px rgba(255,255,255,.035);
  backdrop-filter: blur(18px) saturate(1.08);
}
.world-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.025), transparent 25% 75%, rgba(32,195,227,.018));
}
.world-panel-head { position: relative; z-index: 2; padding-bottom: 9px; }
.world-kicker { display: block; margin-bottom: 3px; color: var(--cyan); font-size: .61rem; letter-spacing: .18em; }
.world-panel h2 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: 1.18rem; letter-spacing: .035em; }
.world-panel h2::after { content: ""; display: block; width: 31px; height: 2px; margin-top: 10px; border-radius: 4px; background: var(--cyan); box-shadow: 0 0 12px rgba(32,195,227,.28); }
.world-map {
  position: relative;
  z-index: 2;
  height: 138px;
  margin: 5px 0 5px;
  opacity: .8;
  border-radius: 11px;
  overflow: hidden;
  background-image: url('/assets/images/live-kameralar.webp');
  background-size: cover;
  background-position: center;
  filter: saturate(.45) brightness(.62) contrast(1.15);
  box-shadow: inset 0 -25px 35px rgba(2,10,16,.5);
}
.world-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 27% 55%, rgba(31,205,239,.9) 0 2px, transparent 4px),
    radial-gradient(circle at 52% 43%, rgba(31,205,239,.9) 0 2px, transparent 4px),
    radial-gradient(circle at 78% 60%, rgba(31,205,239,.9) 0 2px, transparent 4px),
    linear-gradient(180deg, rgba(4,17,26,.06), rgba(4,17,26,.22));
  box-shadow: inset 0 0 38px #04111a;
}
.world-links { position: relative; z-index: 2; display: grid; }
.world-links a {
  position: relative;
  min-height: 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  color: #eeeae3;
  font-size: .82rem;
  transition: background .2s ease, color .2s ease, padding .2s ease;
}
.world-links a::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.1), rgba(255,255,255,.035) 72%, transparent);
}
.world-links a:last-child::after { display: none; }
.world-links a:hover { padding-left: 13px; color: #fff; background: linear-gradient(90deg, rgba(32,195,227,.08), transparent 86%); }
.world-links b { color: #aabac1; font-size: 1.28rem; font-weight: 300; }

/* Content layer overlaps the hero fade, avoiding the old horizontal hard cut. */
.content-deck {
  position: relative;
  z-index: 16;
  margin-top: -78px;
  padding: 0 18px 70px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(10, 39, 51, .18), transparent 30%),
    linear-gradient(180deg, rgba(2,10,16,0) 0, rgba(2,10,16,.88) 82px, #020a10 150px, #020a10 100%);
}
.worlds-grid {
  position: relative;
  z-index: 18;
  display: grid;
  grid-template-columns: 1.03fr 1.13fr 1.36fr;
  gap: 12px;
  margin: 0;
  padding: 0 0 4px;
  filter: drop-shadow(0 20px 35px rgba(0,0,0,.24));
}
.world-card {
  position: relative;
  min-height: 160px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  border: 1px solid rgba(231, 213, 183, .13);
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 40px rgba(0,0,0,.18), inset 0 1px rgba(255,255,255,.025);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.world-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,9,13,.56), rgba(3,9,13,.12) 57%, rgba(3,9,13,.04) 72%),
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.31));
}
.world-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.035), transparent 30% 72%, rgba(32,195,227,.025));
  box-shadow: inset 0 -28px 42px rgba(2,10,16,.18);
}
.world-card > * { position: relative; z-index: 2; }
.world-card strong { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; line-height: 1.04; letter-spacing: .012em; text-shadow: 0 4px 18px rgba(0,0,0,.4); }
.world-card strong::after { content: ""; display: block; width: 29px; height: 2px; margin-top: 9px; border-radius: 3px; background: var(--cyan); box-shadow: 0 0 10px rgba(32,195,227,.23); }
.world-card span { margin-top: auto; color: rgba(255,255,255,.73); font-size: .72rem; opacity: 0; transform: translateY(6px); transition: opacity .2s ease, transform .2s ease; }
.world-card:hover { transform: translateY(-4px); border-color: rgba(96,210,232,.31); box-shadow: 0 25px 55px rgba(0,0,0,.28), 0 0 0 1px rgba(32,195,227,.035); }
.world-card:hover span { opacity: 1; transform: none; }
.world-kids { background-image: url('/assets/images/feature-cocuk.webp'); }
.world-discover { background-image: url('/assets/images/feature-kesfet.webp'); }
.world-food { background-image: url('/assets/images/feature-hamurdan.webp'); }

.latest-rail { padding: 13px 0 0; }
.rail-head { min-height: 40px; display: flex; align-items: center; justify-content: space-between; padding: 0 10px; }
.rail-head h2 { margin: 0; font-family: var(--serif); font-size: 1.04rem; font-weight: 400; letter-spacing: .025em; }
.rail-head h2::after { content: ""; display: block; width: 30px; height: 2px; margin-top: 7px; border-radius: 4px; background: var(--cyan); opacity: .92; }
.rail-head a { color: #3bd4ef; font-size: .7rem; letter-spacing: .04em; }
.video-rail { display: grid; grid-template-columns: repeat(6, minmax(150px, 1fr)); gap: 11px; padding: 2px 10px 18px; }
.video-card { min-width: 0; overflow: visible; border: 0; border-radius: 9px; background: transparent; box-shadow: none; }
.video-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; border: 1px solid rgba(255,255,255,.105); border-radius: 9px; background: linear-gradient(135deg,#091720,#061018); box-shadow: 0 12px 28px rgba(0,0,0,.16); }
.video-thumb::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 52%, rgba(1,7,11,.38)); }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .28s ease, filter .28s ease; }
.video-card:hover .video-thumb img { transform: scale(1.045); filter: saturate(1.05) brightness(1.02); }
.video-body { padding: 8px 2px 0; }
.video-body .eyebrow { display: none; }
.video-body h3 { margin: 0 0 2px; overflow: hidden; font-family: var(--serif); font-size: .87rem; font-weight: 400; text-overflow: ellipsis; white-space: nowrap; }
.video-meta { overflow: hidden; color: #718791; font-size: .62rem; text-overflow: ellipsis; white-space: nowrap; }
.rail-empty {
  grid-column: 1/-1;
  min-height: 106px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255,255,255,.065);
  border-radius: 12px;
  color: rgba(204,215,219,.7);
  font-size: .77rem;
  background:
    linear-gradient(110deg, rgba(255,255,255,.018), rgba(32,195,227,.025), rgba(255,255,255,.012)),
    repeating-linear-gradient(90deg, transparent 0 15.7%, rgba(255,255,255,.018) 15.8% 16.7%);
  box-shadow: inset 0 1px rgba(255,255,255,.025);
}
.about-strip { margin: 16px 10px 0; padding: 30px 22px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: center; background: linear-gradient(90deg, transparent, rgba(255,255,255,.012) 35%, transparent); }
.about-strip span { color: var(--cyan); font-size: .65rem; letter-spacing: .14em; }
.about-strip h2 { margin: .25rem 0 0; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.about-strip p { margin: 0; color: #8fa0a8; font-size: .86rem; }

.radio-dock {
  position:fixed;
  z-index: 120;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--dock);
  display: grid;
  grid-template-columns: 285px minmax(460px, 1fr) 240px 170px;
  align-items: center;
  background:
    radial-gradient(circle at 36% 0%, rgba(19, 83, 102, .08), transparent 35%),
    rgba(2, 10, 16, .955);
  box-shadow: 0 -18px 54px rgba(0,0,0,.34), inset 0 1px rgba(255,255,255,.025);
  backdrop-filter: blur(22px) saturate(1.06);
}
.radio-dock::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(198,217,226,.13) 15%, rgba(198,217,226,.08) 72%, transparent 100%); }
.radio-brand-block { position: relative; height: 100%; display: flex; align-items: center; gap: 14px; padding: 0 26px; }
.radio-brand-block::after { content: ""; position: absolute; right: 0; top: 16px; bottom: 16px; width: 1px; background: linear-gradient(180deg, transparent, rgba(255,255,255,.105), transparent); }
.mic-mark { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(210,180,127,.26); border-radius: 50%; color: #d6b67d; box-shadow: inset 0 0 18px rgba(210,180,127,.035); }
.radio-brand-block strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; letter-spacing: .05em; }
.radio-brand-block small { display: block; margin-top: 3px; color: #2cc9e5; font-size: .68rem; letter-spacing: .08em; }
.radio-brand-block small i { display: inline-block; width: 8px; height: 8px; margin-right: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 11px rgba(32,195,227,.8); }
.radio-track { display: grid; grid-template-columns: 60px 160px 1fr; align-items: center; gap: 14px; padding: 0 20px; }
.radio-cover { width: 58px; height: 58px; border-radius: 7px; background: url('/assets/images/feature-kesfet.webp') center/cover; box-shadow: 0 8px 20px rgba(0,0,0,.25); }
.radio-copy { min-width: 0; }
.radio-copy strong { display: block; overflow: hidden; font-family: var(--serif); font-size: 1rem; font-weight: 400; text-overflow: ellipsis; white-space: nowrap; }
.radio-copy small { color: #7f929b; font-size: .68rem; }
.radio-wave { height: 32px; display: flex; align-items: center; gap: 3px; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 5%, #000 94%, transparent); }
.radio-wave span { display: block; width: 2px; border-radius: 2px; background: #0fb6d5; box-shadow: 0 0 6px rgba(15,182,213,.35); }
.radio-wave span:nth-child(3n) { height: 28px; }
.radio-wave span:nth-child(3n+1) { height: 12px; }
.radio-wave span:nth-child(3n+2) { height: 20px; }
.radio-controls { position: relative; height: 100%; display: flex; align-items: center; justify-content: center; gap: 17px; }
.radio-controls::before, .radio-controls::after { content: ""; position: absolute; top: 16px; bottom: 16px; width: 1px; background: linear-gradient(180deg, transparent, rgba(255,255,255,.09), transparent); }
.radio-controls::before { left: 0; }.radio-controls::after { right: 0; }
.radio-controls button { border: 0; background: none; color: #bfc8cc; font-size: 1rem; }
.radio-controls .radio-play { width: 50px; height: 50px; border: 1px solid rgba(216,184,127,.46); border-radius: 50%; color: #fff; font-size: 1.1rem; box-shadow: 0 0 24px rgba(210,180,127,.035); }
.radio-volume { display: flex; align-items: center; gap: 11px; padding: 0 18px; color: #a9b7bd; }
.radio-volume > span { position: relative; width: 90px; height: 3px; border-radius: 4px; background: #29383f; }
.radio-volume > span i { position: absolute; inset: 0 40% 0 0; border-radius: inherit; background: #1bc1de; box-shadow: 0 0 8px rgba(27,193,222,.18); }

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

@media (max-width: 1180px) {
  :root { --side: 160px; }
  .hero-content { max-width: calc(100% - 292px); padding-left: 35px; }
  .world-panel { width: 270px; right: 12px; }
  .hero-copy h1 span, .hero-copy h1 em { font-size: 4rem; }
  .hero-feature { width: 450px; grid-template-columns: 155px 1fr; }
  .worlds-grid { grid-template-columns: 1fr 1fr 1fr; }
  .video-rail { grid-template-columns: repeat(3, 1fr); }
  .radio-dock { grid-template-columns: 230px 1fr 190px; }
  .radio-volume { display: none; }
}

@media(max-width:900px) {
  :root { --dock: 70px; }
  .tv-sidebar { width: 270px; bottom: var(--dock); transform: translateX(-100%); transition: transform .22s ease; }
  .tv-sidebar:has(.side-nav[data-open="true"]) { transform: translateX(0); }
  .side-nav[data-open="true"] { display: grid; }
  .mobile-menu-button { position: fixed; z-index: 110; top: 14px; left: 14px; width: 44px; height: 44px; display: block; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: rgba(3,13,20,.72); backdrop-filter: blur(12px); }
  .broadcast-shell { margin-left: 0; }
  .broadcast-topbar { left: 70px; right: 14px; height: 64px; }
  .now-status span, .now-status small, .top-actions span { display: none; }
  .hero-stage { min-height: 670px; }
  .hero-content { max-width: 100%; padding: 110px 22px 125px; }
  .hero-copy { width: min(620px, 100%); }
  .hero-copy h1 span, .hero-copy h1 em { font-size: clamp(3.2rem, 11vw, 5rem); }
  .world-panel { position: relative; right: auto; top: auto; bottom: auto; width: calc(100% - 32px); margin: -78px 16px 20px; border-radius: 16px; padding-bottom: 12px; }
  .world-map { height: 120px; }
  .world-links { grid-template-columns: 1fr 1fr; }
  .world-links a { min-height: 46px; }
  .content-deck { margin-top: -8px; padding: 0 12px 48px; background: #020a10; }
  .worlds-grid { display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 0; filter: none; }
  .world-card { min-width: 78vw; min-height: 190px; scroll-snap-align: start; }
  .video-rail { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .video-card { min-width: 58vw; scroll-snap-align: start; }
  .rail-empty { min-width: 100%; }
  .about-strip { grid-template-columns: 1fr; gap: 14px; padding: 24px 8px; }
  .radio-dock { grid-template-columns: 190px 1fr 140px; }
  .radio-track { grid-template-columns: 48px 1fr; }
  .radio-cover { width: 46px; height: 46px; }
  .radio-wave { display: none; }
  .radio-copy strong { font-size: .88rem; }
}

@media (max-width: 620px) {
  .broadcast-topbar { right: 8px; }
  .now-status strong { display: none; }
  .hero-stage { min-height: 635px; background-position: 62% center; }
  .hero-content { padding-top: 96px; }
  .hero-copy h1 { margin-bottom: 20px; }
  .hero-copy h1 span, .hero-copy h1 em { font-size: clamp(2.7rem, 13vw, 4rem); }
  .hero-feature { height: 124px; grid-template-columns: 120px 1fr; }
  .hero-feature-copy { padding: 14px; }
  .hero-feature-copy strong { font-size: 1.2rem; }
  .hero-feature-copy small { font-size: .68rem; }
  .feature-line { margin: 10px 0 7px; }
  .world-panel { margin-top: -54px; }
  .world-links { grid-template-columns: 1fr; }
  .worlds-grid { gap: 8px; }
  .world-card { min-width: 86vw; min-height: 176px; }
  .video-card { min-width: 76vw; }
  .radio-dock { grid-template-columns: 1fr 112px; }
  .radio-brand-block { padding: 0 14px; }
  .radio-brand-block::after { display: none; }
  .mic-mark { width: 38px; height: 38px; }
  .radio-track { display: none; }
  .radio-controls::after { display: none; }
  .radio-controls button:first-child { display: none; }
  .radio-brand-block strong { font-size: .95rem; }
  .about-strip { margin-inline: 0; }
  .side-signature { display: none; }
}

/* Ayvalık FM 55-channel show rail */
.radio-showcase {
  position: relative;
  margin: 20px 10px 0;
  padding: 28px 0 30px;
  overflow: hidden;
  border: 1px solid rgba(134, 205, 220, .11);
  border-radius: 24px;
  background:
    radial-gradient(circle at 96% 8%, rgba(32, 195, 227, .18), transparent 28%),
    radial-gradient(circle at 4% 100%, rgba(23, 65, 93, .3), transparent 35%),
    linear-gradient(112deg, rgba(4, 25, 42, .96) 0%, rgba(6, 64, 83, .91) 52%, rgba(9, 143, 153, .78) 100%);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .24), inset 0 1px rgba(255, 255, 255, .035);
  isolation: isolate;
}
.radio-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), transparent 30%),
    repeating-linear-gradient(120deg, transparent 0 52px, rgba(255,255,255,.012) 53px, transparent 54px);
  mask-image: linear-gradient(90deg, #000, rgba(0,0,0,.72), transparent 94%);
}
.radio-showcase-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 0 28px 18px;
}
.radio-showcase-kicker {
  display: block;
  margin-bottom: 5px;
  color: #5ee5f6;
  font-size: .62rem;
  letter-spacing: .18em;
}
.radio-showcase-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.48rem;
  font-weight: 400;
  letter-spacing: .035em;
}
.radio-showcase-head p {
  margin: 5px 0 0;
  color: rgba(232, 241, 242, .68);
  font-size: .75rem;
}
.radio-showcase-controls {
  display: flex;
  align-items: center;
  gap: 13px;
}
.radio-showcase-controls button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 50%;
  color: #f1f5f5;
  background: rgba(1, 10, 15, .28);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.radio-showcase-controls button:hover {
  transform: translateY(-2px);
  border-color: rgba(91, 226, 245, .45);
  background: rgba(4, 24, 32, .52);
}
.radio-showcase-controls > span { display: flex; gap: 6px; }
.radio-showcase-controls > span i {
  width: 16px;
  height: 3px;
  border-radius: 4px;
  background: rgba(255,255,255,.38);
}
.radio-showcase-controls > span i:first-child { background: #fff; }
.radio-channel-viewport {
  position: relative;
  overflow: hidden;
  padding: 0 28px;
}
.radio-channel-viewport::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  bottom: 0;
  width: 70px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(7, 108, 122, .72));
}
.radio-channel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, calc((100% - 60px) / 6));
  gap: 12px;
  overflow-x: auto;
  padding: 2px 42px 8px 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}
.radio-channel-track::-webkit-scrollbar { display: none; }
.radio-channel-card {
  --station-accent: var(--cyan);
  position: relative;
  min-width: 0;
  aspect-ratio: 1 / 1.02;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  color: #fff;
  background: #07151d;
  box-shadow: 0 18px 36px rgba(0,0,0,.22), inset 0 1px rgba(255,255,255,.055);
  cursor: pointer;
  isolation: isolate;
  transition: transform .23s ease, border-color .23s ease, box-shadow .23s ease;
}
.radio-channel-card img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.87) brightness(.72) contrast(1.05);
  transform: scale(1.015);
  transition: transform .36s ease, filter .36s ease;
}
.radio-channel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(1,7,11,.05) 18%, rgba(1,7,11,.18) 44%, rgba(1,7,11,.9) 100%),
    linear-gradient(135deg, color-mix(in srgb, var(--station-accent) 22%, transparent), transparent 54%);
}
.radio-channel-card::after {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 14px;
  height: 2px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--station-accent) 0 34%, rgba(255,255,255,.16) 34% 100%);
  box-shadow: 0 0 14px color-mix(in srgb, var(--station-accent) 34%, transparent);
}
.radio-channel-copy {
  position: absolute;
  inset: auto 18px 24px;
  display: grid;
  gap: 2px;
  text-align: left;
}
.radio-channel-copy .station-prefix {
  color: rgba(255,255,255,.78);
  font-family: var(--serif);
  font-size: .86rem;
  letter-spacing: .1em;
}
.radio-channel-copy strong {
  max-width: 100%;
  overflow: hidden;
  font-size: clamp(1.12rem, 1.45vw, 1.55rem);
  line-height: .98;
  letter-spacing: -.018em;
  text-overflow: ellipsis;
  text-shadow: 0 5px 16px rgba(0,0,0,.55);
}
.radio-channel-copy small {
  margin-top: 7px;
  color: #80e9f6;
  font-size: .61rem;
  letter-spacing: .11em;
}
.radio-channel-copy small::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  vertical-align: 1px;
  background: var(--station-accent);
  box-shadow: 0 0 10px var(--station-accent);
}
.radio-channel-card:hover,
.radio-channel-card[aria-pressed="true"] {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--station-accent) 52%, white 10%);
  box-shadow: 0 25px 48px rgba(0,0,0,.32), 0 0 0 1px color-mix(in srgb, var(--station-accent) 17%, transparent);
}
.radio-channel-card:hover img,
.radio-channel-card[aria-pressed="true"] img {
  transform: scale(1.07);
  filter: saturate(1.03) brightness(.8) contrast(1.04);
}
.radio-channel-card[aria-pressed="true"]::after { background: var(--station-accent); }

@media (max-width: 1180px) {
  .radio-channel-track { grid-auto-columns: minmax(190px, calc((100% - 36px) / 4)); }
}

@media (max-width: 900px) {
  .radio-showcase { margin-inline: 0; border-radius: 19px; }
  .radio-showcase-head { padding-inline: 18px; }
  .radio-channel-viewport { padding-inline: 18px; }
  .radio-channel-track { grid-auto-columns: minmax(180px, 42vw); }
}

@media (max-width: 620px) {
  .radio-showcase { padding-top: 22px; }
  .radio-showcase-head { align-items: center; }
  .radio-showcase-head h2 { font-size: 1.25rem; }
  .radio-showcase-head p { max-width: 210px; line-height: 1.35; }
  .radio-showcase-controls > span { display: none; }
  .radio-channel-track { grid-auto-columns: 72vw; gap: 10px; }
  .radio-channel-copy strong { font-size: 1.35rem; }
}

/* v6 — Halo navigation + layered card motion */
.halo-menu a {
  --halo-x: 50%;
  --halo-y: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 13px;
}
.halo-menu a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--halo-x) var(--halo-y), rgba(73, 226, 248, .24) 0, rgba(32, 195, 227, .10) 20%, transparent 54%),
    linear-gradient(90deg, rgba(255,255,255,.035), rgba(255,255,255,.008));
  box-shadow: inset 0 1px rgba(255,255,255,.055), inset 0 0 28px rgba(32,195,227,.025);
  opacity: 0;
  transform: scale(.96);
  transition: opacity .22s ease, transform .22s ease;
}
.halo-menu a:hover::before,
.halo-menu a:focus-visible::before,
.halo-menu a.active::before {
  opacity: 1;
  transform: scale(1);
}

.side-nav { gap: 9px; }
.side-nav a {
  padding: 14px 15px;
  transition: color .22s ease, transform .22s ease, text-shadow .22s ease;
}
.side-nav a:hover {
  padding-left: 15px;
  color: #fff;
  transform: translateX(4px);
  text-shadow: 0 0 18px rgba(203,244,251,.16);
}
.side-nav a::after {
  content: "";
  position: absolute;
  left: -13px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: transparent;
  transform: translateY(-50%) scale(.55);
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease, background .22s ease, box-shadow .22s ease;
}
.side-nav a.active::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  background: #5deaff;
  box-shadow:
    0 0 0 6px rgba(32,195,227,.10),
    0 0 18px rgba(32,195,227,.88),
    0 0 34px rgba(32,195,227,.32);
}
.side-nav a.active { text-shadow: 0 0 20px rgba(226,250,255,.12); }

.world-links { gap: 3px; }
.world-links a {
  --halo-x: 18%;
  min-height: 46px;
  margin: 0 1px;
  padding: 0 10px;
  border: 1px solid transparent;
  transition: color .22s ease, transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.world-links a::after {
  left: 10px;
  right: 10px;
  background: linear-gradient(90deg, rgba(255,255,255,.075), rgba(255,255,255,.018) 74%, transparent);
}
.world-links a:hover {
  padding-left: 10px;
  color: #fff;
  transform: translateX(-3px);
  border-color: rgba(76,220,241,.11);
  box-shadow: 0 10px 26px rgba(0,0,0,.16), inset 0 0 22px rgba(32,195,227,.025);
  background: transparent;
}
.world-links a:hover::before,
.world-links a:focus-visible::before { opacity: 1; transform: scale(1); }
.world-links a:hover b { color: #67e3f5; text-shadow: 0 0 13px rgba(32,195,227,.5); }
.world-links b { transition: color .22s ease, text-shadow .22s ease, transform .22s ease; }

.world-card {
  --halo-x: 50%;
  --halo-y: 50%;
  --card-lift: -7px;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.14));
  transform: translateZ(0);
  will-change: transform;
  transition: transform .28s cubic-bezier(.2,.72,.2,1), border-color .28s ease, box-shadow .28s ease, filter .28s ease;
}
.world-card::after {
  background:
    radial-gradient(circle at var(--halo-x) var(--halo-y), rgba(63,220,245,.16) 0, rgba(32,195,227,.055) 18%, transparent 43%),
    linear-gradient(135deg, rgba(255,255,255,.045), transparent 30% 72%, rgba(32,195,227,.028));
  box-shadow: inset 0 -30px 44px rgba(2,10,16,.2), inset 0 1px rgba(255,255,255,.045);
  opacity: .58;
  transition: opacity .28s ease;
}
.world-card:hover {
  transform: translateY(var(--card-lift)) scale(1.012);
  border-color: rgba(98,223,243,.32);
  box-shadow: 0 30px 68px rgba(0,0,0,.34), 0 0 0 1px rgba(47,208,234,.055), 0 0 38px rgba(32,195,227,.07);
  filter: drop-shadow(0 22px 34px rgba(0,0,0,.22));
}
.world-card:hover::after { opacity: 1; }
.world-card:hover strong { text-shadow: 0 5px 22px rgba(0,0,0,.52), 0 0 18px rgba(224,250,255,.08); }

.radio-channel-card {
  --halo-x: 50%;
  --halo-y: 38%;
  --card-lift: -8px;
  filter: drop-shadow(0 15px 24px rgba(0,0,0,.16));
  will-change: transform;
  transition: transform .3s cubic-bezier(.2,.72,.2,1), border-color .3s ease, box-shadow .3s ease, filter .3s ease;
}
.radio-channel-card::before {
  background:
    radial-gradient(circle at var(--halo-x) var(--halo-y), color-mix(in srgb, var(--station-accent) 38%, transparent) 0, color-mix(in srgb, var(--station-accent) 13%, transparent) 20%, transparent 48%),
    linear-gradient(180deg, rgba(1,7,11,.035) 18%, rgba(1,7,11,.18) 44%, rgba(1,7,11,.9) 100%),
    linear-gradient(135deg, color-mix(in srgb, var(--station-accent) 20%, transparent), transparent 58%);
  transition: opacity .28s ease;
}
.radio-channel-card:hover,
.radio-channel-card[aria-pressed="true"] {
  transform: translateY(var(--card-lift)) scale(1.018);
  border-color: color-mix(in srgb, var(--station-accent) 58%, white 12%);
  box-shadow:
    0 30px 58px rgba(0,0,0,.34),
    0 0 0 1px color-mix(in srgb, var(--station-accent) 19%, transparent),
    0 0 42px color-mix(in srgb, var(--station-accent) 13%, transparent),
    inset 0 1px rgba(255,255,255,.075);
  filter: drop-shadow(0 22px 35px rgba(0,0,0,.24));
}
.radio-channel-card:hover img,
.radio-channel-card[aria-pressed="true"] img {
  transform: scale(1.095) translateY(-1.5%);
  filter: saturate(1.08) brightness(.83) contrast(1.05);
}
.radio-channel-card[aria-pressed="true"] .radio-channel-copy strong {
  text-shadow: 0 5px 18px rgba(0,0,0,.58), 0 0 20px color-mix(in srgb, var(--station-accent) 30%, transparent);
}

@media (prefers-reduced-motion: reduce) {
  .halo-menu a,
  .halo-menu a::before,
  .world-card,
  .world-card::after,
  .radio-channel-card,
  .radio-channel-card img,
  .side-nav a,
  .side-nav a::after,
  .world-links a { transition: none !important; }
  .side-nav a:hover,
  .world-links a:hover,
  .world-card:hover,
  .radio-channel-card:hover,
  .radio-channel-card[aria-pressed="true"] { transform: none; }
}

@media (max-width: 900px) {
  .world-card { --card-lift: -3px; }
  .radio-channel-card { --card-lift: -3px; }
  .side-nav a:hover, .world-links a:hover { transform: none; }
}

/* Resolve legacy active-marker pseudo rules so the halo replaces the old hard line. */
.side-nav.halo-menu a { overflow: visible; }
.side-nav.halo-menu a::before {
  inset: 0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  border-radius: 13px;
  background:
    radial-gradient(circle at var(--halo-x) var(--halo-y), rgba(73,226,248,.24) 0, rgba(32,195,227,.10) 20%, transparent 54%),
    linear-gradient(90deg, rgba(255,255,255,.035), rgba(255,255,255,.008));
  box-shadow: inset 0 1px rgba(255,255,255,.055), inset 0 0 28px rgba(32,195,227,.025);
}
.side-nav.halo-menu a.active::before {
  inset: 0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  border-radius: 13px;
  background:
    radial-gradient(circle at 18% 50%, rgba(83,231,250,.28), rgba(32,195,227,.09) 24%, transparent 58%),
    linear-gradient(90deg, rgba(32,195,227,.08), transparent 86%);
  box-shadow: inset 0 1px rgba(255,255,255,.055), inset 0 0 30px rgba(32,195,227,.04);
}
.side-nav.halo-menu a::after { z-index: 3; }

/* v7 — restrained multicolor depth: sunset + violet + sea-green, still premium/dark */
:root {
  --sunset: #f29a62;
  --violet: #8b6ef0;
  --sea-green: #3dd5ad;
}

.tv-home { position: relative; isolation: isolate; }
.tv-home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 79% 16%, color-mix(in srgb, var(--sunset) 13%, transparent), transparent 26%),
    radial-gradient(circle at 22% 74%, color-mix(in srgb, var(--violet) 8%, transparent), transparent 30%),
    radial-gradient(circle at 74% 87%, color-mix(in srgb, var(--sea-green) 8%, transparent), transparent 30%);
  opacity: .78;
}
.broadcast-shell { position: relative; z-index: 1; }

.hero-shade {
  background:
    radial-gradient(circle at 72% 24%, rgba(242,154,98,.15), transparent 26%),
    radial-gradient(circle at 42% 66%, rgba(61,213,173,.035), transparent 28%),
    linear-gradient(90deg, rgba(2,10,16,.77) 0%, rgba(2,10,16,.46) 29%, rgba(2,10,16,.07) 61%, rgba(2,10,16,.27) 100%);
}

.hero-feature {
  border-color: rgba(242,154,98,.18);
  background:
    radial-gradient(circle at 96% 52%, rgba(242,154,98,.13), transparent 35%),
    radial-gradient(circle at 24% 112%, rgba(139,110,240,.055), transparent 38%),
    linear-gradient(110deg, rgba(7,15,20,.79), rgba(4,12,18,.68));
}

.world-panel {
  background:
    radial-gradient(circle at 78% 12%, rgba(32,195,227,.09), transparent 30%),
    radial-gradient(circle at 8% 86%, rgba(139,110,240,.055), transparent 32%),
    radial-gradient(circle at 100% 68%, rgba(61,213,173,.035), transparent 30%),
    linear-gradient(180deg, rgba(5,14,22,.82), rgba(3,11,17,.91));
}

.content-deck { position: relative; isolation: isolate; }
.content-deck::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -70px 0 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 13% 12%, rgba(139,110,240,.08), transparent 26%),
    radial-gradient(ellipse at 49% 5%, rgba(32,195,227,.075), transparent 28%),
    radial-gradient(ellipse at 88% 14%, rgba(242,154,98,.08), transparent 27%),
    radial-gradient(ellipse at 70% 77%, rgba(61,213,173,.04), transparent 28%);
  filter: blur(2px);
}

.world-kids { --world-accent: var(--violet); }
.world-discover { --world-accent: var(--sea-green); }
.world-food { --world-accent: var(--sunset); }
.world-card::after {
  background:
    radial-gradient(circle at var(--halo-x) var(--halo-y), color-mix(in srgb, var(--world-accent, var(--cyan)) 18%, transparent) 0, transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,.045), transparent 30% 72%, color-mix(in srgb, var(--world-accent, var(--cyan)) 8%, transparent));
}
.world-card strong::after {
  background: linear-gradient(90deg, var(--world-accent, var(--cyan)), color-mix(in srgb, var(--world-accent, var(--cyan)) 38%, white));
  box-shadow: 0 0 13px color-mix(in srgb, var(--world-accent, var(--cyan)) 34%, transparent);
}
.world-card:hover {
  border-color: color-mix(in srgb, var(--world-accent, var(--cyan)) 35%, rgba(255,255,255,.18));
  box-shadow:
    0 30px 68px rgba(0,0,0,.34),
    0 0 0 1px color-mix(in srgb, var(--world-accent, var(--cyan)) 8%, transparent),
    0 0 36px color-mix(in srgb, var(--world-accent, var(--cyan)) 8%, transparent);
}

.latest-rail { position: relative; isolation: isolate; }
.latest-rail::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 7px 0 0;
  pointer-events: none;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(139,110,240,.035), rgba(32,195,227,.025) 44%, rgba(242,154,98,.035) 100%);
  box-shadow: inset 0 1px rgba(255,255,255,.018);
}
.rail-head h2::after {
  background: linear-gradient(90deg, var(--violet), var(--cyan), var(--sea-green));
  box-shadow: 0 0 12px rgba(32,195,227,.18);
}
.video-thumb {
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 12px 30px rgba(0,0,0,.18), 0 0 0 1px rgba(32,195,227,.012);
}
.video-card:nth-child(3n+1):hover .video-thumb { box-shadow: 0 18px 38px rgba(0,0,0,.26), 0 0 28px rgba(139,110,240,.07); }
.video-card:nth-child(3n+2):hover .video-thumb { box-shadow: 0 18px 38px rgba(0,0,0,.26), 0 0 28px rgba(61,213,173,.07); }
.video-card:nth-child(3n):hover .video-thumb { box-shadow: 0 18px 38px rgba(0,0,0,.26), 0 0 28px rgba(242,154,98,.07); }

.radio-showcase {
  background:
    radial-gradient(circle at 94% 6%, rgba(32,195,227,.24), transparent 27%),
    radial-gradient(circle at 73% 118%, rgba(61,213,173,.14), transparent 31%),
    radial-gradient(circle at 18% 115%, rgba(139,110,240,.105), transparent 33%),
    radial-gradient(circle at 40% -12%, rgba(242,154,98,.075), transparent 28%),
    linear-gradient(112deg, rgba(4,25,42,.97) 0%, rgba(6,64,83,.93) 50%, rgba(9,143,153,.81) 100%);
}
.radio-showcase::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(139,110,240,.045) 32%, transparent 44%),
    linear-gradient(115deg, transparent 43%, rgba(61,213,173,.035) 58%, transparent 69%),
    linear-gradient(115deg, transparent 68%, rgba(242,154,98,.04) 82%, transparent 92%);
  opacity: .9;
}
.radio-showcase-kicker { color: #83eff8; text-shadow: 0 0 14px rgba(32,195,227,.16); }
.radio-showcase-head h2 { text-shadow: 0 7px 26px rgba(0,0,0,.25); }

.radio-dock {
  background:
    radial-gradient(circle at 27% 0%, rgba(139,110,240,.045), transparent 30%),
    radial-gradient(circle at 69% 0%, rgba(32,195,227,.06), transparent 28%),
    rgba(2,10,16,.955);
}

@media (max-width: 900px) {
  .tv-home::before { opacity: .5; }
  .content-deck::before { opacity: .72; }
}

/* v8 — visibly richer color hierarchy. Strong enough to read on real screens, still cinematic. */
:root {
  --color-wash-strong: .28;
  --color-wash-medium: .18;
}

.tv-home::before {
  background:
    radial-gradient(circle at 82% 11%, rgba(242,154,98,.24), transparent 29%),
    radial-gradient(circle at 17% 70%, rgba(139,110,240,.17), transparent 32%),
    radial-gradient(circle at 73% 82%, rgba(61,213,173,.16), transparent 32%),
    radial-gradient(circle at 48% 44%, rgba(32,195,227,.09), transparent 36%);
  opacity: .9;
}

.hero-shade {
  background:
    radial-gradient(circle at 76% 18%, rgba(242,154,98,.24), transparent 29%),
    radial-gradient(circle at 51% 72%, rgba(32,195,227,.075), transparent 34%),
    linear-gradient(90deg, rgba(2,10,16,.76) 0%, rgba(2,10,16,.43) 29%, rgba(2,10,16,.055) 61%, rgba(2,10,16,.23) 100%);
}

.hero-feature {
  border-color: rgba(242,154,98,.31);
  box-shadow:
    0 24px 60px rgba(0,0,0,.32),
    0 0 36px rgba(242,154,98,.09),
    inset 0 1px rgba(255,255,255,.05);
  background:
    radial-gradient(circle at 97% 43%, rgba(242,154,98,.22), transparent 38%),
    radial-gradient(circle at 18% 108%, rgba(139,110,240,.12), transparent 40%),
    linear-gradient(110deg, rgba(8,16,21,.86), rgba(4,12,18,.72));
}

.world-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 90% 8%, rgba(32,195,227,.21), transparent 31%),
    radial-gradient(circle at 3% 84%, rgba(139,110,240,.14), transparent 35%),
    linear-gradient(180deg, transparent 58%, rgba(61,213,173,.055));
  box-shadow:
    inset 0 0 0 1px rgba(71,217,236,.07),
    inset 0 -38px 70px rgba(15,110,119,.055);
}
.world-links { position: relative; z-index: 2; }

.content-deck::before {
  background:
    radial-gradient(ellipse at 12% 8%, rgba(139,110,240,.17), transparent 29%),
    radial-gradient(ellipse at 50% 3%, rgba(32,195,227,.14), transparent 31%),
    radial-gradient(ellipse at 89% 8%, rgba(242,154,98,.17), transparent 29%),
    radial-gradient(ellipse at 72% 71%, rgba(61,213,173,.105), transparent 31%);
  filter: blur(1px);
}
.content-deck::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  inset: 10px 12px 28px;
  border-radius: 24px;
  background:
    linear-gradient(105deg, rgba(139,110,240,.045), transparent 23% 41%, rgba(32,195,227,.035) 52%, transparent 65% 77%, rgba(242,154,98,.05)),
    radial-gradient(ellipse at 50% 0%, rgba(32,195,227,.08), transparent 46%);
}
.content-deck > * { position: relative; z-index: 2; }

.world-kids {
  --world-accent: var(--violet);
  border-color: rgba(139,110,240,.38);
  box-shadow: 0 20px 44px rgba(0,0,0,.22), 0 0 28px rgba(139,110,240,.11), inset 0 1px rgba(255,255,255,.04);
}
.world-discover {
  --world-accent: var(--sea-green);
  border-color: rgba(61,213,173,.34);
  box-shadow: 0 20px 44px rgba(0,0,0,.22), 0 0 28px rgba(61,213,173,.09), inset 0 1px rgba(255,255,255,.04);
}
.world-food {
  --world-accent: var(--sunset);
  border-color: rgba(242,154,98,.36);
  box-shadow: 0 20px 44px rgba(0,0,0,.22), 0 0 30px rgba(242,154,98,.1), inset 0 1px rgba(255,255,255,.04);
}
.world-kids::before {
  background:
    radial-gradient(circle at 15% 105%, rgba(139,110,240,.26), transparent 39%),
    linear-gradient(90deg, rgba(3,9,13,.53), rgba(3,9,13,.09) 61%, rgba(3,9,13,.025) 76%),
    linear-gradient(180deg, rgba(0,0,0,.01), rgba(0,0,0,.27));
}
.world-discover::before {
  background:
    radial-gradient(circle at 18% 110%, rgba(61,213,173,.22), transparent 40%),
    linear-gradient(90deg, rgba(3,9,13,.53), rgba(3,9,13,.09) 61%, rgba(3,9,13,.025) 76%),
    linear-gradient(180deg, rgba(0,0,0,.01), rgba(0,0,0,.27));
}
.world-food::before {
  background:
    radial-gradient(circle at 17% 110%, rgba(242,154,98,.25), transparent 40%),
    linear-gradient(90deg, rgba(3,9,13,.53), rgba(3,9,13,.09) 61%, rgba(3,9,13,.025) 76%),
    linear-gradient(180deg, rgba(0,0,0,.01), rgba(0,0,0,.27));
}
.world-card::after {
  background:
    radial-gradient(circle at var(--halo-x) var(--halo-y), color-mix(in srgb, var(--world-accent, var(--cyan)) 29%, transparent) 0, transparent 44%),
    linear-gradient(135deg, rgba(255,255,255,.055), transparent 30% 69%, color-mix(in srgb, var(--world-accent, var(--cyan)) 15%, transparent));
}

.latest-rail::before {
  background:
    linear-gradient(90deg, rgba(139,110,240,.10), rgba(32,195,227,.065) 45%, rgba(61,213,173,.065) 67%, rgba(242,154,98,.10));
  box-shadow: inset 0 1px rgba(255,255,255,.03), 0 18px 50px rgba(0,0,0,.1);
}
.latest-rail::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  inset: 32px 0 0;
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 8% 10%, rgba(139,110,240,.12), transparent 25%),
    radial-gradient(ellipse at 52% 20%, rgba(32,195,227,.075), transparent 29%),
    radial-gradient(ellipse at 94% 14%, rgba(242,154,98,.10), transparent 26%);
}
.rail-head h2 { color: #f7f1e8; text-shadow: 0 0 24px rgba(139,110,240,.12); }
.rail-head h2::after { height: 3px; width: 42px; }
.rail-head a { color: #65e6ef; text-shadow: 0 0 14px rgba(32,195,227,.18); }

.radio-dock {
  box-shadow: 0 -16px 50px rgba(0,0,0,.28), inset 0 1px rgba(87,219,235,.07);
}

@media (max-width: 900px) {
  .tv-home::before { opacity: .66; }
  .content-deck::before { opacity: .84; }
  .content-deck::after { opacity: .74; }
}

/* v9 — screenshot polish fixes */
/* The previous color pass was visually too banded in the transition zone. Keep the color, remove the stripe. */
.content-deck::before {
  inset: -26px 0 0;
  background:
    radial-gradient(ellipse at 14% 5%, rgba(139,110,240,.065), transparent 25%),
    radial-gradient(ellipse at 51% 2%, rgba(32,195,227,.055), transparent 28%),
    radial-gradient(ellipse at 88% 7%, rgba(242,154,98,.06), transparent 25%),
    radial-gradient(ellipse at 72% 74%, rgba(61,213,173,.04), transparent 28%);
  filter: none;
  opacity: .9;
}
.content-deck::after {
  inset: 18px 14px 30px;
  background:
    radial-gradient(ellipse at 52% 0%, rgba(32,195,227,.045), transparent 43%),
    linear-gradient(105deg, rgba(139,110,240,.018), transparent 28% 72%, rgba(242,154,98,.02));
  opacity: .72;
}

/* Keep the empty latest rail understated; it should not compete with real content. */
.latest-rail::before {
  background: linear-gradient(90deg, rgba(139,110,240,.035), rgba(32,195,227,.025) 46%, rgba(61,213,173,.022) 68%, rgba(242,154,98,.035));
  box-shadow: inset 0 1px rgba(255,255,255,.02);
}
.latest-rail::after { display: none; }
.rail-empty {
  min-height: 64px;
  margin: 3px 0 2px;
  border-color: rgba(255,255,255,.055);
  border-radius: 11px;
  color: rgba(198,211,216,.55);
  font-size: .7rem;
  background: linear-gradient(90deg, rgba(255,255,255,.012), rgba(32,195,227,.018), rgba(255,255,255,.01));
  box-shadow: inset 0 1px rgba(255,255,255,.018);
}

/* The station strip should read as a showcase, not as a wall of tiny thumbnails. */
.radio-channel-track {
  grid-auto-columns: 240px;
  gap: 14px;
  padding-right: 56px;
}
.radio-channel-card {
  aspect-ratio: 1 / 1.04;
  border-radius: 18px;
}
.radio-channel-copy { inset: auto 18px 25px; }
.radio-channel-copy strong { font-size: 1.36rem; }
.radio-channel-viewport::after { width: 54px; }

/* Keep the active nav marker inside the glass item instead of hanging outside the sidebar. */
.side-nav a { padding-left: 22px; }
.side-nav a:hover { padding-left: 22px; transform: translateX(2px); }
.side-nav a.active::after {
  left: 4px;
  width: 5px;
  height: 5px;
  box-shadow: 0 0 0 4px rgba(32,195,227,.07), 0 0 13px rgba(32,195,227,.72);
}

/* A little more breathing room between the color showcase and footer copy. */
.about-strip { margin-top: 24px; }

@media (max-width: 1180px) {
  .radio-channel-track { grid-auto-columns: 220px; }
}
@media (max-width: 900px) {
  .content-deck::before { opacity: .68; }
  .content-deck::after { opacity: .5; }
  .radio-channel-track { grid-auto-columns: minmax(190px, 58vw); }
  .side-nav a { padding-left: 20px; }
}
@media (max-width: 620px) {
  .radio-channel-track { grid-auto-columns: 76vw; }
}


/* v10 — radio card fit fix */
.radio-channel-viewport::after { display: none; }
.radio-channel-track {
  --radio-gap: 14px;
  grid-auto-columns: calc((100% - (var(--radio-gap) * 5)) / 6);
  gap: var(--radio-gap);
  padding-right: 0;
  scroll-padding-inline: 0;
}
.radio-channel-card {
  min-width: 0;
  scroll-snap-stop: always;
}
.radio-channel-copy {
  inset: auto 16px 23px;
  min-width: 0;
}
.radio-channel-copy strong {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-width: 100%;
  min-height: 2.05em;
  overflow: hidden;
  white-space: normal;
  text-overflow: clip;
  text-wrap: balance;
  overflow-wrap: normal;
  font-size: clamp(1.02rem, 1.15vw, 1.3rem);
  line-height: 1.02;
}

@media (max-width: 1180px) {
  .radio-channel-track {
    grid-auto-columns: calc((100% - (var(--radio-gap) * 3)) / 4);
  }
}

@media (max-width: 900px) {
  .radio-channel-track {
    --radio-gap: 12px;
    grid-auto-columns: calc((100% - (var(--radio-gap) * 2)) / 3);
  }
  .radio-channel-copy strong { font-size: 1.12rem; }
}

@media (max-width: 620px) {
  .radio-channel-track {
    --radio-gap: 10px;
    grid-auto-columns: calc((100% - var(--radio-gap)) / 2);
  }
  .radio-channel-copy { inset: auto 13px 20px; }
  .radio-channel-copy .station-prefix { font-size: .72rem; }
  .radio-channel-copy strong { font-size: 1rem; }
}

/* v11 — radio hover breathing room and live indicators */
.radio-channel-track {
  padding-top: 14px;
  padding-bottom: 14px;
}

/* A selected station keeps its glow, but it no longer remains physically lifted. */
.radio-channel-card[aria-pressed="true"] {
  transform: none;
  border-color: color-mix(in srgb, var(--station-accent) 58%, white 12%);
  box-shadow:
    0 22px 46px rgba(0,0,0,.3),
    0 0 0 1px color-mix(in srgb, var(--station-accent) 19%, transparent),
    0 0 34px color-mix(in srgb, var(--station-accent) 11%, transparent),
    inset 0 1px rgba(255,255,255,.075);
}
.radio-channel-card:hover {
  transform: translateY(-6px) scale(1.012);
  border-color: color-mix(in srgb, var(--station-accent) 62%, white 12%);
  box-shadow:
    0 30px 58px rgba(0,0,0,.34),
    0 0 0 1px color-mix(in srgb, var(--station-accent) 20%, transparent),
    0 0 42px color-mix(in srgb, var(--station-accent) 13%, transparent),
    inset 0 1px rgba(255,255,255,.075);
}
.radio-channel-card:hover[aria-pressed="true"] { transform: translateY(-6px) scale(1.012); }

/* Replace the decorative three lines with real beginning / middle / end controls. */
.radio-showcase-controls .radio-indicators {
  display: flex;
  align-items: center;
  gap: 7px;
}
.radio-showcase-controls .radio-indicators button {
  width: 18px;
  height: 4px;
  min-width: 18px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(224,244,247,.34);
  box-shadow: none;
  transform: none;
  backdrop-filter: none;
  transition: width .22s ease, background .22s ease, box-shadow .22s ease;
}
.radio-showcase-controls .radio-indicators button:hover {
  transform: none;
  border: 0;
  background: rgba(235,250,252,.58);
}
.radio-showcase-controls .radio-indicators button[aria-pressed="true"] {
  width: 28px;
  background: #fff;
  box-shadow: 0 0 12px rgba(255,255,255,.22), 0 0 18px rgba(32,195,227,.18);
}

@media (max-width: 620px) {
  .radio-channel-track { padding-top: 9px; padding-bottom: 9px; }
  .radio-channel-card:hover,
  .radio-channel-card:hover[aria-pressed="true"] { transform: none; }
}

/* v12 — compact radio wall, useful latest rail, and premium footer */
.video-rail {
  min-height: 190px;
  align-items: start;
  padding-bottom: 24px;
}
.rail-empty {
  min-height: 170px;
  border-radius: 15px;
  background:
    linear-gradient(110deg, rgba(255,255,255,.016), rgba(32,195,227,.022), rgba(255,255,255,.012)),
    repeating-linear-gradient(90deg, transparent 0 15.5%, rgba(255,255,255,.018) 15.6% 16.3%);
}

/* Eight compact station cards on wide desktop; radio stays a strip instead of dominating the page. */
.radio-channel-track {
  --radio-gap: 12px;
  grid-auto-columns: minmax(150px, calc((100% - 84px) / 8));
  gap: var(--radio-gap);
  padding-top: 12px;
  padding-bottom: 12px;
}
.radio-channel-card {
  aspect-ratio: .82 / 1;
  border-radius: 15px;
}
.radio-channel-copy { inset: auto 13px 19px; }
.radio-channel-copy .station-prefix { font-size: .69rem; letter-spacing: .085em; }
.radio-channel-copy strong {
  font-size: clamp(.9rem, .9vw, 1.08rem);
  min-height: 2em;
  line-height: 1;
}
.radio-channel-copy small { margin-top: 5px; font-size: .56rem; }
.radio-channel-card::after { left: 13px; right: 13px; bottom: 10px; }
.radio-showcase { padding-bottom: 20px; }
.radio-showcase-head { padding-bottom: 5px; }

.footer-discover {
  position: relative;
  margin: 30px 10px 0;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  border: 1px solid rgba(112,218,235,.08);
  border-radius: 15px;
  background: linear-gradient(90deg, rgba(7,24,34,.78), rgba(6,17,25,.55));
  box-shadow: inset 0 1px rgba(255,255,255,.025), 0 16px 40px rgba(0,0,0,.12);
  scrollbar-width: none;
}
.footer-discover::-webkit-scrollbar { display: none; }
.footer-discover-label {
  flex: 0 0 auto;
  margin-right: 7px;
  color: #69e0ef;
  font-size: .62rem;
  letter-spacing: .16em;
}
.footer-discover a {
  flex: 0 0 auto;
  padding: 10px 14px;
  color: #d9e0e2;
  font-size: .68rem;
  letter-spacing: .035em;
  border-radius: 11px;
}
.footer-discover a:hover { color: #fff; }

.site-footer {
  margin: 14px 10px 18px;
  padding: 24px 4px 12px;
  display: grid;
  grid-template-columns: minmax(190px,.7fr) 1.35fr .8fr;
  grid-template-areas:
    "brand primary secondary"
    "legal legal place";
  gap: 20px 34px;
  align-items: start;
  border-top: 1px solid rgba(191,215,224,.09);
  color: #8da0a8;
}
.footer-brand { grid-area: brand; }
.footer-brand > a {
  display: inline-block;
  color: #f1ece3;
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: .055em;
}
.footer-brand > a span { color: var(--cyan); }
.footer-brand small { display: block; margin-top: 7px; color: #6e8995; font-size: .58rem; letter-spacing: .12em; }
.footer-brand small i {
  display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 9px rgba(32,195,227,.65);
}
.footer-primary { grid-area: primary; display: flex; flex-wrap: wrap; gap: 9px 19px; }
.footer-secondary { grid-area: secondary; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px 16px; }
.footer-primary a, .footer-secondary a { color: #aebbc0; font-size: .68rem; letter-spacing: .035em; }
.footer-primary a:hover, .footer-secondary a:hover { color: #65e6ef; }
.footer-legal { grid-area: legal; display: flex; flex-wrap: wrap; gap: 8px 18px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.045); }
.footer-legal span { color: #596d76; font-size: .6rem; }
.footer-place { grid-area: place; justify-self: end; padding-top: 12px; color: #607883; font-size: .6rem; letter-spacing: .11em; border-top: 1px solid rgba(255,255,255,.045); }
.footer-place span { color: #249cb3; padding: 0 4px; }

@media (max-width: 1180px) {
  .radio-channel-track { grid-auto-columns: calc((100% - (var(--radio-gap) * 5)) / 6); }
  .site-footer { grid-template-columns: 1fr 1.5fr; grid-template-areas: "brand primary" "secondary secondary" "legal place"; }
  .footer-secondary { justify-content: flex-start; }
}
@media (max-width: 900px) {
  .video-rail { min-height: 170px; }
  .rail-empty { min-height: 150px; }
  .radio-channel-track { grid-auto-columns: calc((100% - (var(--radio-gap) * 3)) / 4); }
  .site-footer { grid-template-columns: 1fr; grid-template-areas: "brand" "primary" "secondary" "legal" "place"; gap: 14px; }
  .footer-place { justify-self: start; width: 100%; }
}
@media (max-width: 620px) {
  .video-rail { min-height: 150px; }
  .rail-empty { min-height: 130px; }
  .radio-channel-track { grid-auto-columns: calc((100% - (var(--radio-gap) * 1)) / 2); }
  .footer-discover { margin-inline: 0; padding-inline: 10px; }
  .site-footer { margin-inline: 0; padding-inline: 6px; }
}

/* v13 — verified Ayvalık TV information footer */
.site-footer {
  position: relative;
  margin: 34px 10px 22px;
  padding: 34px 30px 20px;
  display: grid;
  grid-template-columns: minmax(170px, .9fr) minmax(120px, .72fr) minmax(150px, 1fr) minmax(245px, 1.35fr) minmax(120px, .7fr);
  grid-template-areas:
    "brand corporate tv contact social"
    "bottom bottom bottom bottom bottom";
  gap: 28px 34px;
  align-items: start;
  overflow: hidden;
  border: 1px solid rgba(123, 209, 225, .10);
  border-radius: 22px;
  color: #95a8b0;
  background:
    radial-gradient(circle at 82% 18%, rgba(32,195,227,.075), transparent 25%),
    radial-gradient(circle at 6% 110%, rgba(78,112,255,.055), transparent 28%),
    linear-gradient(118deg, rgba(5,18,27,.96), rgba(4,14,22,.90));
  box-shadow: inset 0 1px rgba(255,255,255,.035), 0 24px 60px rgba(0,0,0,.18);
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(32,195,227,.55), rgba(32,195,227,0));
  pointer-events: none;
}
.footer-column { min-width: 0; }
.footer-brand-column { grid-area: brand; }
.footer-column:nth-of-type(1) { grid-area: corporate; }
.footer-column:nth-of-type(2) { grid-area: tv; }
.footer-contact { grid-area: contact; }
.footer-social { grid-area: social; }

.footer-brand {
  display: inline-block;
  color: #f4eee4;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.6vw, 1.65rem);
  letter-spacing: .055em;
  line-height: 1;
}
.footer-brand span { color: var(--cyan); }
.footer-live {
  display: block;
  margin-top: 13px;
  color: #73909b;
  font-size: .58rem;
  letter-spacing: .13em;
}
.footer-live i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(32,195,227,.66);
}
.footer-place {
  margin: 26px 0 0;
  color: #617983;
  font-size: .58rem;
  letter-spacing: .13em;
}
.footer-place b { color: #2b9fb5; padding-inline: 4px; font-weight: 500; }

.footer-column-title {
  margin: 0 0 14px;
  color: #f1ede5;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .11em;
}
.footer-column > a:not(.footer-brand):not(.footer-directions) {
  display: block;
  width: fit-content;
  margin-top: 9px;
  color: #9dafb6;
  font-size: .68rem;
  line-height: 1.4;
  transition: color .2s ease, transform .2s ease;
}
.footer-column > a:not(.footer-brand):not(.footer-directions):hover {
  color: #e9fbfd;
  transform: translateX(2px);
}

.footer-contact > a {
  max-width: 100%;
}
.footer-contact > a span {
  display: block;
  margin-bottom: 2px;
  color: #657c86;
  font-size: .55rem;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.footer-contact > a strong {
  display: block;
  max-width: 100%;
  color: #cbd6da;
  font-size: .7rem;
  font-weight: 650;
  overflow-wrap: anywhere;
}
.footer-contact address {
  margin-top: 14px;
  color: #82979f;
  font-size: .64rem;
  font-style: normal;
  line-height: 1.55;
}
.footer-contact address strong { color: #b8c7cc; font-weight: 650; }
.footer-contact .footer-directions {
  display: inline-flex;
  align-items: center;
  margin-top: 13px;
  padding: 8px 11px;
  border: 1px solid rgba(76,214,231,.22);
  border-radius: 10px;
  color: #73e7f0;
  background: rgba(32,195,227,.045);
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .08em;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.footer-contact .footer-directions:hover {
  border-color: rgba(76,214,231,.45);
  background: rgba(32,195,227,.09);
  transform: translateY(-1px);
}

.footer-social > a {
  display: flex !important;
  width: 100% !important;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  margin-top: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.055);
}
.footer-social > a span { color: #a9b8bd; }
.footer-social > a b { color: #58d8e7; font-size: .8rem; font-weight: 500; }

.footer-bottom {
  grid-area: bottom;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 17px;
  border-top: 1px solid rgba(255,255,255,.065);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 0;
  border: 0;
}
.footer-legal span { color: #61747c; font-size: .57rem; }
.footer-bottom p { margin: 0; color: #536a74; font-size: .57rem; white-space: nowrap; }

@media (max-width: 1180px) {
  .site-footer {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas:
      "brand corporate tv"
      "contact contact social"
      "bottom bottom bottom";
  }
}
@media (max-width: 820px) {
  .site-footer {
    margin-inline: 0;
    padding: 28px 22px 18px;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "corporate tv"
      "contact social"
      "bottom bottom";
    gap: 24px 28px;
  }
  .footer-place { margin-top: 14px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
  .footer-bottom p { white-space: normal; }
}
@media (max-width: 560px) {
  .site-footer {
    padding: 25px 18px 18px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "corporate"
      "tv"
      "contact"
      "social"
      "bottom";
    border-radius: 18px;
  }
  .footer-column-title { margin-bottom: 10px; }
}

/* v14 — wide, readable information footer */
.site-footer {
  margin: 38px 0 22px;
  padding: 42px 42px 24px;
  grid-template-columns: minmax(230px, .95fr) minmax(220px, .9fr) minmax(300px, 1.15fr) minmax(210px, .8fr);
  grid-template-areas:
    "corporate tv contact social"
    "bottom bottom bottom bottom";
  gap: 38px 48px;
  width: 100%;
}
.site-footer::before { left: 42px; right: 42px; }
.footer-corporate { grid-area: corporate; }
.footer-column:nth-of-type(1) { grid-area: corporate; }
.footer-column:nth-of-type(2) { grid-area: tv; }
.footer-contact { grid-area: contact; }
.footer-social { grid-area: social; }

.footer-brand {
  font-size: clamp(28px, 2vw, 36px);
  letter-spacing: .045em;
}
.footer-live {
  margin-top: 12px;
  font-size: 11px;
  line-height: 1.45;
}
.footer-place {
  margin: 18px 0 30px;
  font-size: 11px;
  line-height: 1.5;
}
.footer-column-title {
  margin: 0 0 17px;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: .075em;
}
.footer-column > a:not(.footer-brand):not(.footer-directions) {
  margin-top: 11px;
  font-size: 14px;
  line-height: 1.55;
}
.footer-contact > a span {
  margin-bottom: 4px;
  font-size: 11px;
}
.footer-contact > a strong {
  font-size: 15px;
  line-height: 1.45;
}
.footer-contact address {
  margin-top: 17px;
  font-size: 14px;
  line-height: 1.65;
}
.footer-contact .footer-directions {
  margin-top: 17px;
  padding: 11px 15px;
  font-size: 12px;
}
.footer-social > a {
  padding: 13px 0;
  font-size: 14px !important;
}
.footer-social > a span { font-size: 14px; }
.footer-social > a b { font-size: 15px; }
.footer-bottom {
  gap: 28px;
  padding-top: 22px;
}
.footer-legal { gap: 10px 24px; }
.footer-legal span { font-size: 12px; line-height: 1.5; }
.footer-bottom p { font-size: 12px; line-height: 1.5; }

@media (max-width: 1240px) {
  .site-footer {
    padding: 38px 34px 22px;
    grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr);
    grid-template-areas:
      "corporate tv"
      "contact social"
      "bottom bottom";
    gap: 34px 46px;
  }
}
@media (max-width: 820px) {
  .site-footer {
    margin-inline: 0;
    padding: 32px 24px 20px;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "corporate tv"
      "contact social"
      "bottom bottom";
    gap: 30px 28px;
  }
  .footer-brand { font-size: clamp(26px, 6vw, 32px); }
  .footer-column-title { font-size: 14px; }
  .footer-column > a:not(.footer-brand):not(.footer-directions),
  .footer-contact address,
  .footer-social > a span { font-size: 13px; }
}
@media (max-width: 560px) {
  .site-footer {
    padding: 28px 20px 18px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "corporate"
      "tv"
      "contact"
      "social"
      "bottom";
    gap: 28px;
  }
  .footer-place { margin-bottom: 22px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
  .footer-bottom p { white-space: normal; }
}


/* v15 — final footer navigation + WhatsApp CTA */
.footer-contact .footer-whatsapp {
  display: inline-flex !important;
  width: min(100%, 260px) !important;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px !important;
  padding: 12px 15px;
  border: 1px solid rgba(75, 222, 128, .38);
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(31, 170, 91, .18), rgba(20, 112, 68, .08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 10px 28px rgba(10, 72, 43, .08);
  color: #dff9e8;
  transform: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.footer-contact .footer-whatsapp:hover {
  color: #f1fff6;
  transform: translateY(-2px);
  border-color: rgba(86, 239, 143, .68);
  background: linear-gradient(135deg, rgba(31, 170, 91, .28), rgba(20, 112, 68, .13));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 14px 32px rgba(10, 72, 43, .14);
}
.footer-contact .footer-whatsapp-copy {
  display: grid;
  gap: 2px;
}
.footer-contact .footer-whatsapp-copy b {
  color: #eefcf3;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}
.footer-contact .footer-whatsapp-copy small {
  color: #91cda8;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .02em;
}
.footer-contact .footer-whatsapp > strong {
  color: #75e79e;
  font-size: 17px;
  font-weight: 500;
}
@media (max-width: 560px) {
  .footer-contact .footer-whatsapp { width: 100% !important; }
}


/* v16 — real corporate/legal destinations */
.footer-legal a {
  color: #7d929a;
  font-size: 12px;
  line-height: 1.5;
  transition: color .18s ease;
}
.footer-legal a:hover { color: #d7eef2; }

/* v18 — responsive latest video carousel */
.latest-rail {
  overflow: hidden;
}
.latest-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.latest-actions button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(93, 209, 228, .18);
  border-radius: 50%;
  background: rgba(6, 24, 33, .72);
  color: #d9f8fc;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, opacity .18s ease;
}
.latest-actions button:hover:not(:disabled) {
  border-color: rgba(74, 220, 239, .46);
  background: rgba(13, 52, 64, .82);
}
.latest-actions button:disabled {
  opacity: .28;
  cursor: default;
}
.latest-actions a { margin-left: 4px; }
.video-rail {
  display: grid;
  grid-template-columns: none;
  grid-template-rows: 1fr;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 33px) / 4);
  gap: 11px;
  min-height: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  padding: 8px 10px 20px;
}
.video-rail::-webkit-scrollbar { display: none; }
.video-card {
  width: 100%;
  min-width: 0;
  scroll-snap-align: start;
}
.video-thumb {
  border-radius: 12px;
}
.video-body h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media (max-width: 900px) {
  .video-rail {
    display: flex;
    gap: 12px;
    padding-right: 10vw;
  }
  .video-card {
    flex: 0 0 46vw;
    min-width: 46vw;
  }
}

@media (max-width: 620px) {
  .rail-head { padding-inline: 4px; }
  .latest-actions button { display: none; }
  .latest-actions a { font-size: .68rem; }
  .video-rail {
    gap: 12px;
    padding: 8px 3px 18px;
    padding-right: 11vw;
    scroll-padding-left: 3px;
  }
  .video-card {
    flex: 0 0 86vw;
    min-width: 86vw;
  }
  .video-body h3 { font-size: 1rem; line-height: 1.25; }
  .video-meta {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}


/* v18b — true 16:9 latest thumbnails */
.video-rail {
  min-height: 0;
  align-items: start;
}
.video-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.video-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.video-body {
  min-height: 0;
}
.video-meta {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  white-space: normal;
}

@media (max-width: 620px) {
  .video-meta { -webkit-line-clamp: 2; }
}

/* v19 — mobile polish */
.world-all-link { display: none; }
.footer-accordion-toggle {
  appearance: none;
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  cursor: pointer;
}
.footer-accordion-icon { display: none; }
.footer-column-content { display: grid; gap: 0; }
.footer-column-content > a { display: block; }

@media (max-width: 620px) {
  :root { --dock: 62px; }
  .tv-home { padding-bottom: calc(var(--dock) + 12px); }

  .world-panel { margin-top: -46px; padding: 18px 12px 12px; }
  .world-map { height: 104px; }
  .world-links a:nth-child(n+4) { display: none; }
  .world-all-link {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    margin: 6px 4px 0;
    padding: 0 12px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #72e6f2;
    font-size: .7rem;
    font-weight: 750;
    letter-spacing: .07em;
  }

  .radio-showcase { padding: 18px 0 16px; }
  .radio-showcase-head { align-items: center; gap: 10px; padding: 0 14px 8px; }
  .radio-showcase-head > div:first-child { min-width: 0; }
  .radio-showcase-head h2 { font-size: 1.08rem; white-space: nowrap; letter-spacing: .015em; }
  .radio-showcase-head p { max-width: 190px; margin-top: 3px; font-size: .67rem; line-height: 1.3; }
  .radio-showcase-controls { gap: 7px; }
  .radio-showcase-controls button { width: 32px; height: 32px; }
  .radio-channel-viewport { padding-inline: 14px; }
  .radio-channel-track { grid-auto-columns: 52vw; gap: 9px; padding-top: 7px; padding-bottom: 7px; }
  .radio-channel-copy { inset: auto 13px 20px; }
  .radio-channel-copy .station-prefix { font-size: .72rem; }
  .radio-channel-copy strong { font-size: 1.02rem; }

  .site-footer { gap: 0; padding: 24px 20px 22px; }
  .site-footer::before { left: 20px; right: 20px; }
  .footer-brand { margin-bottom: 4px; }
  .footer-live { margin-bottom: 16px; }
  .footer-column { padding: 0; border-top: 1px solid rgba(255,255,255,.065); }
  .footer-corporate { border-top: 0; }
  .footer-column-title { margin: 0; }
  .footer-accordion-toggle {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #f3eee5;
  }
  .footer-accordion-icon {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(82,211,229,.16);
    border-radius: 50%;
    color: #67ddea;
    font-size: 1rem;
    font-weight: 400;
    transition: transform .2s ease;
  }
  .footer-column[data-footer-open="true"] .footer-accordion-icon { transform: rotate(45deg); }
  .footer-column-content { display: none; padding: 0 0 14px; }
  .footer-column[data-footer-open="true"] .footer-column-content { display: grid; }
  .footer-column-content > a:not(.footer-whatsapp) { min-height: 40px; display: flex; align-items: center; }

  .footer-contact .footer-column-content { display: grid; padding-bottom: 14px; }
  .footer-contact:not([data-footer-open="true"]) .footer-column-content > :not(.footer-whatsapp) { display: none !important; }
  .footer-contact .footer-whatsapp { margin: 4px 0 4px; min-height: 58px; }
  .footer-contact[data-footer-open="true"] .footer-whatsapp { margin-bottom: 8px; }

  .footer-bottom { margin-top: 14px; padding-top: 14px; gap: 10px; }
  .footer-legal { gap: 7px 14px; padding-top: 0; }
  .footer-legal a { font-size: 10px; }
  .footer-bottom p { font-size: 10px; }

  .radio-dock { grid-template-columns: 1fr 96px; }
  .radio-brand-block { gap: 9px; padding: 0 10px; }
  .mic-mark { width: 32px; height: 32px; font-size: .72rem; }
  .radio-brand-block strong { font-size: .83rem; letter-spacing: .035em; }
  .radio-brand-block small { margin-top: 1px; font-size: .58rem; }
  .radio-brand-block small i { width: 6px; height: 6px; }
  .radio-controls { gap: 6px; }
  .radio-controls .radio-play { width: 42px; height: 42px; font-size: .95rem; }
  .radio-controls button { font-size: .82rem; }
}

/* v31 — home live-world mini portal */
.world-portal {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 19px 18px 16px;
  background:
    radial-gradient(circle at 86% 10%, rgba(32,195,227,.18), transparent 30%),
    radial-gradient(circle at 8% 88%, rgba(139,110,240,.16), transparent 34%),
    radial-gradient(circle at 92% 74%, rgba(61,213,173,.10), transparent 30%),
    linear-gradient(180deg, rgba(5,22,32,.94), rgba(5,13,22,.96));
  border-color: rgba(84,218,235,.20);
  box-shadow:
    -22px 18px 68px rgba(0,0,0,.34),
    0 0 48px rgba(32,195,227,.055),
    inset 0 1px rgba(255,255,255,.045);
}
.world-portal .world-panel-head { padding-bottom: 0; }
.world-portal .world-panel-head h2 { font-size: 1.26rem; }
.world-portal-map {
  height: 142px;
  margin: 1px 0 2px;
  isolation: isolate;
  background-position: center 48%;
  filter: saturate(.72) brightness(.68) contrast(1.16);
  border: 1px solid rgba(89,218,235,.10);
  box-shadow: inset 0 -32px 46px rgba(2,10,16,.62), 0 12px 34px rgba(0,0,0,.18);
}
.world-portal-map::after {
  background:
    radial-gradient(circle at 27% 55%, rgba(61,227,245,.95) 0 2px, transparent 5px),
    radial-gradient(circle at 52% 43%, rgba(158,119,255,.95) 0 2px, transparent 5px),
    radial-gradient(circle at 78% 60%, rgba(77,231,173,.95) 0 2px, transparent 5px),
    radial-gradient(circle at 62% 71%, rgba(242,172,92,.88) 0 1.5px, transparent 5px),
    linear-gradient(180deg, rgba(3,15,24,.02), rgba(3,15,24,.20));
  box-shadow: inset 0 0 38px #04111a;
}
.world-orbit {
  position: absolute;
  z-index: 3;
  inset: 21% 7%;
  border: 1px solid rgba(82,222,240,.18);
  border-radius: 50%;
  transform: rotate(-12deg);
  pointer-events: none;
}
.world-orbit-b {
  inset: 33% 16%;
  border-color: rgba(154,116,245,.15);
  transform: rotate(17deg);
}
.world-signal {
  position: absolute;
  z-index: 4;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #58e8f6;
  box-shadow: 0 0 0 0 rgba(88,232,246,.48), 0 0 14px rgba(88,232,246,.82);
  animation: worldPortalPulse 2.4s ease-out infinite;
}
.world-signal-a { left: 27%; top: 54%; }
.world-signal-b { left: 52%; top: 42%; animation-delay: .7s; background:#a878ff; box-shadow:0 0 0 0 rgba(168,120,255,.45),0 0 14px rgba(168,120,255,.76); }
.world-signal-c { left: 78%; top: 58%; animation-delay: 1.3s; background:#4ae0aa; box-shadow:0 0 0 0 rgba(74,224,170,.45),0 0 14px rgba(74,224,170,.72); }
@keyframes worldPortalPulse {
  0% { transform: scale(.78); box-shadow: 0 0 0 0 rgba(88,232,246,.44), 0 0 12px currentColor; }
  55% { transform: scale(1); box-shadow: 0 0 0 8px rgba(88,232,246,0), 0 0 19px currentColor; }
  100% { transform: scale(.78); box-shadow: 0 0 0 0 rgba(88,232,246,0), 0 0 12px currentColor; }
}
.world-portal-copy {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 4px;
  padding: 1px 2px 0;
}
.world-portal-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #83edf6;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .13em;
}
.world-portal-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #45e3aa;
  box-shadow: 0 0 12px rgba(69,227,170,.7);
}
.world-portal-copy strong {
  font-family: var(--serif);
  color: #f5f0e8;
  font-size: 1.32rem;
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: .012em;
}
.world-portal-copy p {
  margin: 0;
  color: #91a5ad;
  font-size: .69rem;
  line-height: 1.45;
}
.world-portal-cta {
  position: relative;
  z-index: 3;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid rgba(82,222,240,.25);
  border-radius: 11px;
  background:
    linear-gradient(100deg, rgba(21,126,148,.26), rgba(94,63,165,.18) 62%, rgba(38,155,117,.16));
  color: #ebfdff;
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .055em;
  box-shadow: inset 0 1px rgba(255,255,255,.035), 0 10px 25px rgba(0,0,0,.14);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.world-portal-cta span { color: #7ce9f4; font-size: 1rem; }
.world-portal-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(99,231,246,.46);
  background: linear-gradient(100deg, rgba(21,148,173,.34), rgba(103,66,183,.25) 62%, rgba(43,174,130,.22));
}
.world-portal-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 11px;
  background: rgba(2,11,18,.47);
}
.world-portal-stats > div {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 2px;
  min-height: 58px;
  padding: 8px 9px;
  border-right: 1px solid rgba(255,255,255,.065);
}
.world-portal-stats > div:last-child { border-right: 0; }
.world-portal-stats span { color: #72dcea; font-size: .48rem; font-weight: 800; letter-spacing: .09em; white-space: nowrap; }
.world-portal-stats strong { overflow: hidden; color: #f4efe7; font-family: var(--serif); font-size: 1.05rem; font-weight: 400; line-height: 1.1; text-overflow: ellipsis; white-space: nowrap; }
.world-portal-stats small { overflow: hidden; color: #728891; font-size: .52rem; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
.world-portal-stats [data-live-state="ok"] { color: #71e5ba; }
.world-portal-stats [data-live-state="error"] { color: #87959b; }

@media (max-width: 900px) {
  .world-portal { gap: 9px; }
  .world-portal-map { height: 132px; }
}
@media (max-width: 620px) {
  .world-portal { margin-top: -46px; padding: 17px 13px 14px; }
  .world-portal-map { height: 126px; }
  .world-portal-copy strong { font-size: 1.45rem; }
  .world-portal-copy p { font-size: .72rem; }
  .world-portal-cta { min-height: 48px; font-size: .67rem; }
  .world-portal-stats > div { min-height: 62px; padding: 8px 7px; }
  .world-portal-stats span { font-size: .44rem; }
  .world-portal-stats strong { font-size: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .world-signal { animation: none; }
  .world-portal-cta { transition: none; }
}

/* v32 — three distinct premium content worlds */
.worlds-grid {
  grid-template-columns: .92fr 1.16fr .92fr;
  gap: 16px;
  padding: 10px 0 8px;
}
.world-card {
  --world-accent: var(--cyan);
  --world-accent-2: #7cecff;
  --world-deep: #08141e;
  min-height: 286px;
  padding: 0;
  justify-content: flex-end;
  border-radius: 24px;
  border-color: color-mix(in srgb, var(--world-accent) 34%, rgba(255,255,255,.12));
  background-position: center;
  background-size: cover;
  isolation: isolate;
  box-shadow:
    0 26px 64px rgba(0,0,0,.30),
    0 0 0 1px color-mix(in srgb, var(--world-accent) 7%, transparent),
    0 0 46px color-mix(in srgb, var(--world-accent) 7%, transparent),
    inset 0 1px rgba(255,255,255,.05);
}
.world-kids {
  --world-accent: #9c72ff;
  --world-accent-2: #ff88d8;
  --world-deep: #140c26;
  background-position: 58% center;
}
.world-discover {
  --world-accent: #3dd5ad;
  --world-accent-2: #27dff2;
  --world-deep: #06211f;
  min-height: 322px;
  margin-top: -18px;
  background-position: 56% center;
}
.world-food {
  --world-accent: #f29a62;
  --world-accent-2: #ffc767;
  --world-deep: #29120a;
  background-position: 52% center;
}
.world-card::before {
  z-index: 0;
  background:
    radial-gradient(circle at 80% 17%, color-mix(in srgb, var(--world-accent-2) 24%, transparent), transparent 29%),
    radial-gradient(circle at 12% 96%, color-mix(in srgb, var(--world-accent) 38%, transparent), transparent 39%),
    linear-gradient(180deg, rgba(1,7,11,.04) 8%, rgba(1,7,11,.12) 42%, color-mix(in srgb, var(--world-deep) 86%, black) 100%);
}
.world-card::after {
  z-index: 1;
  opacity: .86;
  background:
    radial-gradient(circle at var(--halo-x) var(--halo-y), color-mix(in srgb, var(--world-accent) 29%, transparent) 0, transparent 34%),
    linear-gradient(118deg, transparent 12%, rgba(255,255,255,.055) 33%, transparent 53%),
    linear-gradient(135deg, color-mix(in srgb, var(--world-accent-2) 8%, transparent), transparent 54%);
  animation: worldSceneDrift 10s ease-in-out infinite alternate;
}
.world-card-visual {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  transform: scale(1.001);
  transition: transform .8s cubic-bezier(.2,.72,.2,1), filter .8s ease;
}
.world-card-orbit {
  position: absolute;
  width: 190px;
  height: 190px;
  border: 1px solid color-mix(in srgb, var(--world-accent-2) 27%, transparent);
  border-radius: 50%;
  opacity: .56;
  box-shadow: inset 0 0 28px color-mix(in srgb, var(--world-accent) 7%, transparent);
}
.world-card-orbit::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: 18%;
  right: 4%;
  border-radius: 50%;
  background: var(--world-accent-2);
  box-shadow: 0 0 14px var(--world-accent-2), 0 0 0 7px color-mix(in srgb, var(--world-accent-2) 10%, transparent);
}
.world-card .orbit-a { top: -70px; right: -54px; animation: worldOrbitSpin 16s linear infinite; }
.world-card .orbit-b { width: 122px; height: 122px; right: 36px; bottom: -54px; opacity: .34; animation: worldOrbitSpin 12s linear infinite reverse; }
.world-card-spark {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--world-accent-2);
  box-shadow: 0 0 14px var(--world-accent-2);
  animation: worldSparkPulse 3.4s ease-in-out infinite;
}
.world-card .spark-a { left: 14%; top: 19%; }
.world-card .spark-b { left: 76%; top: 54%; animation-delay: .8s; }
.world-card .spark-c { left: 58%; top: 24%; animation-delay: 1.6s; }
.world-card-copy {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  gap: 8px;
  padding: 62px 26px 24px;
  background: linear-gradient(180deg, transparent, rgba(2,8,12,.38) 24%, rgba(2,8,12,.87) 100%);
}
.world-card-kicker {
  color: color-mix(in srgb, var(--world-accent-2) 86%, white);
  font-size: .56rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-shadow: 0 0 16px color-mix(in srgb, var(--world-accent) 44%, transparent);
}
.world-card strong {
  margin: 0;
  color: #fffaf2;
  font-size: clamp(1.75rem, 2.4vw, 2.55rem);
  line-height: .94;
  letter-spacing: .005em;
}
.world-card strong::after { display: none; }
.world-card-copy p {
  max-width: 31ch;
  margin: 0;
  color: rgba(231,240,241,.78);
  font-size: .72rem;
  line-height: 1.48;
}
.world-card-cta {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  padding: 0 13px;
  border: 1px solid color-mix(in srgb, var(--world-accent) 38%, rgba(255,255,255,.1));
  border-radius: 999px;
  background: color-mix(in srgb, var(--world-accent) 10%, rgba(4,13,18,.5));
  color: #f7fcff;
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .075em;
  transition: gap .22s ease, background .22s ease, border-color .22s ease;
}
.world-card-cta span {
  margin: 0;
  opacity: 1;
  transform: none;
  color: var(--world-accent-2);
  font-size: .9rem;
}
.world-card:hover .world-card-visual {
  transform: scale(1.065);
  filter: saturate(1.1) brightness(1.04);
}
.world-card:hover .world-card-cta {
  gap: 15px;
  border-color: color-mix(in srgb, var(--world-accent-2) 52%, white 8%);
  background: color-mix(in srgb, var(--world-accent) 17%, rgba(4,13,18,.5));
}
.world-discover .world-card-copy { padding-bottom: 28px; }
.world-discover .world-card-copy strong { max-width: 7ch; }
.world-discover .world-card-copy p { max-width: 38ch; }
.world-kids .world-card-orbit { border-style: dashed; }
.world-food .world-card-orbit { border-radius: 42% 58% 54% 46%; }

@keyframes worldSceneDrift {
  0% { transform: translate3d(-1.2%, -.5%, 0) scale(1.02); }
  100% { transform: translate3d(1.2%, .7%, 0) scale(1.04); }
}
@keyframes worldOrbitSpin { to { transform: rotate(360deg); } }
@keyframes worldSparkPulse {
  0%, 100% { opacity: .32; transform: scale(.72); }
  50% { opacity: 1; transform: scale(1.26); }
}

@media (max-width: 980px) {
  .worlds-grid { grid-template-columns: 1fr 1.08fr 1fr; gap: 12px; }
  .world-card { min-width: 0; min-height: 255px; }
  .world-discover { min-height: 278px; margin-top: -10px; }
  .world-card-copy { padding: 52px 18px 20px; }
  .world-card-copy p { font-size: .68rem; }
}

@media (max-width: 760px) {
  .worlds-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: visible;
    scroll-snap-type: none;
    padding: 10px 0 6px;
  }
  .world-card {
    min-width: 0;
    width: 100%;
    min-height: 230px;
    margin-top: 0;
    scroll-snap-align: unset;
  }
  .world-discover { min-height: 260px; margin-top: 0; }
  .world-card-copy { padding: 70px 22px 22px; }
  .world-card strong { font-size: clamp(2rem, 10vw, 2.8rem); }
  .world-card-copy p { max-width: 36ch; font-size: .76rem; }
  .world-card-cta { min-height: 38px; font-size: .62rem; }
}

@media (prefers-reduced-motion: reduce) {
  .world-card::after,
  .world-card .orbit-a,
  .world-card .orbit-b,
  .world-card-spark { animation: none !important; }
  .world-card-visual { transition: none; }
}

/* v47 — premium radio dock */
.radio-dock {
  height: 94px;
  grid-template-columns: 270px minmax(390px, 1fr) 230px 210px;
  border-top: 1px solid rgba(94, 224, 245, .18);
  background:
    radial-gradient(circle at 28% -80%, rgba(28, 184, 211, .18), transparent 34%),
    linear-gradient(180deg, rgba(8, 24, 34, .98), rgba(2, 9, 15, .985));
  box-shadow: 0 -22px 70px rgba(0, 0, 0, .42), inset 0 1px rgba(255,255,255,.06);
}
.radio-dock::before {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(33, 205, 231, .68) 20%, rgba(214, 178, 111, .38) 72%, transparent);
  opacity: .65;
}
.radio-dock::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.025), transparent 18% 82%, rgba(255,255,255,.018));
}
.radio-brand-block {
  gap: 13px;
  padding: 0 28px;
}
.radio-brand-mark {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(84, 224, 245, .48);
  border-radius: 15px;
  background: linear-gradient(145deg, #0d8eae, #092b3b 68%);
  box-shadow: 0 8px 24px rgba(0, 151, 187, .2), inset 0 1px rgba(255,255,255,.18);
}
.radio-brand-mark::before,
.radio-brand-mark::after {
  content: "";
  position: absolute;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 50%;
}
.radio-brand-mark::before { transform: translate(-18px, 17px); }
.radio-brand-mark::after { transform: translate(18px, -17px); }
.radio-brand-mark b {
  position: relative;
  z-index: 1;
  color: #f8f5ec;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.radio-brand-mark i {
  position: absolute;
  z-index: 1;
  right: 8px;
  bottom: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffcf72;
  box-shadow: 0 0 10px rgba(255, 207, 114, .9);
}
.radio-brand-block strong {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 850;
  letter-spacing: .15em;
}
.radio-brand-block small {
  margin-top: 6px;
  color: #90aeb9;
  font-size: .6rem;
  letter-spacing: .13em;
}
.radio-brand-block small i {
  width: 6px;
  height: 6px;
  margin-right: 5px;
}
.radio-track {
  grid-template-columns: 58px minmax(170px, 250px) minmax(120px, 1fr);
  gap: 15px;
  min-width: 0;
  padding: 0 24px;
}
.radio-cover {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 13px;
  box-shadow: 0 10px 26px rgba(0,0,0,.38), inset 0 1px rgba(255,255,255,.1);
}
.radio-copy-kicker {
  display: block;
  overflow: hidden;
  margin-bottom: 3px;
  color: #55ddec;
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.radio-copy strong {
  font-family: var(--sans);
  font-size: .96rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.radio-copy small {
  display: block;
  margin-top: 4px;
  color: #7f9ba6;
  font-size: .64rem;
  letter-spacing: .04em;
}
.radio-wave {
  height: 38px;
  gap: 4px;
  padding: 0 18px;
  opacity: .75;
  border-left: 1px solid rgba(255,255,255,.08);
}
.radio-wave span {
  width: 3px;
  background: linear-gradient(180deg, #70f0f2, #0aa7cf);
  box-shadow: 0 0 9px rgba(32, 195, 227, .48);
  animation: radioDockPulse 1.25s ease-in-out infinite alternate;
}
.radio-wave span:nth-child(2n) { animation-delay: -.55s; }
.radio-wave span:nth-child(3n) { animation-delay: -.85s; }
.radio-controls {
  gap: 9px;
  padding: 0 18px;
  border-left: 1px solid rgba(255,255,255,.08);
  border-right: 1px solid rgba(255,255,255,.08);
}
.radio-controls::before,
.radio-controls::after { display: none; }
.radio-controls button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  color: #a9c0c8;
  font-size: .8rem;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.radio-controls button:hover {
  color: #fff;
  border-color: rgba(85, 221, 236, .28);
  background: rgba(75, 209, 231, .1);
  transform: translateY(-1px);
}
.radio-controls .radio-play {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(130, 241, 245, .7);
  color: #06202b;
  background: linear-gradient(145deg, #78eff0, #18b9d9);
  box-shadow: 0 8px 25px rgba(12, 177, 213, .28), inset 0 1px rgba(255,255,255,.55);
  font-size: 1rem;
}
.radio-controls .radio-play:hover {
  color: #061820;
  border-color: #fff;
  background: linear-gradient(145deg, #a6f8f3, #27c9e1);
  transform: translateY(-2px) scale(1.03);
}
.radio-volume {
  gap: 12px;
  padding: 0 24px;
  color: #91aab3;
  font-size: .75rem;
}
.radio-volume > span {
  width: 108px;
  height: 4px;
  background: rgba(255,255,255,.13);
}
.radio-volume > span i {
  background: linear-gradient(90deg, #1bbfdc, #82e9e8);
}
@keyframes radioDockPulse {
  from { transform: scaleY(.58); opacity: .52; }
  to { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 1180px) {
  .radio-dock { grid-template-columns: 230px minmax(300px, 1fr) 205px; }
  .radio-volume { display: none; }
}
@media (max-width: 900px) {
  .radio-dock { grid-template-columns: 205px minmax(260px, 1fr) 174px; }
  .radio-brand-block { padding-inline: 18px; }
  .radio-track { padding-inline: 16px; }
  .radio-wave { padding-inline: 12px; }
}
@media (max-width: 620px) {
  .radio-dock { height: 76px; grid-template-columns: 1fr 124px; }
  .radio-brand-block { gap: 10px; padding-inline: 14px; }
  .radio-brand-mark { width: 38px; height: 38px; flex-basis: 38px; border-radius: 12px; }
  .radio-brand-mark b { font-size: .63rem; }
  .radio-brand-mark i { right: 6px; bottom: 6px; width: 5px; height: 5px; }
  .radio-brand-block strong { font-size: .68rem; letter-spacing: .11em; }
  .radio-brand-block small { margin-top: 4px; font-size: .54rem; }
  .radio-track { display: none; }
  .radio-controls { gap: 4px; padding-inline: 8px; border-left: 1px solid rgba(255,255,255,.08); }
  .radio-controls button { width: 30px; height: 30px; font-size: .68rem; }
  .radio-controls button:first-child { display: none; }
  .radio-controls .radio-play { width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  .radio-wave span { animation: none; }
}

@media (max-width: 560px) {
  .site-copyright { display: none !important; }
}
