:root {
  --bg: #07070c;
  --surface: #0f1018;
  --surface-2: #141625;
  --text: #f5f7ff;
  --muted: #a8aec7;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #ff2a2e;
  --accent-2: #ff7a45;
  --success: #42d98d;
  --warning: #ffd166;
  --radius: 18px;
  --shadow: 0 16px 44px rgba(0, 0, 0, 0.45);
  --grad: linear-gradient(110deg, #ff2a2e 0%, #ff7a45 100%);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 10% 0%, #171727 0%, #07070c 45%), var(--bg);
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.top-ticker {
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: hidden;
  background: linear-gradient(90deg, #be1418 0%, #ff2a2e 60%, #ff7a45 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.top-ticker-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: ticker 24s linear infinite;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.top-ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 26px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulseDot 1.5s infinite;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.site-header {
  position: sticky;
  top: 37px;
  z-index: 95;
  backdrop-filter: blur(12px);
  background: rgba(7, 7, 12, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 74px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #1f2234, #0f1018);
  color: #fff;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from 90deg, #ff2a2e, #ff7a45, #ff2a2e);
  z-index: -1;
  animation: spinBorder 5s linear infinite;
}

@keyframes spinBorder {
  to { transform: rotate(360deg); }
}

.header-actions,
.hero-actions,
.final-cta-actions,
.mobile-dock {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 60, 54, 0.42);
  animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%,100% { box-shadow: 0 10px 28px rgba(255,60,54,0.36); }
  50% { box-shadow: 0 10px 42px rgba(255,60,54,0.6); }
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

.hero {
  position: relative;
  padding: 74px 0 50px;
}

.hero-ghost {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(4.4rem, 13vw, 10rem);
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.035);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.hero-slider {
  position: relative;
  background: linear-gradient(145deg, rgba(23, 26, 40, 0.9), rgba(8, 8, 13, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-slides {
  display: flex;
  transition: transform 0.75s cubic-bezier(.7,0,.2,1);
}

.hero-slide {
  min-width: 100%;
  padding: clamp(34px, 5vw, 58px);
  display: grid;
  gap: 18px;
}

.hero-slide h1,
.hero-slide h2 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  line-height: 1.17;
}

.hero-slide h1 { font-size: clamp(1.9rem, 3.8vw, 3.2rem); }
.hero-slide h2 { font-size: clamp(1.45rem, 2.8vw, 2.4rem); }

.hero-slide p {
  margin: 0;
  color: #d7dced;
  max-width: 760px;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
}

.slider-dots {
  position: absolute;
  right: 24px;
  bottom: 20px;
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  background: transparent;
  cursor: pointer;
}

.slider-dot.active {
  background: var(--grad);
  border-color: transparent;
}

.address-console,
.stats-ribbon,
.address-cards,
.toc,
.info-section,
.games-rail,
.review-box,
.faq,
.event-banner,
.final-cta {
  margin-top: 26px;
}

.panel {
  background: linear-gradient(140deg, rgba(17, 19, 29, 0.92), rgba(10, 11, 17, 0.96));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.address-console {
  padding: 18px;
  font-family: "JetBrains Mono", monospace;
}

.console-head {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.console-head span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.console-head span:nth-child(1){background:#ff6058}
.console-head span:nth-child(2){background:#ffbd2e}
.console-head span:nth-child(3){background:#29c940}

.console-line {
  color: #d6deff;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
}

.cursor {
  display: inline-block;
  width: 9px;
  height: 1.05em;
  margin-left: 2px;
  background: #e9ecff;
  vertical-align: -2px;
  animation: blink 0.95s infinite;
}

@keyframes blink {
  0%,45% { opacity: 1; }
  55%,100% { opacity: 0; }
}

.stats-ribbon {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.stat-item {
  padding: 18px;
  text-align: center;
}

.stat-value {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin-bottom: 6px;
}

.stat-label {
  color: var(--muted);
  font-size: 0.94rem;
}

.address-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.address-card {
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.address-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  top: -90px;
  background: radial-gradient(circle at center, rgba(255,122,69,0.3), transparent 65%);
}

.card-label {
  font-family: "JetBrains Mono", monospace;
  color: #ffad92;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.card-value {
  margin: 9px 0 15px;
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(0.95rem, 2vw, 1.02rem);
  word-break: break-word;
}

.copy-btn {
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  background: rgba(255,255,255,0.02);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.86rem;
  cursor: pointer;
}

.toc {
  padding: 18px;
}

.toc h2,
.info-section h2,
.games-rail h2,
.review-box h2,
.faq h2,
.event-banner h2,
.final-cta h2 {
  margin-top: 0;
  font-family: "Unbounded", sans-serif;
  line-height: 1.25;
}

.toc nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 8px 16px;
}

.toc a {
  color: #dbe1f6;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
}

.info-section {
  padding: clamp(22px, 3vw, 32px);
}

.section-kicker {
  font-family: "JetBrains Mono", monospace;
  color: #ffad92;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.info-section p,
.info-section li,
.review-box p,
.faq-content,
.event-banner p,
.final-cta p,
footer p,
footer li {
  color: #d9def2;
  line-height: 1.8;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}

.info-box {
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
}

.guide-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 12px;
}

.guide-steps li {
  counter-increment: step;
  padding: 14px 14px 14px 56px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

.guide-steps li::before {
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 13px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad);
  font-weight: 800;
  color: #fff;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 12px;
}

th {
  font-family: "JetBrains Mono", monospace;
  color: #ffd0bc;
  font-size: 0.85rem;
}

.games-rail {
  padding: 24px;
}

.rail-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(240px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}

.game-card {
  scroll-snap-align: start;
  padding: 18px;
  min-height: 205px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(150deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  position: relative;
}

.game-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from 120deg, rgba(255,42,46,0.8), rgba(255,122,69,0.3), rgba(255,42,46,0.8));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.game-card:hover::after { opacity: 1; }

.game-card h3 {
  margin-top: 4px;
  margin-bottom: 10px;
  font-family: "Unbounded", sans-serif;
}

.review-box,
.faq,
.event-banner,
.final-cta {
  padding: 24px;
}

.review-topline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.rating-big {
  font-family: "Unbounded", sans-serif;
  font-size: 2.4rem;
  margin-bottom: 4px;
}

.rating-bars {
  display: grid;
  gap: 10px;
}

.bar {
  display: grid;
  grid-template-columns: 140px 1fr 58px;
  gap: 10px;
  align-items: center;
}

.bar-track {
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.11);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--grad);
}

.pros-cons {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
}

.pros-cons ul {
  margin: 0;
  padding-left: 20px;
}

.faq-item {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: #fff;
  padding: 15px 0;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-right: 20px;
}

.faq-item.active .faq-content {
  max-height: 300px;
}

.event-banner {
  border: 1px solid rgba(255, 122, 69, 0.34);
  background: linear-gradient(130deg, rgba(255,42,46,0.14), rgba(255,122,69,0.1));
}

.countdown {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.countdown-box {
  min-width: 84px;
  padding: 10px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  background: rgba(7,7,12,0.55);
}

.countdown-box strong {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-size: 1.32rem;
}

.final-cta {
  margin-bottom: 42px;
  text-align: center;
}

footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 26px 0 90px;
}

.footer-langs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-langs a {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.mobile-dock {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 98;
  background: rgba(12, 12, 18, 0.95);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 16px;
  padding: 10px;
  box-shadow: var(--shadow);
  display: none;
}

.mobile-dock .btn { flex: 1; }

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.toast {
  position: fixed;
  right: 16px;
  bottom: 90px;
  z-index: 999;
  background: #151825;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 10px 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .stats-ribbon,
  .address-cards,
  .info-grid,
  .pros-cons,
  .review-topline {
    grid-template-columns: 1fr;
  }

  .toc nav {
    grid-template-columns: 1fr;
  }

  .site-header {
    top: 34px;
  }

  .header-actions { display: none; }
  .mobile-dock { display: flex; }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 56px;
  }

  .hero-slide {
    padding: 24px;
  }

  .bar {
    grid-template-columns: 100px 1fr 40px;
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
