@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;800&family=Exo+2:wght@400;500;600;700&display=swap");

:root {
  --bg-main: #050b26;
  --bg-secondary: #09153f;
  --surface: rgba(9, 21, 63, 0.82);
  --surface-strong: rgba(7, 18, 55, 0.96);
  --line: rgba(82, 208, 255, 0.32);
  --line-soft: rgba(82, 208, 255, 0.14);
  --text-main: #e8f6ff;
  --text-soft: #9ec2d8;
  --accent: #36d5ff;
  --accent-2: #ff4db8;
  --accent-3: #74ffbf;
  --warning: #ffce57;
  --danger: #ff6c8f;
  --success: #49f8a8;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Exo 2", "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 10% 20%, rgba(54, 213, 255, 0.12), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(255, 77, 184, 0.16), transparent 42%),
    radial-gradient(circle at 70% 85%, rgba(116, 255, 191, 0.12), transparent 38%),
    linear-gradient(120deg, #040923, #07103a 55%, #08184a);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: url(../img/background.png);
  background-size: cover;
  background-position: center;
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.topline {
  border-bottom: 1px solid var(--line-soft);
  background: rgba(5, 11, 38, 0.78);
}

.topline__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  min-height: 42px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.age-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 77, 184, 0.12);
  border: 1px solid rgba(255, 77, 184, 0.5);
  color: #ffd7ef;
  font-weight: 600;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(5, 12, 40, 0.75);
  border-bottom: 1px solid var(--line-soft);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Orbitron", "Segoe UI", sans-serif;
  letter-spacing: 0.06em;
}

.brand__logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(54, 213, 255, 0.22), rgba(255, 77, 184, 0.2));
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 22px rgba(84, 212, 255, 0.22);
  overflow: hidden;
}

.brand__logo span {
  font-weight: 800;
  color: var(--accent);
}

.brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__text {
  font-size: 1.02rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(7, 19, 56, 0.85);
  color: var(--text-main);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  color: var(--text-soft);
  transition: color 0.2s ease;
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text-main);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.header__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.profile-pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text-soft);
  background: rgba(8, 18, 52, 0.75);
  font-size: 0.9rem;
}

.btn,
button.btn {
  border: 0;
  border-radius: 12px;
  padding: 11px 18px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover,
button.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent), #00a2ff);
  color: #062542;
  box-shadow: 0 14px 30px rgba(54, 213, 255, 0.33);
  display: inline-block;
}

.btn-alt {
  background: linear-gradient(90deg, #ff4db8, #ff6c8f);
  color: #2d0737;
  box-shadow: 0 14px 30px rgba(255, 77, 184, 0.3);
}

.btn-soft {
  background: rgba(9, 21, 63, 0.9);
  border: 1px solid var(--line);
  color: var(--text-main);
}

.hero {
  padding: 84px 0 52px;
  position: relative;
  overflow: clip;
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: 30px;
  background: radial-gradient(circle, rgba(54, 213, 255, 0.3) 0%, rgba(54, 213, 255, 0.04) 54%, transparent 72%);
  z-index: -1;
  filter: blur(3px);
}

.hero__grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
}

.hero__eyebrow {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  margin-bottom: 18px;
  font-size: 0.88rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.15;
  font-family: "Orbitron", "Segoe UI", sans-serif;
}

h1 {
  font-size: clamp(2.2rem, 5.1vw, 4rem);
  margin-bottom: 16px;
}

