:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #111113;
  --panel-2: #18181b;
  --line: rgba(232, 188, 96, 0.26);
  --gold: #e8bc60;
  --gold-strong: #ffd978;
  --red: #f04646;
  --youtube: #ff2438;
  --kick: #53fc18;
  --text: #f4f1ea;
  --muted: #9a968c;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(232, 188, 96, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(232, 188, 96, 0.03) 1px, transparent 1px),
    var(--bg);
  background-size: 72px 72px, 72px 72px, auto;
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 48px;
}

.topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
}

.brand img,
.brand-mark {
  width: 42px;
  height: 42px;
}

.brand-mark {
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  background: #0b0b0c;
  color: var(--gold-strong);
  font-size: 14px;
  font-weight: 800;
}

.monthly-winners {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ece5da;
}

.winners-title {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.winner {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(20, 20, 21, 0.92), rgba(10, 10, 11, 0.94));
  padding: 0 9px 0 7px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.035),
    inset -1px -1px 0 rgba(0, 0, 0, 0.7);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.winner:hover {
  transform: translateY(-1px);
  background: linear-gradient(145deg, rgba(26, 25, 22, 0.96), rgba(12, 12, 12, 0.96));
}

.winner-cup {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  overflow: visible;
  filter: drop-shadow(0 0 8px rgba(232, 188, 96, 0.16));
}

.winner-cup .cup-shape {
  fill: currentColor;
}

.winner-cup text {
  fill: #090807;
  font-size: 22px;
  font-weight: 900;
  font-family: "Manrope", Arial, sans-serif;
  dominant-baseline: middle;
}

.winner-gold {
  border-color: rgba(255, 217, 120, 0.32);
}

.winner-gold .winner-cup {
  color: #f3bd37;
  filter: drop-shadow(0 0 10px rgba(255, 217, 120, 0.26));
}

.winner-silver .winner-cup {
  color: #cdd3d8;
  filter: drop-shadow(0 0 8px rgba(222, 231, 238, 0.14));
}

.winner-bronze .winner-cup {
  color: #c47a42;
  filter: drop-shadow(0 0 8px rgba(255, 166, 96, 0.14));
}

.topbar-status {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.mobile-kickers {
  display: none;
}

.topbar-status .status-chip {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
}

.topbar-status .status-chip::after,
.stream-card::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -70%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  transform: skewX(-18deg);
  animation: mirror-sweep var(--sweep-duration, 6.8s) ease-in-out infinite;
  pointer-events: none;
}

.stream-card {
  --sweep-duration: 11s;
}

.stream-card::after {
  animation-name: stream-mirror-sweep;
}

.topbar-status .online-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-color: rgba(83, 252, 24, 0.3);
  background:
    radial-gradient(circle at 20% 50%, rgba(83, 252, 24, 0.14), transparent 36%),
    linear-gradient(145deg, rgba(18, 35, 18, 0.74), rgba(9, 12, 9, 0.92));
  color: #e6f7df;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.055),
    inset -1px -1px 0 rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(83, 252, 24, 0.08),
    0 0 22px rgba(83, 252, 24, 0.08);
  animation: online-panel-pulse 2.8s ease-in-out infinite;
}

.topbar-status .online-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--kick);
  box-shadow:
    0 0 0 4px rgba(83, 252, 24, 0.12),
    0 0 14px rgba(83, 252, 24, 0.62);
  animation: online-dot-pulse 1.55s ease-in-out infinite;
}

.topbar-status .online-chip strong {
  color: #d9ff8f;
  text-shadow: 0 0 12px rgba(83, 252, 24, 0.32);
}

.topbar-status .live-streamers-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(18, 18, 19, 0.86), rgba(10, 10, 11, 0.94));
  color: var(--muted);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.04),
    inset -1px -1px 0 rgba(0, 0, 0, 0.72);
}

.topbar-status .live-streamers-chip.has-live {
  border-color: rgba(232, 188, 96, 0.42);
  background:
    radial-gradient(circle at 22% 50%, rgba(255, 217, 120, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(34, 27, 13, 0.78), rgba(12, 11, 9, 0.94));
  color: #f7ead0;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.055),
    inset -1px -1px 0 rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(232, 188, 96, 0.1),
    0 0 22px rgba(232, 188, 96, 0.1);
  animation: live-streamers-panel-pulse 3.2s ease-in-out infinite;
}

.topbar-status .live-streamers-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #5c5a52;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
}

.topbar-status .live-streamers-chip.has-live::before {
  background: var(--gold-strong);
  box-shadow:
    0 0 0 4px rgba(232, 188, 96, 0.11),
    0 0 14px rgba(255, 217, 120, 0.48);
  animation: online-dot-pulse 1.9s ease-in-out infinite;
}

.topbar-status .live-streamers-chip strong {
  color: #d8d3c9;
}

.topbar-status .live-streamers-chip.has-live strong {
  color: var(--gold-strong);
  text-shadow: 0 0 12px rgba(232, 188, 96, 0.38);
}

.topbar-status .total-chip strong {
  color: #f1eadf;
}

.main-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
  padding: 8px 0 20px;
}

.hero-copy {
  grid-column: span 2;
  align-self: stretch;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding: 0;
}

.hero-lockup {
  width: fit-content;
  max-width: 100%;
}

