/* AlbaLove — design tokens & base */
:root {
  /* Albanian flag-rooted palette, dark-first */
  --red: #dc1e2e;
  --red-deep: #a01421;
  --red-glow: #ff5260;
  --black: #0b0707;
  --ink: #14100f;
  --ink-2: #1c1817;
  --line: #2a2422;
  --bone: #f6efe4;
  --bone-2: #ede3d3;
  --muted: #8a7d76;
  --muted-2: #c8b9ad;

  --bg: var(--black);
  --bg-2: var(--ink);
  --bg-3: var(--ink-2);
  --fg: var(--bone);
  --fg-muted: var(--muted-2);
  --fg-dim: var(--muted);
  --border: var(--line);
  --accent: var(--red);
  --accent-deep: var(--red-deep);
  --accent-glow: var(--red-glow);

  --serif: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --sans: "Geist", "Inter", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 1px 2px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 24px 60px -20px rgba(0, 0, 0, 0.7), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  --shadow-red: 0 30px 80px -30px rgba(220, 30, 46, 0.55);
}

[data-theme="light"] {
  --bg: #f6efe4;
  --bg-2: #efe5d3;
  --bg-3: #e7dac6;
  --fg: #1a0e0c;
  --fg-muted: #4a3b36;
  --fg-dim: #7a6a62;
  --border: #d9c8b3;
  --shadow-md: 0 24px 60px -28px rgba(80, 30, 20, 0.25), 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  --shadow-red: 0 30px 80px -30px rgba(220, 30, 46, 0.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--accent); color: #fff; }

/* Page chrome ---------------------------------------------------- */
.page {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(220, 30, 46, 0.18), transparent 60%),
    radial-gradient(800px 500px at -10% 30%, rgba(220, 30, 46, 0.08), transparent 60%);
  z-index: -1;
}

[data-theme="light"] .page::before {
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(220, 30, 46, 0.12), transparent 60%),
    radial-gradient(800px 500px at -10% 30%, rgba(160, 20, 33, 0.05), transparent 60%);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container { padding: 0 18px; }
}

/* Top nav -------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(140%);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  flex-wrap: nowrap;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}
.brand .dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  display: inline-block;
  transform: translateY(-2px);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent);
}
.brand .tld {
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  color: var(--fg-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }
.nav-online {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-muted);
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg-2) 60%, transparent);
}
.nav-online .pulse {
  width: 7px; height: 7px; border-radius: 999px; background: #2ecc71;
  box-shadow: 0 0 0 0 #2ecc71;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(46,204,113, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(46,204,113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113, 0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 30px -10px color-mix(in srgb, var(--accent) 70%, transparent);
}
.btn-primary:hover { background: var(--accent-glow); }
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--fg);
}
.btn-ghost:hover { border-color: var(--fg-muted); }
.btn-lg { padding: 14px 22px; font-size: 15px; }

/* Hero ----------------------------------------------------------- */
.hero {
  position: relative;
  padding: 64px 0 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero-eyebrow .flag {
  width: 14px; height: 14px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.hero h1 .italic {
  font-style: italic;
  color: var(--accent);
}
.hero h1 .amp {
  font-style: italic;
  color: var(--fg-muted);
  font-size: 0.7em;
}
.hero p.lede {
  font-size: 19px;
  line-height: 1.5;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 0 32px;
  text-wrap: pretty;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px dashed var(--border);
  flex-wrap: wrap;
}
.hero-meta .m {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-meta .m b {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--fg);
}
.hero-meta .m span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* Hero layout variants */
.hero[data-layout="stacked"] .hero-grid {
  grid-template-columns: 1fr;
  text-align: center;
  gap: 40px;
}
.hero[data-layout="stacked"] .hero-eyebrow,
.hero[data-layout="stacked"] .hero-cta,
.hero[data-layout="stacked"] .hero-meta {
  justify-content: center;
}
.hero[data-layout="stacked"] .hero p.lede {
  margin-left: auto; margin-right: auto;
}
.hero[data-layout="stacked"] .chat-card {
  max-width: 760px;
  margin: 0 auto;
}

.hero[data-layout="overlay"] {
  padding-top: 40px;
}
.hero[data-layout="overlay"] .hero-grid {
  grid-template-columns: 1fr;
  position: relative;
}
.hero[data-layout="overlay"] .hero-copy {
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero[data-layout="overlay"] .hero-eyebrow,
.hero[data-layout="overlay"] .hero-cta,
.hero[data-layout="overlay"] .hero-meta {
  justify-content: center;
}
.hero[data-layout="overlay"] .hero p.lede {
  margin-left: auto; margin-right: auto;
}
.hero[data-layout="overlay"] .chat-card {
  margin-top: -10px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  transform: rotate(-0.4deg);
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 36px 0 40px; }
}

/* Decorative eagle silhouette behind hero */
.hero-eagle {
  position: absolute;
  right: -40px;
  top: 20px;
  width: 520px;
  opacity: 0.04;
  pointer-events: none;
  z-index: -1;
}
[data-theme="light"] .hero-eagle { opacity: 0.06; }

/* Chat preview card --------------------------------------------- */
.chat-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md), var(--shadow-red);
  overflow: hidden;
  font-family: var(--sans);
}
.chat-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-3) 60%, transparent);
}
.chat-bar .dots { display: flex; gap: 6px; }
.chat-bar .dots i {
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--border);
  display: block;
}
.chat-bar .dots i:nth-child(1) { background: #ff605c; }
.chat-bar .dots i:nth-child(2) { background: #ffbd44; }
.chat-bar .dots i:nth-child(3) { background: #00ca4e; }
.chat-bar .room {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-muted);
}
.chat-bar .room b { color: var(--fg); font-weight: 500; }
.chat-bar .right {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-dim);
}

.chat-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 440px;
}
@media (max-width: 720px) {
  .chat-body { grid-template-columns: 1fr; min-height: 380px; }
  .chat-body .roomlist { display: none; }
}