.hero__lead {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 62ch;
  margin-bottom: 28px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-card {
  position: relative;
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(14, 30, 83, 0.78), rgba(8, 18, 54, 0.88));
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-card img {
  border-radius: 15px;
}

.hero-card__title {
  font-size: 1.3rem;
  margin-bottom: 14px;
  margin-top: 15px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.stat-card {
  border-radius: 12px;
  background: rgba(9, 22, 66, 0.75);
  border: 1px solid var(--line-soft);
  padding: 12px;
}

.stat-card__value {
  font-family: "Orbitron", "Segoe UI", sans-serif;
  font-size: 1.2rem;
  color: var(--accent-3);
}

.stat-card__label {
  color: var(--text-soft);
  font-size: 0.86rem;
}

.section {
  padding: 52px 0;
}

.section--tight {
  padding-top: 24px;
}

.section-title {
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  margin-bottom: 12px;
}

.section-lead {
  color: var(--text-soft);
  max-width: 78ch;
  margin-bottom: 24px;
  line-height: 1.7;
}

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

.card {
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(10, 23, 69, 0.9), rgba(6, 16, 49, 0.85));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.card img {
  border-radius: 10px;
  margin-top: 10px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--text-soft);
  line-height: 1.58;
}

.card__meta {
  margin-top: 12px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
}

.game-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.card__actions {
  margin-top: 14px;
}

.list {
  padding-left: 20px;
  color: var(--text-soft);
  line-height: 1.65;
}

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

.surface {
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.callout {
  border-left: 4px solid var(--accent-3);
  background: rgba(116, 255, 191, 0.09);
  border-radius: 14px;
  padding: 16px 18px;
  color: #cefde8;
}

.notice {
  border: 1px solid rgba(255, 206, 87, 0.45);
  background: rgba(255, 206, 87, 0.08);
  color: #ffe8a3;
  border-radius: 12px;
  padding: 14px;
}

.hero-mini {
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(13, 35, 104, 0.15), rgba(8, 18, 54, 0.9)),
    radial-gradient(circle at 60% 30%, rgba(255, 77, 184, 0.35), transparent 42%),
    radial-gradient(circle at 20% 15%, rgba(54, 213, 255, 0.35), transparent 34%);
}

.hero-mini h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.9rem);
}

.page-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: rgba(54, 213, 255, 0.09);
}

.review {
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(7, 17, 49, 0.86);
}

.review__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 9px;
}

.review__score {
  color: var(--warning);
  font-weight: 700;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 11px;
  width: 2px;
  height: calc(100% - 8px);
  background: linear-gradient(var(--accent), rgba(255, 77, 184, 0.5));
}

.timeline-item {
  position: relative;
  padding: 0 0 26px 30px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(54, 213, 255, 0.16);
}

.timeline-item h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.timeline-item p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(8, 17, 50, 0.9);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text-main);
  text-align: left;
  padding: 14px 18px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.faq-answer {
  padding: 0 18px 16px;
  color: var(--text-soft);
  line-height: 1.65;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item + .faq-item {
  margin-top: 12px;
}

.form-field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.form-field label {
  color: var(--text-soft);
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: rgba(8, 18, 52, 0.84);
  color: var(--text-main);
  padding: 11px 12px;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(54, 213, 255, 0.4);
  border-color: var(--line);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-response {
  margin-top: 12px;
  display: none;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.95rem;
}

.form-response.show {
  display: block;
}

.form-response.success {
  border: 1px solid rgba(73, 248, 168, 0.4);
  background: rgba(73, 248, 168, 0.1);
  color: #cafde8;
}

.legal h3 {
  margin-top: 20px;
  font-size: 1.1rem;
}

.legal p,
.legal li {
  color: var(--text-soft);
  line-height: 1.7;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.kpi {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  background: rgba(7, 16, 46, 0.84);
}

.kpi__label {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.kpi__value {
  margin-top: 5px;
  font-family: "Orbitron", "Segoe UI", sans-serif;
  font-size: 1.25rem;
  color: var(--accent);
}

.game-shell {
  display: grid;
  gap: 18px;
}

.game-toolbar {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 14px;
}

.game-panel {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line-soft);
  background: rgba(7, 17, 50, 0.92);
}

.game-title {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}

.game-title h2 {
  font-size: 1.45rem;
}

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

.reel {
  min-height: 116px;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(15, 36, 102, 0.56), rgba(9, 20, 57, 0.88));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px;
  box-shadow: inset 0 0 30px rgba(84, 212, 255, 0.12);
  position: relative;
}

.reel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(7, 19, 56, 0.42),
    rgba(7, 19, 56, 0.02) 28%,
    rgba(7, 19, 56, 0.02) 72%,
    rgba(7, 19, 56, 0.5)
  );
  pointer-events: none;
}