.hero-kickers {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.eyebrow {
  color: var(--gold);
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  font-size: 12px;
}

.eyebrow-muted {
  color: rgba(202, 196, 184, 0.62);
  font-weight: 700;
  text-align: right;
}

h1 {
  width: fit-content;
  max-width: 100%;
  font-size: clamp(56px, 10vw, 120px);
  line-height: 0.9;
  margin: 0;
  letter-spacing: 0;
}

.gold-scroll {
  position: absolute;
  right: 58px;
  top: 5px;
  z-index: 2;
  width: 138px;
  height: 122px;
  outline: 0;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.gold-scroll:focus,
.gold-scroll:focus-visible,
.gold-scroll:active {
  outline: 0;
}

.gold-scroll-img {
  position: absolute;
  display: block;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  filter:
    drop-shadow(0 12px 20px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 12px rgba(232, 188, 96, 0.14));
  transition: opacity 180ms ease, transform 260ms cubic-bezier(0.22, 0.9, 0.2, 1);
}

.gold-scroll-closed {
  left: 0;
  top: 0;
  width: 100%;
  height: 46px;
  opacity: 0.96;
}

.gold-scroll-open {
  left: 50%;
  top: 0;
  width: 116px;
  height: 116px;
  opacity: 0;
  transform-origin: top center;
  transform: translateX(-50%) scaleX(0.88) scaleY(0.18);
}

.gold-scroll-hint {
  position: absolute;
  left: 50%;
  top: 45px;
  width: 150px;
  display: grid;
  gap: 0;
  transform: translateX(-50%);
  color: rgba(208, 200, 184, 0.78);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  opacity: 0.92;
  transition: opacity 160ms ease, transform 160ms ease;
}

.gold-scroll-hint span:first-child,
.gold-scroll-hint span:nth-child(2) {
  color: var(--gold-strong);
}

.gold-scroll-hint span {
  display: block;
}

.gold-scroll:focus-visible .gold-scroll-closed,
.gold-scroll.is-open .gold-scroll-closed {
  opacity: 0;
  transform: translateY(-3px) scale(0.92);
}

.gold-scroll:focus-visible .gold-scroll-open,
.gold-scroll.is-open .gold-scroll-open {
  opacity: 1;
  transform: translateX(-50%) scaleX(1) scaleY(1);
}

.gold-scroll:focus-visible .gold-scroll-hint,
.gold-scroll.is-open .gold-scroll-hint {
  opacity: 0;
  transform: translateX(-50%) translateY(-4px);
}

@media (hover: hover) and (pointer: fine) {
  .gold-scroll:hover .gold-scroll-closed {
    opacity: 0;
    transform: translateY(-3px) scale(0.92);
  }

  .gold-scroll:hover .gold-scroll-open {
    opacity: 1;
    transform: translateX(-50%) scaleX(1) scaleY(1);
  }

  .gold-scroll:hover .gold-scroll-hint {
    opacity: 0;
    transform: translateX(-50%) translateY(-4px);
  }
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  position: relative;
  z-index: 3;
  gap: 8px;
  margin-top: 0;
}

.hero-action {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  width: 100%;
  padding: 0 10px;
  background: linear-gradient(145deg, rgba(20, 20, 21, 0.92), rgba(9, 9, 10, 0.96));
  color: #eee7db;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.045),
    inset -1px -1px 0 rgba(0, 0, 0, 0.74),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease, background 160ms ease;
}

.hero-action svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  fill: currentColor;
}

.bitcoin-mark {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.42), transparent 26%),
    linear-gradient(145deg, #ffd978, #d49522);
  color: #100c05;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  box-shadow:
    0 0 0 1px rgba(255, 217, 120, 0.24),
    0 0 14px rgba(232, 188, 96, 0.2);
}

.hero-action span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-action:hover {
  transform: translateY(-1px);
}

.hero-action-support {
  color: var(--gold-strong);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.045),
    inset -1px -1px 0 rgba(0, 0, 0, 0.74),
    0 0 0 1px rgba(232, 188, 96, 0.22),
    0 0 20px rgba(232, 188, 96, 0.055);
}

.hero-action-support:hover {
  background: linear-gradient(145deg, rgba(34, 28, 15, 0.86), rgba(10, 10, 10, 0.96));
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.05),
    inset -1px -1px 0 rgba(0, 0, 0, 0.74),
    0 0 0 1px rgba(232, 188, 96, 0.36),
    0 0 24px rgba(232, 188, 96, 0.1);
}

.hero-action-telegram {
  color: #dcefff;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.045),
    inset -1px -1px 0 rgba(0, 0, 0, 0.74),
    0 0 0 1px rgba(44, 165, 224, 0.24),
    0 0 20px rgba(44, 165, 224, 0.045);
}

.hero-action-telegram:hover {
  background: linear-gradient(145deg, rgba(16, 33, 43, 0.9), rgba(9, 10, 11, 0.96));
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.05),
    inset -1px -1px 0 rgba(0, 0, 0, 0.74),
    0 0 0 1px rgba(44, 165, 224, 0.38),
    0 0 24px rgba(44, 165, 224, 0.1);
}

.hero-action-mail {
  position: relative;
  color: #f1ede5;
  cursor: copy;
  user-select: text;
  transition: none;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.045),
    inset -1px -1px 0 rgba(0, 0, 0, 0.74),
    0 0 0 1px rgba(255, 255, 255, 0.11);
}

.hero-action-mail:hover {
  transform: none;
  background: linear-gradient(145deg, rgba(24, 24, 24, 0.95), rgba(10, 10, 10, 0.96));
  color: #f1ede5;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.05),
    inset -1px -1px 0 rgba(0, 0, 0, 0.74),
    0 0 0 1px rgba(255, 255, 255, 0.13);
}