.roomlist {
  border-right: 1px solid var(--border);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: color-mix(in srgb, var(--bg-3) 35%, transparent);
}
.roomlist .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  padding: 6px 10px 10px;
}
.roomlist .r {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--fg-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.roomlist .r:hover { background: color-mix(in srgb, var(--fg) 6%, transparent); color: var(--fg); }
.roomlist .r.active {
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  color: var(--fg);
  position: relative;
}
.roomlist .r.active::before {
  content: "";
  position: absolute; left: 0; top: 6px; bottom: 6px;
  width: 2px; background: var(--accent);
  border-radius: 2px;
}
.roomlist .r .hash { color: var(--accent); font-family: var(--mono); margin-right: 6px; }
.roomlist .r .n {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--fg-dim);
  background: color-mix(in srgb, var(--fg) 8%, transparent);
  padding: 1px 6px;
  border-radius: 999px;
}

.messages {
  padding: 18px 22px 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  overflow: hidden;
  position: relative;
  min-height: 0;
}
.msg {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  animation: msgIn 0.5s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.msg .av {
  width: 32px; height: 32px;
  border-radius: 999px;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: #fff;
  border: 1px solid color-mix(in srgb, #000 30%, transparent);
}
.msg .av.red { background: linear-gradient(135deg, #dc1e2e, #7a0d18); }
.msg .av.blue { background: linear-gradient(135deg, #4a5fb8, #2a3573); }
.msg .av.gold { background: linear-gradient(135deg, #c8923a, #6b4a14); color: #1a0e0c; }
.msg .av.olive { background: linear-gradient(135deg, #7a8a4a, #3e4823); }
.msg .av.plum { background: linear-gradient(135deg, #6f3a73, #2e1a30); }
.msg .av.teal { background: linear-gradient(135deg, #2d8090, #0e3d47); }
.msg .head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 2px;
}
.msg .nick {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--fg);
}
.msg .nick.op { color: var(--accent); }
.msg .nick.op::before { content: "@"; opacity: 0.7; margin-right: 1px; }
.msg .time {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--fg-dim);
  letter-spacing: 0.04em;
}
.msg .text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-muted);
}
.msg .text .mention {
  color: var(--accent);
  font-weight: 500;
}
.msg.system .text { font-style: italic; color: var(--fg-dim); font-size: 12.5px; }
.msg.system .av { background: transparent; border: 1px dashed var(--border); color: var(--fg-dim); font-style: normal; font-family: var(--mono); font-size: 11px; }

.typing {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  color: var(--fg-dim);
  font-family: var(--mono);
  padding: 0 2px;
  min-height: 16px;
}
.typing .dots { display: inline-flex; gap: 3px; }
.typing .dots span {
  width: 4px; height: 4px; border-radius: 999px;
  background: var(--fg-dim);
  animation: bounce 1.2s infinite ease-in-out;
}
.typing .dots span:nth-child(2) { animation-delay: 0.15s; }
.typing .dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40% { transform: translateY(-3px); opacity: 1; }
}

.composer {
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: color-mix(in srgb, var(--bg-3) 40%, transparent);
}
.composer .field {
  flex: 1;
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13.5px;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 6px;
}
.composer .field .placeholder {
  color: var(--fg-dim);
}
.composer .field .cursor {
  width: 1px; height: 14px;
  background: var(--accent);
  display: inline-block;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.composer .send {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: var(--accent);
  border: none;
  display: grid; place-items: center;
  color: #fff;
}

/* Sections ------------------------------------------------------- */
section { padding: 80px 0; }
section.tight { padding: 56px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 720px;
  text-wrap: balance;
}
.section-head h2 em { color: var(--accent); }
.section-head .desc {
  max-width: 360px;
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.5;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.eyebrow::before {
  content: ""; width: 18px; height: 1px; background: var(--accent);
}

/* Rooms grid ---------------------------------------------------- */
.rooms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .rooms { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .rooms { grid-template-columns: 1fr; } }

.room-card {
  position: relative;
  padding: 22px 22px 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, border-color 0.2s;
  overflow: hidden;
  min-height: 200px;
}
.room-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 50%, var(--border));
}
.room-card .hash {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.room-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  margin: 0;
  letter-spacing: -0.01em;
}
.room-card h3 .it { font-style: italic; }
.room-card p {
  font-size: 13.5px;
  color: var(--fg-muted);
  line-height: 1.45;
  margin: 0;
}
.room-card .foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}
.room-card .av-stack {
  display: flex;
}
.room-card .av-stack i {
  width: 24px; height: 24px;
  border-radius: 999px;
  border: 2px solid var(--bg-2);
  margin-left: -8px;
  display: block;
}
.room-card .av-stack i:first-child { margin-left: 0; }
.room-card .count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-muted);
  display: inline-flex; align-items: center; gap: 6px;
}
.room-card .count .pulse-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: #2ecc71;
  animation: pulse 2s infinite;
}
.room-card.featured {
  background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 20%, var(--bg-2)) 0%, var(--bg-2) 60%);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
}

/* Features ------------------------------------------------------ */
.features {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}
.feat {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.feat h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
  max-width: 320px;
  text-wrap: balance;
}
.feat h3 em { color: var(--accent); }
.feat p {
  font-size: 14px;
  color: var(--fg-muted);
  margin: 0;
  line-height: 1.55;
  max-width: 360px;
}
.feat.sub { grid-column: span 1; }
.features-row-2 {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 900px) {
  .features, .features-row-2 { grid-template-columns: 1fr; }
}

/* Online counter visual */
.online-vis {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  gap: 14px;
}
.online-vis .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.03em;
  padding-bottom: 4px;
}
.online-vis .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  display: flex; flex-direction: column;
  gap: 2px;
  padding-bottom: 10px;
}

