:root {
  --bg-deep: #07080c;
  --bg-mid: #0f1219;
  --surface: rgba(22, 26, 36, 0.65);
  --surface-solid: #141820;
  --stroke: rgba(255, 255, 255, 0.08);
  --stroke-bright: rgba(255, 255, 255, 0.14);
  --text: #f0f2f5;
  --text-muted: rgba(240, 242, 245, 0.62);
  --accent-gold: #d4b978;
  --accent-gold-dim: rgba(212, 185, 120, 0.35);
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.55);
  --radius-shell: 28px;
  --radius-tile: 18px;
  --nav-h: 52px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.5;
  background: var(--bg-deep);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  padding:
    max(12px, env(safe-area-inset-top))
    max(12px, env(safe-area-inset-right))
    max(24px, env(safe-area-inset-bottom))
    max(12px, env(safe-area-inset-left));
}

#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.45;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(110, 141, 156, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 40%, rgba(134, 46, 156, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 45% at 0% 80%, rgba(77, 171, 247, 0.1), transparent 45%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 50%, #0a0c10 100%);
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 max(12px, env(safe-area-inset-right)) 0 max(12px, env(safe-area-inset-left));
  background: rgba(7, 8, 12, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--stroke);
  transform: translateY(-100%);
  transition: transform 0.28s ease;
}

.site-nav.is-visible {
  transform: translateY(0);
}

.site-nav__scroll {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 560px;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.site-nav__scroll::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a.is-active {
  color: var(--accent-gold);
  border-color: var(--accent-gold-dim);
  background: rgba(212, 185, 120, 0.08);
}

.btn-top {
  position: fixed;
  bottom: max(20px, env(safe-area-inset-bottom));
  right: max(16px, env(safe-area-inset-right));
  z-index: 45;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--stroke-bright);
  background: rgba(20, 24, 32, 0.9);
  backdrop-filter: blur(8px);
  color: var(--accent-gold);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s, transform 0.25s;
}

.btn-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.btn-top:hover {
  background: rgba(40, 48, 60, 0.95);
}

.wrap {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
  padding: 28px 20px 32px;
}

.site-header {
  text-align: center;
  margin-bottom: 18px;
  padding-top: 8px;
}

.site-domain {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-gold);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--accent-gold-dim);
  background: linear-gradient(180deg, rgba(212, 185, 120, 0.12), rgba(212, 185, 120, 0.03));
}

.shell {
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-shell);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 36px 24px 40px;
}

.hero {
  text-align: center;
  margin-bottom: 8px;
}

.avatar-wrap {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-spin {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  pointer-events: none;
  background: conic-gradient(
    from 0deg,
    var(--accent-gold),
    rgba(134, 46, 156, 0.9),
    rgba(77, 171, 247, 0.85),
    rgba(110, 141, 156, 0.9),
    var(--accent-gold)
  );
  animation: avatar-spin 10s linear infinite;
  z-index: 0;
}

@keyframes avatar-spin {
  to {
    transform: rotate(360deg);
  }
}

.avatar-inner {
  position: relative;
  z-index: 1;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-solid);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.avatar {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-avatar {
  opacity: 0;
  transform: scale(0.88);
}

.hero-ready .hero-avatar {
  animation: hero-pop 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes hero-pop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.headline {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  color: var(--text);
  opacity: 0;
  transform: translateY(12px);
}

.hero-ready .headline {
  animation: hero-fade-up 0.6s ease 0.12s forwards;
}

.hero-tagline {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(10px);
}

.hero-ready .hero-tagline {
  animation: hero-fade-up 0.55s ease 0.22s forwards;
}

.hero-line {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.45;
  opacity: 0;
  transform: translateY(10px);
}

.hero-ready .hero-line {
  animation: hero-fade-up 0.55s ease 0.22s forwards;
}

@keyframes hero-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  opacity: 0;
}

.hero-ready .hero-social {
  animation: hero-fade-up 0.5s ease 0.42s forwards;
}

.hero-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.hero-social a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--stroke-bright);
}

.hero-social svg {
  width: 22px;
  height: 22px;
}

.revealable {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.revealable.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.section {
  margin-top: 30px;
}

.section:first-of-type {
  margin-top: 0;
}

.section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
}

.section-head::before,
.section-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--stroke-bright), transparent);
}

.section-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
}

.section-sub {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin: -8px 0 16px;
  line-height: 1.4;
}