.hero-action-mail .email-value {
  user-select: text;
}

.hero-action-mail.is-copied {
  color: #f1ede5;
  animation: copied-mail-pulse 520ms ease-out;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.05),
    inset -1px -1px 0 rgba(0, 0, 0, 0.74),
    0 0 0 1px rgba(83, 252, 24, 0.3),
    0 0 18px rgba(83, 252, 24, 0.08);
}

.copy-popover {
  position: absolute;
  left: 50%;
  top: calc(100% + 7px);
  z-index: 8;
  width: max-content;
  max-width: 180px;
  padding: 6px 9px;
  border: 1px solid rgba(83, 252, 24, 0.32);
  background: linear-gradient(145deg, rgba(14, 24, 14, 0.98), rgba(7, 8, 7, 0.98));
  color: #d9ff8f;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.38), 0 0 18px rgba(83, 252, 24, 0.08);
  transition: opacity 160ms ease;
}

.hero-action-mail.is-copied .copy-popover {
  opacity: 1;
  animation: copy-popover-pulse 520ms ease-out;
}

.sponsor-panel {
  align-self: start;
  width: 100%;
  position: relative;
  padding-top: 0;
}

.sponsor-heading {
  width: fit-content;
  margin: 0 auto 8px;
  position: relative;
  z-index: 2;
  color: var(--gold-strong);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 12px;
  background: transparent;
  text-shadow: 0 0 18px rgba(232, 188, 96, 0.22);
}

.sponsor-heading::before,
.sponsor-heading::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 188, 96, 0.58));
}

.sponsor-heading::before {
  right: 100%;
}

.sponsor-heading::after {
  left: 100%;
  transform: rotate(180deg);
}

.sponsor-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background:
    linear-gradient(135deg, rgba(232, 188, 96, 0.26), rgba(255, 255, 255, 0.05) 45%, rgba(232, 188, 96, 0.12));
  box-shadow:
    18px 20px 42px rgba(0, 0, 0, 0.5),
    0 0 46px rgba(232, 188, 96, 0.065),
    inset 1px 1px 0 rgba(255, 255, 255, 0.04);
}

.sponsor-tile {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 18px;
  background: linear-gradient(145deg, #171717, #101011);
  position: relative;
  overflow: visible;
  isolation: isolate;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.sponsor-tile::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(232, 188, 96, 0.16);
  opacity: 1;
  transition: opacity 160ms ease;
  pointer-events: none;
}

.sponsor-tile::after {
  content: none;
}

.sponsor-tile[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: calc(100% - 28px);
  padding: 7px 9px;
  transform: translate(-50%, 5px);
  border: 1px solid rgba(232, 188, 96, 0.28);
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.98), rgba(9, 9, 10, 0.98));
  color: #f4efe5;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  z-index: 6;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.48), 0 0 22px rgba(232, 188, 96, 0.09);
  transition: opacity 150ms ease, transform 150ms ease;
}

.sponsor-tile[data-tooltip]:hover::after,
.sponsor-tile[data-tooltip]:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.sponsor-tile:hover {
  z-index: 1;
  transform: translateY(-2px);
  background: linear-gradient(145deg, #1b1b1b, #111111);
  box-shadow: 0 0 30px rgba(232, 188, 96, 0.09);
}

.sponsor-tile:focus-visible {
  outline: 2px solid rgba(232, 188, 96, 0.72);
  outline-offset: 3px;
}

.sponsor-tile:hover::before {
  opacity: 1;
}

.sponsor-tile span {
  position: relative;
  color: rgba(245, 245, 245, 0.78);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  text-transform: none;
  transform: none;
  white-space: nowrap;
  z-index: 1;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.04);
  transition: color 160ms ease, transform 160ms ease;
}

.sponsor-placeholder:hover span {
  color: var(--gold-strong);
  transform: translateY(-16px);
}

.stream-grid {
  grid-column: 1 / -1;
  display: contents;
}

.stream-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  border: 0;
  background: linear-gradient(145deg, #121213 0%, #0d0d0e 100%);
  padding: 16px 18px;
  position: relative;
  overflow: hidden;
  color: inherit;
  cursor: default;
  box-shadow:
    12px 12px 24px rgba(0, 0, 0, 0.48),
    -8px -8px 18px rgba(255, 255, 255, 0.018),
    inset 1px 1px 0 rgba(255, 255, 255, 0.035),
    inset -1px -1px 0 rgba(0, 0, 0, 0.72);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.stream-grid .stream-card {
  margin-top: 10px;
}

.stream-card:focus-visible {
  outline: 2px solid rgba(232, 188, 96, 0.7);
  outline-offset: 3px;
}


.stream-card.is-live {
  background: linear-gradient(145deg, #151410 0%, #0f0f0e 100%);
  box-shadow:
    14px 14px 28px rgba(0, 0, 0, 0.54),
    -8px -8px 18px rgba(255, 255, 255, 0.02),
    0 0 0 1px rgba(232, 188, 96, 0.1) inset,
    0 0 34px rgba(232, 188, 96, 0.09);
}

.stream-card:hover {
  transform: translateY(-3px);
  box-shadow:
    16px 16px 30px rgba(0, 0, 0, 0.58),
    -8px -8px 18px rgba(255, 255, 255, 0.022),
    inset 1px 1px 0 rgba(255, 255, 255, 0.045),
    inset -1px -1px 0 rgba(0, 0, 0, 0.76);
}

.stream-card.is-actions-open {
  overflow: visible;
  z-index: 8;
}

.card-menu-button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 30px;
  height: 30px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 1px solid rgba(232, 188, 96, 0.22);
  background: linear-gradient(145deg, rgba(19, 19, 20, 0.96), rgba(8, 8, 9, 0.96));
  color: var(--gold);
  padding: 0;
  cursor: pointer;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.045),
    inset -1px -1px 0 rgba(0, 0, 0, 0.72);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.card-menu-button > span {
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  border-radius: 50%;
  background: currentColor;
}

.card-menu-button:hover,
.stream-card.is-actions-open .card-menu-button {
  border-color: rgba(255, 217, 120, 0.58);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.06),
    inset -1px -1px 0 rgba(0, 0, 0, 0.72),
    0 0 18px rgba(232, 188, 96, 0.16);
}