/* Private DM visual */
.dm-vis {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.dm-bubble {
  max-width: 78%;
  font-size: 13px;
  padding: 9px 14px;
  border-radius: 16px;
  line-height: 1.4;
}
.dm-bubble.me {
  background: var(--accent);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.dm-bubble.them {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--fg);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

/* Pa regjistrim visual */
.noreg-vis {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.noreg-vis .pill {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 10px 6px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  background: color-mix(in srgb, var(--bg) 60%, transparent);
}
.noreg-vis .pill.on { color: var(--fg); background: color-mix(in srgb, var(--accent) 18%, transparent); border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); }
.noreg-vis .pill.off { text-decoration: line-through; opacity: 0.6; }

/* Radio --------------------------------------------------------- */
.radio {
  background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 18%, var(--bg-2)), var(--bg-2));
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--border));
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
@media (max-width: 800px) {
  .radio { grid-template-columns: 1fr; padding: 28px; }
}
.radio-meta { display: flex; gap: 22px; align-items: center; }
.radio .cover {
  width: 96px; height: 96px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 30%, #fff 0%, var(--accent) 30%, #4a0a14 100%);
  position: relative;
  flex: 0 0 96px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.6);
}
.radio .cover::after {
  content: "";
  position: absolute; inset: 38%;
  border-radius: 999px;
  background: var(--bg);
  border: 2px solid color-mix(in srgb, var(--accent) 30%, transparent);
}
.radio .info {
  display: flex; flex-direction: column; gap: 10px;
  min-width: 0;
}
.radio .info .now {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 8px;
}
.radio .info .now .live-dot {
  width: 7px; height: 7px; border-radius: 999px; background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse-red 1.5s infinite;
}
@keyframes pulse-red {
  0%   { box-shadow: 0 0 0 0 rgba(220, 30, 46, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(220, 30, 46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(220, 30, 46, 0); }
}
.radio .info .title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
  padding-bottom: 2px;
}
.radio .info .by {
  font-size: 13px;
  color: var(--fg-muted);
}
.radio .controls {
  display: flex;
  align-items: center;
  gap: 18px;
}
.radio .play {
  width: 64px; height: 64px;
  border-radius: 999px;
  background: var(--fg);
  color: var(--bg);
  border: none;
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform 0.2s;
}
.radio .play:hover { transform: scale(1.05); }
.radio .play svg { width: 24px; height: 24px; }
.radio .equalizer {
  display: flex; align-items: end; gap: 3px; height: 36px;
}
.radio .equalizer i {
  width: 3px; background: var(--accent); border-radius: 2px;
  animation: eq 1s ease-in-out infinite;
}
.radio .equalizer i:nth-child(1) { height: 60%; animation-delay: 0s; }
.radio .equalizer i:nth-child(2) { height: 90%; animation-delay: 0.1s; }
.radio .equalizer i:nth-child(3) { height: 40%; animation-delay: 0.2s; }
.radio .equalizer i:nth-child(4) { height: 75%; animation-delay: 0.3s; }
.radio .equalizer i:nth-child(5) { height: 55%; animation-delay: 0.4s; }
.radio .equalizer i:nth-child(6) { height: 85%; animation-delay: 0.5s; }
@keyframes eq {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}
.radio .listeners {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-muted);
  text-align: right;
}
.radio .listeners b {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--fg);
}