.bio-card {
  border-radius: var(--radius-tile);
  border: 1px solid var(--stroke);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.bio-banner {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}

.bio-text {
  padding: 16px 18px 18px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat-cell {
  text-align: center;
  padding: 14px 8px;
  border-radius: var(--radius-tile);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke);
}

.stat-value {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.35;
}

.stat-label--sentence {
  text-transform: none;
  letter-spacing: 0.03em;
}

.social-strip {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 40px 14px 16px;
  border-radius: var(--radius-tile);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--stroke);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}

.social-card:hover::before {
  opacity: 1;
}

.social-card--instagram::before {
  background: linear-gradient(135deg, rgba(228, 64, 95, 0.18), transparent 55%);
}

.social-card--instagram:hover {
  box-shadow: 0 12px 40px rgba(228, 64, 95, 0.2);
  border-color: rgba(228, 64, 95, 0.35);
}

.social-card--youtube::before {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.15), transparent 55%);
}

.social-card--youtube:hover {
  box-shadow: 0 12px 40px rgba(255, 0, 0, 0.18);
  border-color: rgba(255, 0, 0, 0.3);
}

.social-card--tiktok::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 50%);
}

.social-card--tiktok:hover {
  box-shadow: 0 12px 40px rgba(105, 201, 208, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.social-card--vk::before {
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.2), transparent 55%);
}

.social-card--vk:hover {
  box-shadow: 0 12px 40px rgba(0, 119, 255, 0.22);
  border-color: rgba(0, 119, 255, 0.35);
}

.social-card--telegram::before {
  background: linear-gradient(135deg, rgba(38, 165, 228, 0.18), transparent 55%);
}

.social-card--telegram:hover {
  box-shadow: 0 12px 40px rgba(38, 165, 228, 0.2);
  border-color: rgba(38, 165, 228, 0.35);
}

.social-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-1px);
}

.social-card .soc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
}

.social-card .soc-icon svg {
  width: 26px;
  height: 26px;
}

.social-card .soc-body {
  flex: 1;
  min-width: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 1;
}

.social-card .soc-name {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.25;
}

.social-card .soc-stat {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-gold);
  line-height: 1.3;
}

.social-card .soc-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--text-muted);
  opacity: 0.5;
  z-index: 1;
}

.clips-carousel {
  position: relative;
  margin: 0 -8px;
}

.clips-carousel.is-paused .clips-scroller {
  scroll-snap-type: x mandatory;
}

.clips-scroller {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 14px;
  padding: 4px 8px 16px;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.clips-scroller::-webkit-scrollbar {
  display: none;
}

.clip-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.clip-item {
  width: 100%;
  max-width: min(280px, 100%);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.clips-nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--stroke-bright);
  background: rgba(20, 24, 32, 0.82);
  backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, opacity 0.2s, transform 0.15s;
}

.clips-nav:hover:not(:disabled) {
  background: rgba(40, 48, 60, 0.92);
  transform: translateY(-50%) scale(1.05);
}

.clips-nav:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.clips-nav--prev {
  left: 2px;
}

.clips-nav--next {
  right: 2px;
}

.clips-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  padding: 0 8px;
}

.clips-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.clips-dot.is-active {
  background: var(--accent-gold);
  transform: scale(1.2);
}

.clip-frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 460px;
  background: #0a0a0c;
}

.clip-likes {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.clip-lazy-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(212, 185, 120, 0.15), transparent 55%),
    linear-gradient(180deg, #12141a 0%, #07080c 100%);
  color: var(--text);
  transition: background 0.2s;
}

.clip-lazy-poster:hover {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(212, 185, 120, 0.25), transparent 55%),
    linear-gradient(180deg, #161a22 0%, #0a0c12 100%);
}

.clip-lazy-poster:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

.clip-lazy-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid var(--accent-gold-dim);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  padding-left: 4px;
}

.clip-lazy-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.clip-frame-wrap.is-loaded .clip-lazy-poster {
  display: none;
}

.clip-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.clip-open {
  display: block;
  text-align: center;
  padding: 10px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  border-top: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
  transition: color 0.2s, background 0.2s;
}

.clip-open:hover {
  color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.06);
}

.yt-block {
  border-radius: var(--radius-tile);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.35);
}

.yt-embed-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0a0a0c;
}