.card-action-drawer {
  position: absolute;
  top: 48px;
  right: 12px;
  z-index: 5;
  width: 156px;
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(232, 188, 96, 0.22);
  background:
    linear-gradient(145deg, rgba(19, 19, 20, 0.98), rgba(8, 8, 9, 0.98));
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  pointer-events: none;
  box-shadow:
    18px 18px 34px rgba(0, 0, 0, 0.5),
    inset 1px 1px 0 rgba(255, 255, 255, 0.045);
  transition: opacity 160ms ease, transform 160ms ease;
}

.stream-card.is-actions-open .card-action-drawer {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.card-action-link {
  display: grid;
  gap: 2px;
  min-height: 42px;
  justify-content: start;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  padding: 8px 10px;
  color: #f6efe3;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.card-action-link small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: none;
}

.card-action-link:hover {
  border-color: rgba(255, 217, 120, 0.5);
  background: rgba(232, 188, 96, 0.08);
  color: var(--gold-strong);
}

.card-action-kick:hover {
  border-color: rgba(83, 252, 24, 0.42);
  color: #dfffd7;
}

.card-top {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.avatar-wrap {
  width: 72px;
  height: 72px;
  position: relative;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 2px solid rgba(154, 150, 140, 0.34);
  border-radius: 50%;
  padding: 4px;
  background: #151517;
  box-shadow:
    inset 2px 2px 5px rgba(0, 0, 0, 0.72),
    inset -1px -1px 4px rgba(255, 255, 255, 0.04);
}

.avatar-link {
  display: block;
  flex: 0 0 auto;
  border-radius: 50%;
  cursor: pointer;
}

.avatar-link:hover .avatar-wrap {
  transform: translateY(-1px);
  border-color: rgba(255, 217, 120, 0.62);
  box-shadow:
    0 0 18px rgba(232, 188, 96, 0.18),
    inset 2px 2px 5px rgba(0, 0, 0, 0.72),
    inset -1px -1px 4px rgba(255, 255, 255, 0.05);
}

.avatar {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 0;
  background: #222;
}

.avatar-live {
  border-color: var(--gold);
  outline: 2px solid rgba(232, 188, 96, 0.3);
  outline-offset: 3px;
  box-shadow:
    0 0 18px rgba(232, 188, 96, 0.18),
    inset 2px 2px 5px rgba(0, 0, 0, 0.72),
    inset -1px -1px 4px rgba(255, 255, 255, 0.05);
}

.placeholder {
  display: grid;
  place-items: center;
  color: var(--gold);
  font-weight: 800;
  background: #0b0b0c;
  text-transform: uppercase;
}

.avatar-platforms {
  position: absolute;
  inset: -7px;
  pointer-events: none;
}

.platform-orb {
  position: absolute;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #050505;
  background: #252529;
  color: #d8d3c9;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
}

.platform-orb-kick {
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
}

.platform-orb-youtube {
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
}

.platform-orb-kick.is-online {
  background: var(--kick);
  color: #061005;
}

.platform-orb-youtube.is-online {
  background: var(--youtube);
  color: #fff;
}

.identity {
  min-width: 0;
  flex: 1;
  padding-right: 36px;
}

.identity-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.identity h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.streamer-name-link {
  transition: color 160ms ease, text-shadow 160ms ease;
}

.streamer-name-link:hover {
  color: var(--gold-strong);
  text-shadow: 0 0 16px rgba(232, 188, 96, 0.16);
}

.badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 0;
}

.badge {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 7px;
  font-size: 10px;
  font-weight: 800;
}

.badge.gold {
  border-color: rgba(232, 188, 96, 0.55);
  color: var(--gold);
}

.badge.red {
  color: var(--gold-strong);
  border-color: rgba(232, 188, 96, 0.45);
  background: rgba(232, 188, 96, 0.055);
}

.badge.muted {
  color: var(--muted);
}

.viewers,
.offline-strip {
  color: var(--muted);
  font-size: 12px;
}

.viewers,
.viewer-total {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #cfc8bb;
}

.stream-console {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.viewer-total {
  width: fit-content;
  height: 34px;
  border: 0;
  background: linear-gradient(145deg, #181819, #101011);
  padding: 0 11px;
  color: #f6efe3;
  font-size: 13px;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.045),
    inset -1px -1px 0 rgba(0, 0, 0, 0.72);
}

.viewer-total strong {
  font-size: 17px;
  color: var(--gold-strong);
}

.live-switches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.live-chip {
  height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: linear-gradient(145deg, #191a18, #10110f);
  color: #f8f3ea;
  padding: 0 11px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.045),
    inset -1px -1px 0 rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(83, 252, 24, 0.24);
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.live-chip:hover {
  transform: translateY(-1px);
}

.live-chip-kick {
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.045),
    inset -1px -1px 0 rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(83, 252, 24, 0.28);
}

.live-chip-youtube {
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.045),
    inset -1px -1px 0 rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(255, 36, 56, 0.34);
}

.live-chip-kick:hover {
  background: rgba(83, 252, 24, 0.12);
}

.live-chip-youtube:hover {
  background: rgba(255, 36, 56, 0.13);
}

.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(240, 70, 70, 0.12);
}