.reel.spinning {
  animation: reelPulse 0.28s linear infinite;
}

.slot-symbol {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(176, 222, 255, 0.32);
  box-shadow: inset 0 0 20px rgba(93, 197, 255, 0.3), 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.reel.spinning .slot-symbol {
  transform: translateY(6px) scale(0.95);
  filter: blur(1px);
}

.slot-symbol svg {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 0 6px rgba(118, 228, 255, 0.55));
}

@keyframes reelPulse {
  0% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(-2px);
  }
}

.spin-wheel-wrap {
  display: grid;
  place-items: center;
  min-height: 390px;
}

.wheel-shell {
  width: 332px;
  height: 332px;
  position: relative;
}

.spin-wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 8px solid rgba(54, 213, 255, 0.48);
  box-shadow: 0 0 0 8px rgba(54, 213, 255, 0.14), 0 20px 38px rgba(0, 0, 0, 0.34);
  transition: transform 4s cubic-bezier(0.15, 0.85, 0.24, 1);
  transform: rotate(0deg);
}

.wheel-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: transform 4s cubic-bezier(0.15, 0.85, 0.24, 1);
  transform: rotate(0deg);
}

.wheel-label {
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 4px 6px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(215, 247, 255, 0.28);
  background: rgba(5, 14, 38, 0.82);
  color: #eaf7ff;
  min-width: 52px;
}

.wheel-label strong {
  display: block;
  font-size: 0.78rem;
  line-height: 1.1;
}

.wheel-label small {
  display: block;
  color: #9ed9ff;
  font-size: 0.66rem;
  margin-top: 1px;
}

.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 3px solid rgba(230, 249, 255, 0.7);
  background: radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.34), rgba(14, 35, 92, 0.9));
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "Orbitron", "Segoe UI", sans-serif;
  font-size: 0.75rem;
  color: #effcff;
  padding: 4px;
  line-height: 1.1;
}

.wheel-center strong {
  display: block;
  font-size: 0.86rem;
}

.wheel-center small {
  display: block;
  font-size: 0.66rem;
  color: #a6def8;
  margin-top: 1px;
}