.yt-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.yt-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 20px;
  background: linear-gradient(160deg, rgba(255, 0, 0, 0.12), transparent 50%);
  text-decoration: none;
  color: var(--text);
}

.yt-fallback strong {
  font-size: 1rem;
}

.yt-fallback span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.spotify-embed-wrap {
  border-radius: var(--radius-tile);
  overflow: hidden;
  border: 1px solid var(--stroke);
  margin-bottom: 14px;
  min-height: 152px;
  background: rgba(0, 0, 0, 0.35);
}

.spotify-embed-wrap iframe {
  display: block;
  width: 100%;
  height: 152px;
  border: 0;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 12px;
  border-radius: var(--radius-tile);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke);
  text-decoration: none;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.tile:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--stroke-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.tile svg {
  width: 28px;
  height: 28px;
}

.quotes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-card {
  margin: 0;
  padding: 16px 18px;
  border-radius: var(--radius-tile);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
}

.quote-card cite {
  display: block;
  margin-top: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.cta-block {
  text-align: center;
  padding: 22px 20px;
  border-radius: var(--radius-tile);
  border: 1px solid var(--accent-gold-dim);
  background: linear-gradient(165deg, rgba(212, 185, 120, 0.14), rgba(22, 26, 36, 0.6));
}

.cta-block p {
  margin: 0 0 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.cta-btn--tg {
  background: #26a5e4;
  color: #fff;
}

.cta-btn--wa {
  background: #25d366;
  color: #fff;
}

.merch-teaser {
  text-align: center;
  padding: 18px;
  border-radius: var(--radius-tile);
  border: 1px dashed var(--stroke-bright);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.merch-teaser a {
  color: var(--accent-gold);
  font-weight: 800;
}

.map-wrap {
  border-radius: var(--radius-tile);
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

#live-map {
  width: 100%;
  height: 220px;
  display: block;
  background: #181a22;
}

#live-map .leaflet-tile-pane {
  filter: brightness(0.92) contrast(1.05);
}

.app-link {
  display: block;
  text-align: center;
  padding: 14px 18px;
  border-radius: var(--radius-tile);
  border: 1px solid var(--stroke-bright);
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-gold);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.app-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

/* ── Lyric of the day ─────────────────────── */
.lyric-card {
  text-align: center;
  padding: 18px 14px;
  border-radius: var(--radius-tile);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--stroke);
}

.lyric-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-bright);
  line-height: 1.5;
}

.lyric-author {
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Rap today ────────────────────────────── */
.rap-today-card {
  padding: 14px 16px;
  border-radius: var(--radius-tile);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke);
}

.rap-today__date {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.rap-today__text {
  font-size: 0.85rem;
  color: var(--text-bright);
  line-height: 1.5;
}

/* ── Post card ────────────────────────────── */
.post-card {
  padding: 16px;
  border-radius: var(--radius-tile);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke);
}

.post-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.post-card__body {
  font-size: 0.85rem;
  color: var(--text-bright);
  line-height: 1.5;
}

.post-card__date {
  margin-top: 8px;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.post-more-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 14px;
  border-radius: var(--radius-tile);
  border: 1px solid var(--stroke-bright);
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-gold);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.post-more-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.post-more-list {
  display: none;
  margin-top: 10px;
}

.post-more-list.is-open {
  display: block;
}

.post-more-item {
  padding: 12px 14px;
  margin-bottom: 8px;
  border-radius: var(--radius-tile);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--stroke);
}

.post-more-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.post-more-item p {
  font-size: 0.82rem;
  color: var(--text-bright);
  line-height: 1.4;
  margin: 0;
}

/* ── Online badge ─────────────────────────── */
.site-footer__online {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.site-footer__online span {
  color: var(--accent-gold);
  font-weight: 700;
}

.site-footer {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--stroke);
  text-align: center;
}

.site-footer__social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.site-footer__social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--stroke);
  transition: background 0.2s, transform 0.2s;
}

.site-footer__social a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.site-footer__social svg {
  width: 22px;
  height: 22px;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.site-footer__top {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-decoration: none;
}

.site-footer__top:hover {
  text-decoration: underline;
}

@media (max-width: 400px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .stat-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
  }

  .stat-label {
    margin-top: 0;
    text-align: center;
    max-width: none;
  }
}

@media (min-width: 480px) {
  .clips-nav {
    width: 48px;
    height: 48px;
  }
}