.live-chip-kick .chip-dot {
  background: var(--kick);
  box-shadow: 0 0 0 3px rgba(83, 252, 24, 0.12);
}

.eye-icon {
  position: relative;
  width: 16px;
  height: 10px;
  border: 1.7px solid currentColor;
  border-radius: 999px / 720px;
  display: inline-block;
}

.eye-icon::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: currentColor;
}

.platform-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding-top: 0;
}

.watch-link {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #d8d3c9;
  padding: 0 11px;
  font-weight: 800;
  font-size: 12px;
}

.watch-link.active {
  border-color: var(--gold);
  color: #0a0a0a;
  background: var(--gold-strong);
}

.offline-strip {
  width: fit-content;
  margin-top: 10px;
}

.empty-state {
  grid-column: 1 / -1;
  min-height: 280px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(17, 17, 19, 0.75);
  color: var(--muted);
  text-align: center;
  padding: 32px;
}

.scanner {
  width: 180px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: scan 1.8s ease-in-out infinite;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 13px;
}

.site-footer strong {
  color: var(--gold);
  margin-right: 10px;
}

.footer-text {
  text-align: right;
}

.back-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(232, 188, 96, 0.26);
  background: rgba(255, 255, 255, 0.035);
  color: #f2eadb;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.back-link:hover {
  transform: translateY(-1px);
  border-color: rgba(232, 188, 96, 0.48);
  background: rgba(232, 188, 96, 0.08);
}

.streamer-profile-shell {
  width: min(980px, calc(100% - 32px));
}

.profile-topbar {
  grid-template-columns: 1fr auto;
}

.profile-kick-top,
.profile-action {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232, 188, 96, 0.24);
  background: linear-gradient(145deg, rgba(18, 18, 19, 0.92), rgba(9, 9, 10, 0.94));
  padding: 0 13px;
  color: #f5efe4;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.045),
    inset -1px -1px 0 rgba(0, 0, 0, 0.72);
}

.profile-kick-top:hover,
.profile-action:hover {
  border-color: rgba(255, 217, 120, 0.55);
  color: var(--gold-strong);
}

.streamer-profile-hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 34px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(18, 18, 19, 0.92), rgba(9, 9, 10, 0.96));
  box-shadow:
    18px 18px 34px rgba(0, 0, 0, 0.48),
    inset 1px 1px 0 rgba(255, 255, 255, 0.035);
}

.profile-avatar-wrap {
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(154, 150, 140, 0.34);
  border-radius: 50%;
  padding: 6px;
  background: #151517;
}

.profile-avatar {
  width: 100px;
  height: 100px;
}

.profile-name-frame {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: visible;
}

.profile-heading h1,
.profile-name-fit {
  display: inline-block;
  width: max-content;
  max-width: none;
  margin: 6px 0 10px;
  font-size: 88px;
  line-height: 1;
  white-space: nowrap;
  overflow: visible;
}

.profile-status-row,
.profile-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.profile-actions {
  margin-top: 16px;
}

.profile-action.primary {
  border-color: rgba(83, 252, 24, 0.32);
  color: #e6f7df;
}

.stream-history {
  margin-top: 22px;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.section-title-row h2 {
  margin: 0;
  color: var(--gold-strong);
  font-size: 22px;
  text-transform: uppercase;
}

.history-list {
  display: grid;
  gap: 10px;
}

.history-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  background: linear-gradient(145deg, #121213 0%, #0d0d0e 100%);
  box-shadow:
    12px 12px 24px rgba(0, 0, 0, 0.42),
    inset 1px 1px 0 rgba(255, 255, 255, 0.035);
}

.history-row.is-active {
  box-shadow:
    12px 12px 24px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(232, 188, 96, 0.12) inset,
    0 0 24px rgba(232, 188, 96, 0.08);
}

.history-platform {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.history-main h3 {
  margin: 4px 0;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.history-main p,
.history-meta {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.history-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.history-meta span,
.history-meta a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.035);
}

.history-meta a {
  color: var(--gold-strong);
}

.profile-empty {
  min-height: 220px;
}

.age-gate-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.age-gate-bg span {
  position: absolute;
  left: var(--age-x);
  top: -28vh;
  color: rgba(255, 217, 120, 0.82);
  font-size: var(--age-size);
  font-weight: 900;
  line-height: 1;
  opacity: 0;
  filter: blur(var(--age-blur));
  text-shadow:
    0 0 20px rgba(232, 188, 96, 0.28),
    0 18px 44px rgba(0, 0, 0, 0.72);
  animation: age-bg-fall var(--age-duration) linear infinite;
  animation-delay: var(--age-delay);
}

.age-site-mark {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(232, 188, 96, 0.42);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 217, 120, 0.18), transparent 44%),
    linear-gradient(145deg, rgba(17, 17, 18, 0.9), rgba(7, 7, 8, 0.94));
  color: var(--gold-strong);
  font-size: 13px;
  font-weight: 900;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.46),
    0 0 22px rgba(232, 188, 96, 0.08),
    inset 1px 1px 0 rgba(255, 255, 255, 0.05),
    inset -1px -1px 0 rgba(0, 0, 0, 0.72);
  pointer-events: none;
}