.pointer {
  width: 58px;
  height: 34px;
  margin-bottom: 14px;
  position: relative;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: linear-gradient(180deg, #ff8bd7 0%, #ff3dad 62%, #a90070 100%);
  border: 1px solid rgba(255, 188, 233, 0.75);
  box-shadow:
    0 0 16px rgba(255, 61, 173, 0.85),
    0 0 36px rgba(255, 61, 173, 0.5),
    inset 0 -6px 12px rgba(97, 0, 64, 0.45);
}

.pointer::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(216, 247, 255, 0.8);
  background: radial-gradient(circle, #eaffff, #36d5ff 65%, #0f4c82 100%);
  box-shadow: 0 0 12px rgba(54, 213, 255, 0.8);
}

.payout-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.payout-list li {
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  background: rgba(10, 24, 66, 0.75);
  padding: 8px 10px;
  color: var(--text-soft);
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.9rem;
}

.hand-zone {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

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

.playing-card {
  width: 70px;
  height: 96px;
  perspective: 700px;
}

.playing-card__inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.52s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.playing-card.is-flipped .playing-card__inner {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  backface-visibility: hidden;
  border: 2px solid #d8e5ef;
}

.card-face--front {
  background: linear-gradient(180deg, #fefeff, #eaf3fb);
  color: #1f2e45;
  transform: rotateY(180deg);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 6px;
  font-weight: 700;
}

.card-face--back {
  background:
    linear-gradient(145deg, rgba(45, 89, 202, 0.95), rgba(32, 57, 136, 0.96)),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.08) 6px,
      transparent 6px,
      transparent 12px
    );
  display: grid;
  place-items: center;
  color: #def7ff;
  font-family: "Orbitron", "Segoe UI", sans-serif;
  font-size: 0.92rem;
}

.card-face__corner {
  font-size: 0.96rem;
  line-height: 1;
}

.card-face__corner--bottom {
  justify-self: end;
  transform: rotate(180deg);
}

.card-face__suit {
  justify-self: center;
  align-self: center;
  font-size: 1.35rem;
}

.playing-card.red .card-face--front {
  color: #c8204a;
}

.control-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.log {
  max-height: 190px;
  overflow: auto;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: rgba(6, 14, 40, 0.86);
  padding: 10px;
}

.log p {
  margin: 6px 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

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

.achievement {
  border-radius: 14px;
  padding: 14px;
  border: 1px solid var(--line-soft);
  background: rgba(7, 17, 50, 0.9);
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.achievement.unlocked {
  opacity: 1;
  border-color: rgba(116, 255, 191, 0.52);
  background: linear-gradient(160deg, rgba(116, 255, 191, 0.14), rgba(8, 18, 52, 0.9));
  transform: translateY(-1px);
}

.achievement h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.achievement p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.5;
  font-size: 0.92rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  border-bottom: 1px solid var(--line-soft);
  padding: 11px 8px;
  text-align: left;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.table th {
  color: var(--text-main);
}

.footer {
  margin-top: 54px;
  border-top: 1px solid var(--line-soft);
  background: rgba(4, 10, 31, 0.92);
}

.footer__grid {
  padding: 34px 0;
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 20px;
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.footer-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(82, 208, 255, 0.4);
  background: linear-gradient(140deg, rgba(54, 213, 255, 0.2), rgba(255, 77, 184, 0.2));
  box-shadow: inset 0 0 20px rgba(84, 212, 255, 0.2);
  margin-bottom: 12px;
  display: block;
}

.footer p,
.footer a {
  color: var(--text-soft);
  line-height: 1.68;
  font-size: 0.92rem;
}

.footer-links {
  display: grid;
  gap: 6px;
}

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 13px 0 22px;
  color: #94b7ce;
  font-size: 0.86rem;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 40;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(7, 18, 52, 0.95);
  box-shadow: var(--shadow);
  padding: 13px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.age-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  background: rgba(3, 8, 29, 0.86);
}

.age-modal.show {
  display: grid;
}

.age-modal__panel {
  width: min(560px, 90vw);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(6, 15, 45, 0.96);
  box-shadow: var(--shadow);
}

.age-modal__panel p {
  color: var(--text-soft);
  line-height: 1.62;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 0.7s ease forwards;
}

.reveal.delay-1 {
  animation-delay: 0.12s;
}

.reveal.delay-2 {
  animation-delay: 0.22s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .nav {
    gap: 12px;
    font-size: 0.9rem;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-toolbar {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .header__inner {
    min-height: 66px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    top: 67px;
    left: 0;
    right: 0;
    background: rgba(5, 12, 40, 0.97);
    border-bottom: 1px solid var(--line-soft);
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 4vw 16px;
    display: none;
  }

  .nav.show {
    display: flex;
  }

  .header__actions {
    margin-left: auto;
  }

  .hero {
    padding-top: 54px;
  }

  .hero__grid,
  .split,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 640px;
  }

  .achievement-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .topline__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 8px 0;
    gap: 6px;
  }

  .hero__lead,
  .section-lead {
    font-size: 0.98rem;
  }

  .card-grid,
  .stat-grid,
  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .spin-wheel-wrap {
    min-height: 320px;
  }

  .wheel-shell {
    width: 272px;
    height: 272px;
  }

  .pointer {
    width: 48px;
    height: 30px;
  }
}