/* Connect -------------------------------------------------------- */
.connect {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}
@media (max-width: 900px) { .connect { grid-template-columns: 1fr; } }
.connect-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 320px;
}
.connect-card .clients {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: auto;
}
.connect-card .client {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: color-mix(in srgb, var(--bg) 50%, transparent);
}
.connect-card .client .nm {
  font-size: 13px; font-weight: 500;
}
.connect-card .client .sub {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--fg-dim);
  letter-spacing: 0.04em;
}
.connect-card pre.irc-info {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin: 0;
  overflow-x: auto;
}
.connect-card pre.irc-info .key { color: var(--accent); }
.connect-card pre.irc-info .val { color: var(--fg); }

/* Footer -------------------------------------------------------- */
.footer {
  margin-top: 40px;
  border-top: 1px solid var(--border);
  padding: 36px 0 48px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
}
.footer .small {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
  text-transform: uppercase;
}
.footer-links { display: flex; gap: 22px; }
.footer-links a {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-links a:hover { color: var(--fg); }
.footer-flag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
}

/* Decorative double-headed eagle SVG embed helper class */
.eagle-mark {
  width: 16px; height: 16px;
  display: inline-block;
  vertical-align: -2px;
}

/* Marquee strip */
.marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-2) 60%, transparent);
}
.marquee-track {
  display: inline-flex;
  gap: 48px;
  padding: 14px 0;
  animation: marquee 40s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--fg-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-track .star {
  color: var(--accent);
  font-style: normal;
  font-family: var(--sans);
  font-size: 14px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Visually hidden */
.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