.age-gate-lock {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 32%, rgba(232, 188, 96, 0.12), transparent 30%),
    rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(8px);
  animation: age-gate-in 180ms ease-out;
}

.age-gate.is-closing {
  opacity: 0;
  transition: opacity 180ms ease;
}

.age-gate-panel {
  width: min(480px, 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(20, 20, 20, 0.98), rgba(8, 8, 9, 0.98)),
    var(--panel);
  color: var(--text);
  box-shadow:
    24px 26px 70px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(232, 188, 96, 0.18),
    0 0 48px rgba(232, 188, 96, 0.08),
    inset 1px 1px 0 rgba(255, 255, 255, 0.045),
    inset -1px -1px 0 rgba(0, 0, 0, 0.78);
}

.age-gate-panel::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(232, 188, 96, 0.13);
  pointer-events: none;
}

.age-gate-mark {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(232, 188, 96, 0.46);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 217, 120, 0.24), transparent 42%),
    #0b0b0c;
  color: var(--gold-strong);
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(232, 188, 96, 0.12);
}

.age-gate-kicker {
  margin: 22px 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.age-gate h2 {
  margin: 0;
  font-size: clamp(32px, 6vw, 54px);
  line-height: 0.95;
}

.age-gate-copy {
  max-width: 390px;
  margin: 16px 0 0;
  color: #c9c2b6;
  font-size: 14px;
  line-height: 1.6;
}

.age-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.age-gate-button {
  min-height: 42px;
  border: 0;
  padding: 0 16px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.age-gate-button:hover {
  transform: translateY(-1px);
}

.age-gate-primary {
  background: var(--gold-strong);
  color: #080706;
  box-shadow: 0 0 24px rgba(232, 188, 96, 0.16);
}

.age-gate-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  color: #f0eadf;
}

.age-gate-panel.is-denied .age-gate-mark {
  border-color: rgba(255, 255, 255, 0.14);
  color: #d6d0c4;
  box-shadow: none;
}

.partner-offer {
  padding: 56px 0 20px;
}

.partner-offer h1 {
  margin-top: 10px;
}

.partner-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 26px;
  align-items: stretch;
  margin-top: 30px;
}

.partner-offer-copy,
.partner-offer-card {
  background: linear-gradient(145deg, #121213, #0d0d0e);
  box-shadow:
    14px 16px 32px rgba(0, 0, 0, 0.46),
    inset 1px 1px 0 rgba(255, 255, 255, 0.04),
    inset -1px -1px 0 rgba(0, 0, 0, 0.7);
}

.partner-offer-copy {
  padding: 28px;
}

.partner-offer-copy h2 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1.05;
}

.partner-offer-copy p,
.partner-offer-card p {
  color: #c9c2b6;
  line-height: 1.65;
}

.partner-offer-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(232, 188, 96, 0.18);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.partner-offer-card::before {
  content: "Casino";
  position: absolute;
  left: 24px;
  top: 22px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}

.partner-offer-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.partner-offer-card strong {
  color: var(--gold-strong);
  font-size: 30px;
  line-height: 1.1;
  margin-top: 8px;
}

.rating-shell {
  width: min(980px, calc(100% - 32px));
}

.rating-placeholder {
  padding-top: 48px;
}

.rating-placeholder h1 {
  margin-top: 10px;
}

.rating-card {
  max-width: 760px;
  margin-top: 24px;
  padding: 28px;
  background: linear-gradient(145deg, #121213, #0d0d0e);
  box-shadow:
    14px 16px 32px rgba(0, 0, 0, 0.46),
    inset 1px 1px 0 rgba(255, 255, 255, 0.04),
    inset -1px -1px 0 rgba(0, 0, 0, 0.7);
}

.rating-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.rating-card strong {
  display: block;
  margin-top: 12px;
  color: #f6efe3;
  font-size: clamp(24px, 4vw, 44px);
  line-height: 1.05;
}

.rating-card p {
  max-width: 620px;
  color: #c9c2b6;
  line-height: 1.65;
}

@keyframes scan {
  0%, 100% { transform: translateX(-30px); opacity: 0.35; }
  50% { transform: translateX(30px); opacity: 1; }
}

@keyframes mirror-sweep {
  0%, 34% {
    transform: translateX(0) skewX(-18deg);
    opacity: 0;
  }
  42% {
    opacity: 0.95;
  }
  58%, 100% {
    transform: translateX(430%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes stream-mirror-sweep {
  0%, 39% {
    transform: translateX(0) skewX(-18deg);
    opacity: 0;
  }
  42% {
    opacity: 0.92;
  }
  49%, 100% {
    transform: translateX(430%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes age-gate-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes age-bg-fall {
  0% {
    opacity: 0;
    transform: translate3d(0, -18vh, 0) rotate(var(--age-rotate));
  }
  12%, 78% {
    opacity: var(--age-opacity);
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--age-drift), 150vh, 0) rotate(calc(var(--age-rotate) * -1));
  }
}

@keyframes copied-mail-pulse {
  0% {
    box-shadow:
      inset 1px 1px 0 rgba(255, 255, 255, 0.05),
      inset -1px -1px 0 rgba(0, 0, 0, 0.74),
      0 0 0 1px rgba(83, 252, 24, 0.22),
      0 0 0 rgba(83, 252, 24, 0);
  }
  18% {
    box-shadow:
      inset 1px 1px 0 rgba(255, 255, 255, 0.07),
      inset -1px -1px 0 rgba(0, 0, 0, 0.74),
      0 0 0 1px rgba(83, 252, 24, 0.72),
      0 0 28px rgba(83, 252, 24, 0.28);
  }
  52% {
    box-shadow:
      inset 1px 1px 0 rgba(255, 255, 255, 0.05),
      inset -1px -1px 0 rgba(0, 0, 0, 0.74),
      0 0 0 1px rgba(83, 252, 24, 0.42),
      0 0 18px rgba(83, 252, 24, 0.16);
  }
  100% {
    box-shadow:
      inset 1px 1px 0 rgba(255, 255, 255, 0.045),
      inset -1px -1px 0 rgba(0, 0, 0, 0.74),
      0 0 0 1px rgba(255, 255, 255, 0.11);
  }
}

@keyframes copy-popover-pulse {
  0% {
    transform: translateX(-50%) scale(0.96);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.38), 0 0 0 rgba(83, 252, 24, 0);
  }
  18% {
    transform: translateX(-50%) scale(1.04);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.38), 0 0 32px rgba(83, 252, 24, 0.3);
  }
  52% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.38), 0 0 22px rgba(83, 252, 24, 0.16);
  }
  100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.38), 0 0 18px rgba(83, 252, 24, 0.08);
  }
}

@keyframes online-panel-pulse {
  0%, 100% {
    border-color: rgba(83, 252, 24, 0.24);
    box-shadow:
      inset 1px 1px 0 rgba(255, 255, 255, 0.055),
      inset -1px -1px 0 rgba(0, 0, 0, 0.72),
      0 0 0 1px rgba(83, 252, 24, 0.07),
      0 0 18px rgba(83, 252, 24, 0.07);
  }
  50% {
    border-color: rgba(83, 252, 24, 0.46);
    box-shadow:
      inset 1px 1px 0 rgba(255, 255, 255, 0.065),
      inset -1px -1px 0 rgba(0, 0, 0, 0.72),
      0 0 0 1px rgba(83, 252, 24, 0.12),
      0 0 28px rgba(83, 252, 24, 0.16);
  }
}

@keyframes online-dot-pulse {
  0%, 100% {
    transform: scale(0.86);
    opacity: 0.78;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes live-streamers-panel-pulse {
  0%, 100% {
    border-color: rgba(232, 188, 96, 0.34);
    box-shadow:
      inset 1px 1px 0 rgba(255, 255, 255, 0.055),
      inset -1px -1px 0 rgba(0, 0, 0, 0.72),
      0 0 0 1px rgba(232, 188, 96, 0.08),
      0 0 18px rgba(232, 188, 96, 0.08);
  }
  50% {
    border-color: rgba(255, 217, 120, 0.58);
    box-shadow:
      inset 1px 1px 0 rgba(255, 255, 255, 0.065),
      inset -1px -1px 0 rgba(0, 0, 0, 0.72),
      0 0 0 1px rgba(232, 188, 96, 0.14),
      0 0 28px rgba(232, 188, 96, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .age-gate-bg span,
  .age-gate,
  .topbar-status .online-chip,
  .topbar-status .online-chip::before,
  .topbar-status .online-chip::after,
  .topbar-status .live-streamers-chip.has-live,
  .topbar-status .live-streamers-chip.has-live::before,
  .stream-card::after {
    animation: none;
  }
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr;
  }

  .monthly-winners {
    justify-content: center;
  }

  .topbar-status {
    justify-content: center;
  }

  .main-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy,
  .sponsor-panel {
    grid-column: 1 / -1;
  }

  .partner-offer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .shell {
    width: calc(100% - 16px);
    max-width: calc(100% - 16px);
    padding: 12px 0 36px;
  }

  .topbar,
  .site-footer {
    align-items: flex-start;
  }

  .topbar {
    gap: 10px;
    padding-bottom: 12px;
  }

  .brand {
    font-size: 17px;
  }

  .brand img,
  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .monthly-winners {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .winners-title {
    grid-column: 1 / -1;
    font-size: 10px;
    text-align: center;
  }

  .winner {
    min-height: 34px;
    justify-content: center;
    padding: 0 6px;
    font-size: 10px;
    gap: 5px;
  }

  .winner-cup {
    width: 23px;
    height: 23px;
  }

  .topbar-status {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .topbar-status .status-chip {
    min-height: 38px;
    justify-content: center;
    padding: 7px 8px;
    font-size: 12px;
  }

  .mobile-kickers {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
    gap: 8px;
    padding-top: 4px;
  }

  .mobile-kickers .eyebrow {
    max-width: none;
    text-align: center;
  }

  .mobile-kickers .eyebrow:first-child {
    order: 2;
  }

  .mobile-kickers .eyebrow-muted {
    order: 1;
    text-align: center;
  }

  .footer-text {
    text-align: left;
  }

  .main-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 12px 0 14px;
    gap: 12px;
  }

  .hero-copy,
  .sponsor-panel {
    grid-column: 1;
  }

  .hero-copy {
    padding: 0;
  }

  .gold-scroll {
    position: absolute;
    right: 10px;
    top: -16px;
    width: 92px;
    height: 86px;
    margin: 0;
  }

  .gold-scroll-closed {
    top: 0;
    height: 30px;
  }

  .gold-scroll-open {
    top: 0;
    width: 78px;
    height: 78px;
    transform: translateX(-50%) scaleX(0.86) scaleY(0.18);
  }

  .gold-scroll-hint {
    left: 50%;
    right: auto;
    top: 35px;
    width: 108px;
    gap: 1px;
    transform: translateX(-50%);
    text-align: center;
    font-size: 7px;
    line-height: 1.04;
  }

  .gold-scroll:focus-visible .gold-scroll-hint,
  .gold-scroll.is-open .gold-scroll-hint {
    transform: translateX(-50%) translateY(-4px);
  }

  h1 {
    font-size: clamp(48px, 15vw, 64px);
  }

  .hero-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    margin-top: 9px;
  }

  .hero-action {
    min-height: 30px;
    min-width: 0;
    gap: 4px;
    padding: 0 5px;
    font-size: 9px;
  }

  .hero-action svg {
    width: 12px;
    height: 12px;
  }

  .bitcoin-mark {
    width: 16px;
    height: 16px;
    font-size: 12px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero-kickers {
    display: none;
  }

  .eyebrow-muted {
    text-align: left;
  }

  .sponsor-panel {
    padding-top: 4px;
  }

  .sponsor-heading {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .sponsor-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sponsor-tile {
    min-height: 88px;
    padding: 12px;
    overflow: hidden;
  }

  .sponsor-tile span {
    font-size: 17px;
  }

  .sponsor-tile[data-tooltip]::after {
    left: 12px;
    right: 12px;
    bottom: 9px;
    width: auto;
    padding: 6px 7px;
    transform: translateY(5px);
    font-size: 9px;
    line-height: 1.22;
  }

  .sponsor-tile[data-tooltip]:hover::after,
  .sponsor-tile[data-tooltip]:focus-visible::after {
    transform: translateY(0);
  }

  .sponsor-placeholder:hover span,
  .sponsor-placeholder:focus-visible span {
    transform: translateY(-14px);
  }

  .age-site-mark {
    right: 10px;
    bottom: 10px;
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .age-gate {
    padding: 10px;
  }

  .age-gate-panel {
    padding: 22px;
  }

  .age-gate-mark {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }

  .age-gate-actions {
    display: grid;
  }

  .age-gate-button {
    width: 100%;
  }

  .partner-offer {
    padding-top: 30px;
  }

  .partner-offer-copy,
  .partner-offer-card {
    padding: 20px;
    min-width: 0;
    max-width: 100%;
  }

  .partner-offer-grid {
    gap: 14px;
    margin-top: 20px;
    min-width: 0;
    max-width: 100%;
  }

  .partner-offer h1,
  .partner-offer-copy h2,
  .partner-offer-copy p,
  .partner-offer-card p {
    overflow-wrap: anywhere;
  }

  .partner-offer h1 {
    font-size: clamp(44px, 14vw, 64px);
    line-height: 0.95;
  }

  .partner-offer-card::before {
    left: 16px;
    top: 18px;
    font-size: clamp(42px, 18vw, 64px);
  }

  .rating-shell {
    width: calc(100% - 16px);
    max-width: calc(100% - 16px);
  }

  .rating-placeholder {
    padding-top: 30px;
  }

  .rating-card {
    padding: 20px;
  }

  .stream-card {
    min-height: 0;
    padding: 14px;
  }

  .card-menu-button {
    top: 10px;
    right: 10px;
  }

  .card-action-drawer {
    top: 46px;
    right: 10px;
  }

  .card-top {
    gap: 12px;
    align-items: flex-start;
  }

  .avatar-wrap {
    width: 72px;
    height: 72px;
    padding: 4px;
  }

  .avatar {
    width: 60px;
    height: 60px;
  }

  .platform-orb {
    width: 22px;
    height: 22px;
    font-size: 8px;
  }

  .identity h2 {
    font-size: 20px;
    line-height: 1.15;
  }

  .identity-row {
    gap: 8px;
  }

  .badge {
    padding: 4px 7px;
  }

  .stream-console {
    margin-top: 12px;
    gap: 8px;
  }

  .live-switches {
    display: flex;
  }

  .live-chip {
    height: 32px;
    font-size: 11px;
  }

  .viewer-total {
    height: 32px;
  }

  .platform-actions {
    margin-top: 10px;
    padding-top: 0;
  }

  .watch-link {
    min-height: 32px;
    padding: 0 13px;
  }

  .profile-topbar {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .profile-topbar .back-link,
  .profile-kick-top {
    width: 100%;
    justify-content: center;
  }

  .streamer-profile-hero {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
    padding: 18px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .profile-heading,
  .stream-history,
  .history-list,
  .history-row,
  .history-main {
    min-width: 0;
    max-width: 100%;
  }

  .profile-avatar-wrap {
    width: 92px;
    height: 92px;
  }

  .profile-avatar {
    width: 78px;
    height: 78px;
  }

  .profile-heading h1,
  .profile-name-fit {
    font-size: 58px;
    width: max-content;
    max-width: none;
    white-space: nowrap;
    overflow: visible;
  }

  .profile-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 8px;
  }

  .profile-action {
    min-width: 0;
    padding: 0 11px;
  }

  .history-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }

  .history-meta {
    justify-content: flex-start;
  }

  .section-title-row {
    display: grid;
    gap: 6px;
  }
}
