﻿:root {
  --bg0: #070914;
  --bg1: #0b1230;
  --panel: rgba(12, 18, 44, 0.72);
  --panel-2: rgba(8, 12, 26, 0.7);
  --line: rgba(120, 200, 255, 0.16);
  --text: #e9f3ff;
  --text-dim: rgba(233, 243, 255, 0.76);
  --blue: #55c6ff;
  --blue-2: #2e7bff;
  --orange: #ff8a3d;
  --orange-2: #ffb04d;
  --ok: #3ee6a7;
  --warn: #ffcf5a;
  --danger: #ff6a7c;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  margin: 0;
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  min-height: 100vh;
  background:
    radial-gradient(1000px 600px at 15% -10%, rgba(85, 198, 255, 0.22), transparent 60%),
    radial-gradient(900px 520px at 85% 15%, rgba(255, 138, 61, 0.17), transparent 55%),
    radial-gradient(1100px 740px at 50% 120%, rgba(46, 123, 255, 0.18), transparent 60%),
    linear-gradient(140deg, var(--bg0) 0%, var(--bg1) 55%, #060716 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(120deg, rgba(85, 198, 255, 0.05), transparent 35%),
    linear-gradient(300deg, rgba(255, 138, 61, 0.05), transparent 40%),
    repeating-linear-gradient(
      45deg,
      rgba(120, 200, 255, 0.045) 0 1px,
      transparent 1px 16px
    );
  opacity: 0.85;
  mix-blend-mode: screen;
  z-index: -1;
}

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

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

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

.full-bleed {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 9, 20, 0.66);
  border-bottom: 1px solid var(--line);
}

.topbar {
  border-bottom: 1px solid rgba(120, 200, 255, 0.14);
  background: rgba(6, 8, 18, 0.72);
}

.topbar-inner {
  min-height: 34px;
  padding: 6px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar-left,
.topbar-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.topchip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 138, 61, 0.28);
  background: rgba(255, 138, 61, 0.12);
  color: rgba(255, 238, 226, 0.92);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.toptext {
  color: rgba(233, 243, 255, 0.7);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.toplink {
  color: rgba(233, 243, 255, 0.72);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.toplink:hover {
  color: rgba(233, 243, 255, 0.92);
  border-color: rgba(120, 200, 255, 0.14);
  background: rgba(12, 18, 44, 0.45);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  position: relative;
}

.header-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.12rem;
}

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.brand span {
  color: var(--orange);
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.site-nav a {
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(233, 243, 255, 0.82);
  border: 1px solid transparent;
  transition: 0.22s ease;
}

.site-nav a:hover {
  border-color: rgba(85, 198, 255, 0.18);
  background: rgba(12, 18, 44, 0.55);
  color: var(--text);
}

.site-nav a.active {
  border-color: rgba(255, 138, 61, 0.34);
  background: rgba(255, 138, 61, 0.11);
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: rgba(12, 18, 44, 0.55);
  font-size: 1.15rem;
  width: 46px;
  height: 46px;
}

.wallet-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(85, 198, 255, 0.2);
  background: rgba(12, 18, 44, 0.6);
  color: rgba(233, 243, 255, 0.85);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.wallet-pill strong {
  color: var(--orange-2);
}

.hero {
  margin-top: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(120, 200, 255, 0.18);
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(85, 198, 255, 0.18), transparent 55%),
    radial-gradient(900px 520px at 85% 20%, rgba(255, 138, 61, 0.12), transparent 55%),
    linear-gradient(140deg, rgba(12, 18, 44, 0.86), rgba(8, 12, 26, 0.74));
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: clamp(26px, 4vw, 44px);
}

.page-hero {
  margin-top: 20px;
  border-radius: 20px;
  border: 1px solid rgba(120, 200, 255, 0.2);
  background:
    linear-gradient(90deg, rgba(255, 138, 61, 0.18) 0 6px, transparent 6px 100%),
    radial-gradient(840px 420px at 88% -10%, rgba(85, 198, 255, 0.18), transparent 60%),
    linear-gradient(135deg, rgba(10, 15, 36, 0.95), rgba(8, 12, 26, 0.92));
  box-shadow: var(--shadow);
  padding: clamp(18px, 3.2vw, 32px) clamp(18px, 3.4vw, 36px);
  display: grid;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 18px;
  width: 140px;
  height: 140px;
  border-radius: 24px;
  transform: rotate(14deg);
  background:
    linear-gradient(145deg, rgba(255, 176, 77, 0.22), rgba(85, 198, 255, 0.12));
  border: 1px solid rgba(120, 200, 255, 0.22);
  pointer-events: none;
}

.hero-alt {
  background:
    radial-gradient(1200px 680px at 10% 10%, rgba(255, 176, 77, 0.18), transparent 55%),
    radial-gradient(900px 520px at 90% 20%, rgba(85, 198, 255, 0.2), transparent 55%),
    linear-gradient(120deg, rgba(12, 18, 44, 0.9), rgba(8, 12, 26, 0.9));
  border-color: rgba(255, 176, 77, 0.2);
}

.hero-cover {
  position: relative;
  min-height: clamp(420px, 70vh, 640px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(28px, 5vw, 62px);
  background: rgba(8, 12, 26, 0.5);
  border-color: rgba(255, 176, 77, 0.26);
}

.hero-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../img/background.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.35) saturate(1.05);
  transform: scale(1.05);
  z-index: 0;
}

.hero-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(820px 420px at 50% 10%, rgba(85, 198, 255, 0.22), transparent 60%),
    radial-gradient(780px 400px at 50% 100%, rgba(255, 138, 61, 0.2), transparent 62%),
    linear-gradient(180deg, rgba(6, 8, 18, 0.3), rgba(6, 8, 18, 0.7));
  z-index: 1;
}

.hero-cover-inner {
  position: relative;
  z-index: 2;
  width: min(780px, 92vw);
  display: grid;
  justify-items: center;
  gap: 12px;
}

.hero-cover .chip {
  justify-content: center;
}

.hero-cover h1 {
  margin-top: 8px;
}

.hero-cover p {
  max-width: 64ch;
  color: rgba(233, 243, 255, 0.88);
}

.hero-cover .hero-actions {
  justify-content: center;
}

.hero-main {
  display: grid;
  gap: 12px;
}

.hero-tiles {
  display: grid;
  gap: 12px;
  align-content: start;
}

.hero-media img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  border: 1px solid rgba(120, 200, 255, 0.16);
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.hero-tile {
  border-radius: 18px;
  border: 1px solid rgba(255, 176, 77, 0.2);
  background: rgba(8, 12, 26, 0.6);
  padding: 16px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.hero-tile h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.hero-tile p {
  margin: 0;
  color: var(--text-dim);
  line-height: 1.6;
}

.masthead {
  margin-top: 26px;
  min-height: clamp(520px, 78vh, 760px);
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(120, 200, 255, 0.2);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background: rgba(12, 18, 44, 0.5);
}

.masthead::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../img/background.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: saturate(1.05) contrast(1.1) brightness(0.62);
  transform: scale(1.04);
  z-index: 0;
}

.masthead::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 20% 15%, rgba(85, 198, 255, 0.22), transparent 55%),
    radial-gradient(900px 520px at 80% 25%, rgba(255, 138, 61, 0.2), transparent 55%),
    linear-gradient(180deg, rgba(7, 9, 20, 0.55), rgba(7, 9, 20, 0.84));
  z-index: 1;
}

.masthead-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(28px, 5vw, 64px) 0;
  width: min(980px, 92vw);
}

.masthead .chip {
  justify-content: center;
}

.masthead h1 {
  margin: 16px 0 12px;
  font-size: clamp(2.2rem, 6.8vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.masthead p {
  margin: 0 auto;
  max-width: 64ch;
  color: rgba(233, 243, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.7;
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.45);
}

.masthead .hero-actions {
  margin-top: 18px;
  justify-content: center;
}

.masthead .badge-row {
  margin-top: 16px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(18px, 4vw, 48px);
  align-items: start;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 138, 61, 0.26);
  background: rgba(255, 138, 61, 0.1);
  color: rgba(255, 238, 226, 0.92);
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 0.86rem;
}

.hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(2.05rem, 5.6vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.hero p {
  margin: 0;
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 1.04rem;
}

.page-hero h1 {
  margin: 6px 0 4px;
  font-size: clamp(1.6rem, 3.8vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  max-width: 24ch;
  position: relative;
  z-index: 1;
}

.page-hero p {
  margin: 0;
  color: rgba(233, 243, 255, 0.84);
  line-height: 1.65;
  max-width: 72ch;
  position: relative;
  z-index: 1;
}

.page-hero .chip {
  position: relative;
  z-index: 1;
  width: fit-content;
}

.page-hero .wallet {
  margin-top: 2px;
  position: relative;
  z-index: 1;
  width: fit-content;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.22s ease;
  user-select: none;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(85, 198, 255, 0.9), rgba(46, 123, 255, 0.9));
  color: #07101b;
  box-shadow: 0 12px 26px rgba(46, 123, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(46, 123, 255, 0.32);
}

.btn-secondary {
  background: rgba(12, 18, 44, 0.6);
  border-color: rgba(120, 200, 255, 0.18);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: rgba(255, 138, 61, 0.28);
  background: rgba(12, 18, 44, 0.72);
}

.btn-accent {
  background: linear-gradient(135deg, rgba(255, 138, 61, 0.96), rgba(255, 176, 77, 0.92));
  color: #1a0b06;
  box-shadow: 0 12px 26px rgba(255, 138, 61, 0.22);
}

.btn-accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(255, 138, 61, 0.3);
}

.section {
  margin-top: 26px;
}

.compliance-lab {
  margin-top: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(120, 200, 255, 0.22);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background:
    radial-gradient(1000px 520px at 10% 0%, rgba(85, 198, 255, 0.2), transparent 55%),
    radial-gradient(900px 460px at 90% 10%, rgba(255, 138, 61, 0.18), transparent 55%),
    linear-gradient(135deg, rgba(12, 18, 44, 0.92), rgba(7, 11, 24, 0.9));
  padding: clamp(20px, 3.8vw, 34px);
}

.compliance-lab::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(115deg, rgba(120, 200, 255, 0.06) 0 1px, transparent 1px 20px),
    repeating-linear-gradient(-115deg, rgba(255, 138, 61, 0.05) 0 1px, transparent 1px 24px);
  opacity: 0.85;
}

.compliance-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
  align-items: stretch;
}

.compliance-intro {
  border-radius: 20px;
  border: 1px solid rgba(120, 200, 255, 0.18);
  background: rgba(6, 10, 24, 0.52);
  padding: 18px;
  display: grid;
  gap: 10px;
}

.compliance-intro h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3.6vw, 2.4rem);
  letter-spacing: -0.02em;
}

.compliance-intro p {
  margin: 0;
  color: rgba(233, 243, 255, 0.82);
  line-height: 1.7;
}

.compliance-tags {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.compliance-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(120, 200, 255, 0.22);
  background: rgba(12, 18, 44, 0.6);
  color: rgba(233, 243, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 900;
}

.compliance-panel {
  border-radius: 20px;
  border: 1px solid rgba(255, 176, 77, 0.24);
  background: rgba(6, 10, 24, 0.58);
  padding: 14px;
  display: grid;
  gap: 10px;
}

.compliance-line {
  border-radius: 14px;
  border: 1px solid rgba(120, 200, 255, 0.16);
  background: rgba(12, 18, 44, 0.56);
  padding: 14px 14px 14px 54px;
  position: relative;
}

.compliance-line::before {
  content: attr(data-step);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 900;
  color: rgba(7, 9, 20, 0.94);
  background: linear-gradient(135deg, rgba(85, 198, 255, 0.95), rgba(255, 176, 77, 0.9));
}

.compliance-line h3 {
  margin: 0 0 5px;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.compliance-line p {
  margin: 0;
  color: rgba(233, 243, 255, 0.8);
  line-height: 1.55;
}

.compliance-marquee {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.compliance-marquee span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 138, 61, 0.26);
  background: rgba(255, 138, 61, 0.12);
  color: rgba(255, 238, 226, 0.92);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.how {
  margin-top: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(120, 200, 255, 0.18);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background: rgba(12, 18, 44, 0.52);
}

.how::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(85, 198, 255, 0.18), transparent 55%),
    radial-gradient(900px 520px at 85% 25%, rgba(255, 138, 61, 0.14), transparent 55%),
    repeating-linear-gradient(90deg, rgba(120, 200, 255, 0.06) 0 1px, transparent 1px 22px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.how-inner {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 4vw, 44px) 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(14px, 4vw, 28px);
  align-items: start;
}

.how-head h2 {
  margin: 14px 0 10px;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  letter-spacing: -0.02em;
}

.how-head .lead {
  margin: 0;
  color: rgba(233, 243, 255, 0.82);
  line-height: 1.7;
}

.how-head .hero-actions {
  margin-top: 14px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  perspective: 900px;
}

.step-card {
  border-radius: 18px;
  border: 1px solid rgba(120, 200, 255, 0.16);
  background: rgba(8, 12, 26, 0.55);
  padding: 18px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(450px 220px at 20% 10%, rgba(85, 198, 255, 0.18), transparent 55%),
    radial-gradient(420px 220px at 80% 25%, rgba(255, 138, 61, 0.16), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.step-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.step-card:hover {
  transform: translateY(-4px) rotateX(1deg) rotateY(-1deg);
  border-color: rgba(255, 138, 61, 0.26);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.32);
}

.step-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.step-num {
  font-weight: 900;
  letter-spacing: 0.04em;
  color: rgba(233, 243, 255, 0.14);
  font-size: 1.4rem;
  line-height: 1;
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(85, 198, 255, 0.12);
  border: 1px solid rgba(85, 198, 255, 0.18);
  font-size: 1.25rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.step-card h3 {
  margin: 14px 0 8px;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.step-card p {
  margin: 0;
  color: rgba(233, 243, 255, 0.78);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.games-showcase {
  margin-top: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(120, 200, 255, 0.18);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background: rgba(12, 18, 44, 0.5);
}

.games-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 12% 10%, rgba(85, 198, 255, 0.16), transparent 55%),
    radial-gradient(900px 520px at 88% 25%, rgba(255, 138, 61, 0.14), transparent 55%),
    repeating-linear-gradient(0deg, rgba(120, 200, 255, 0.06) 0 1px, transparent 1px 24px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.games-inner {
  position: relative;
  z-index: 1;
  padding: clamp(18px, 3.8vw, 38px) 0;
}

.games-showcase-compact {
  padding: 0;
}

.games-inner.compact {
  padding: clamp(16px, 3vw, 26px) 0;
}

.compact-head {
  margin-bottom: 10px;
}

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

.game-tile {
  border-radius: 18px;
  border: 1px solid rgba(120, 200, 255, 0.16);
  background: rgba(8, 12, 26, 0.58);
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  display: grid;
  grid-template-rows: auto 1fr;
}

.game-tile.accent {
  border-color: rgba(255, 138, 61, 0.24);
}

.game-tile-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: rgba(7, 9, 20, 0.62);
}

.game-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-tile-media .game-chip {
  position: absolute;
  left: 10px;
  bottom: 10px;
}

.game-tile-body {
  
  padding: 12px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.game-tile-body h3 {
  margin: 0;
  font-size: 1.06rem;
}

.game-tile-body p {
  margin: 0;
  color: rgba(233, 243, 255, 0.8);
  line-height: 1.55;
  min-height: 48px;
}

.game-tile-body .btn {
  margin-top: 2px;
  width: 100%;
}

.games-stack {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.game-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  border-radius: 20px;
  border: 1px solid rgba(120, 200, 255, 0.16);
  background: rgba(8, 12, 26, 0.55);
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
}

.game-row.reverse .game-row-media {
  order: 2;
}

.game-row.reverse .game-row-body {
  
  order: 1;
}

.game-row-media {
  position: relative;
  min-height: 240px;
  background: rgba(7, 9, 20, 0.6);
}



.game-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-row-body {
  
  padding: 18px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.game-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.game-row-top h3 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.game-row p {
  margin: 0;
  color: rgba(233, 243, 255, 0.82);
  line-height: 1.65;
}

.game-row-points {
  margin: 0;
  padding-left: 18px;
  color: rgba(233, 243, 255, 0.76);
  line-height: 1.55;
  display: grid;
  gap: 6px;
}

.game-row.accent {
  border-color: rgba(255, 138, 61, 0.18);
  background:
    radial-gradient(640px 320px at 20% 10%, rgba(85, 198, 255, 0.1), transparent 55%),
    radial-gradient(640px 320px at 85% 20%, rgba(255, 138, 61, 0.16), transparent 55%),
    rgba(8, 12, 26, 0.55);
}

.pledge {
  margin-top: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(120, 200, 255, 0.18);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background: rgba(12, 18, 44, 0.5);
}

.pledge::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 18% 0%, rgba(85, 198, 255, 0.16), transparent 55%),
    radial-gradient(900px 520px at 82% 15%, rgba(255, 138, 61, 0.14), transparent 55%),
    radial-gradient(900px 520px at 50% 120%, rgba(46, 123, 255, 0.14), transparent 60%),
    repeating-linear-gradient(45deg, rgba(120, 200, 255, 0.05) 0 1px, transparent 1px 18px);
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
}

.pledge-inner {
  position: relative;
  z-index: 1;
  padding: clamp(18px, 3.8vw, 38px) 0;
}

.pledge-head h2 {
  margin: 14px 0 10px;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  letter-spacing: -0.02em;
}

.pledge-head .lead {
  margin: 0;
  color: rgba(233, 243, 255, 0.82);
  line-height: 1.7;
}

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

.pledge-card {
  border-radius: 20px;
  border: 1px solid rgba(120, 200, 255, 0.16);
  background: rgba(8, 12, 26, 0.55);
  padding: 18px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.pledge-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(520px 260px at 18% 10%, rgba(85, 198, 255, 0.16), transparent 55%),
    radial-gradient(520px 260px at 82% 20%, rgba(255, 138, 61, 0.14), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.pledge-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 138, 61, 0.26);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
}

.pledge-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.pledge-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(85, 198, 255, 0.12);
  border: 1px solid rgba(85, 198, 255, 0.18);
  font-size: 1.25rem;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.24);
}

.pledge-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(120, 200, 255, 0.18);
  background: rgba(12, 18, 44, 0.5);
  color: rgba(233, 243, 255, 0.76);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

.pledge-card h3 {
  margin: 14px 0 8px;
  font-size: 1.08rem;
  position: relative;
  z-index: 1;
}

.pledge-card p {
  margin: 0;
  color: rgba(233, 243, 255, 0.78);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.pledge-card.accent {
  border-color: rgba(255, 138, 61, 0.2);
  background:
    radial-gradient(520px 260px at 18% 10%, rgba(85, 198, 255, 0.1), transparent 55%),
    radial-gradient(520px 260px at 82% 20%, rgba(255, 138, 61, 0.18), transparent 55%),
    rgba(8, 12, 26, 0.55);
}

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.section h2 {
  margin: 0;
  font-size: 1.65rem;
  letter-spacing: -0.01em;
}

.section p.lead {
  margin: 6px 0 0;
  color: var(--text-dim);
  line-height: 1.7;
}

.card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(120, 200, 255, 0.16);
  background: rgba(12, 18, 44, 0.6);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.card p {
  margin: 0;
  color: var(--text-dim);
  line-height: 1.65;
}

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

.info-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
}

.info-media {
  border-radius: 18px;
  border: 1px solid rgba(120, 200, 255, 0.16);
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  background: rgba(8, 12, 26, 0.55);
}

.info-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-body {
  
  border-radius: 18px;
  border: 1px solid rgba(120, 200, 255, 0.16);
  background: rgba(12, 18, 44, 0.6);
  padding: 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.info-body h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.info-body p {
  margin: 0 0 12px;
  color: var(--text-dim);
  line-height: 1.65;
}

.info-list {
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(233, 243, 255, 0.82);
  line-height: 1.6;
  display: grid;
  gap: 6px;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(85, 198, 255, 0.12);
  border: 1px solid rgba(85, 198, 255, 0.18);
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.small-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 138, 61, 0.22);
  background: rgba(255, 138, 61, 0.08);
  color: rgba(255, 238, 226, 0.92);
  font-size: 0.8rem;
  font-weight: 800;
}

.badge-row {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wallet {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(85, 198, 255, 0.2);
  background: rgba(8, 12, 26, 0.55);
  font-weight: 800;
}

.wallet strong {
  color: var(--orange-2);
}

.game-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(120, 200, 255, 0.16);
  background: rgba(12, 18, 44, 0.58);
  padding: 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

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

.title-row h3 {
  margin: 0;
  font-size: 1.12rem;
}

.game-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(85, 198, 255, 0.22);
  background: rgba(85, 198, 255, 0.1);
  color: rgba(233, 243, 255, 0.9);
  font-weight: 800;
  font-size: 0.78rem;
}

.game-photo {
  margin: 10px 0 12px;
  border-radius: 16px;
  border: 1px solid rgba(120, 200, 255, 0.14);
  filter: saturate(1.05) contrast(1.05) hue-rotate(10deg);
}

.mb-0 {
  margin-bottom: 0 !important;
}

.game-meta {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(233, 243, 255, 0.82);
  line-height: 1.6;
}

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

.output {
  margin-top: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(120, 200, 255, 0.16);
  background: rgba(8, 12, 26, 0.55);
  color: rgba(233, 243, 255, 0.9);
  line-height: 1.55;
}

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

label {
  font-weight: 800;
  font-size: 0.92rem;
  color: rgba(233, 243, 255, 0.9);
}

select,
input,
textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: rgba(8, 12, 26, 0.6);
  border: 1px solid rgba(120, 200, 255, 0.16);
  border-radius: 14px;
  padding: 12px 12px;
  outline: none;
}

select:focus,
input:focus,
textarea:focus {
  border-color: rgba(255, 138, 61, 0.34);
  box-shadow: 0 0 0 4px rgba(255, 138, 61, 0.12);
}

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

/* Reels */
.reels-machine {
  border-radius: 18px;
  border: 1px solid rgba(120, 200, 255, 0.16);
  background: rgba(8, 12, 26, 0.55);
  overflow: hidden;
}

.reels-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(120, 200, 255, 0.12);
  background: linear-gradient(135deg, rgba(85, 198, 255, 0.12), rgba(255, 138, 61, 0.08));
}

.reels-title {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

.reels-lights {
  display: inline-flex;
  gap: 6px;
}

.reels-lights span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(85, 198, 255, 0.35);
  box-shadow: 0 0 12px rgba(85, 198, 255, 0.22);
}

.reels-lights span:nth-child(even) {
  background: rgba(255, 138, 61, 0.35);
  box-shadow: 0 0 12px rgba(255, 138, 61, 0.2);
}

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

.reel-window {
  height: 96px;
  border-radius: 16px;
  border: 1px solid rgba(120, 200, 255, 0.16);
  background: rgba(7, 9, 20, 0.45);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.reel-track {
  will-change: transform;
}

.reel-cell {
  height: 96px;
  width: 96px;
  display: grid;
  place-items: center;
  font-size: 2.2rem;
}

.tip-note {
  margin: 12px 0 0;
  color: rgba(233, 243, 255, 0.78);
  line-height: 1.6;
}

/* Wheel */
.wheel-wrap {
  width: min(320px, 100%);
  height: 320px;
  margin: 0 auto;
  position: relative;
  display: grid;
  place-items: center;
}

.wheel-pointer {
  position: absolute;
  top: -44px;
  width: 58px;
  height: 74px;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.35));
}

.wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(120, 200, 255, 0.18);
  background:
    conic-gradient(
      from 0deg,
      rgba(255, 138, 61, 0.92),
      rgba(85, 198, 255, 0.92),
      rgba(255, 176, 77, 0.92),
      rgba(46, 123, 255, 0.92),
      rgba(255, 138, 61, 0.92)
    );
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  position: relative;
  transition: transform 4s cubic-bezier(0.08, 0.8, 0.2, 1);
  --label-radius: 124px;
}

.wheel-label {
  position: absolute;
  left: 40%;
  top: 45%;
  transform:
    rotate(calc(var(--slice-angle) * 1deg))
    translate(var(--label-radius))
    rotate(calc(var(--slice-angle) * -1deg));
  transform-origin: center;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(7, 9, 20, 0.92);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 0.85rem;
}

/* Cards (21) */
.cards-zone {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.hand h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.play-card {
  width: 54px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(120, 200, 255, 0.18);
  background: rgba(7, 9, 20, 0.4);
  font-weight: 900;
}

.scoreline {
  margin-top: 8px;
  color: rgba(233, 243, 255, 0.82);
  font-weight: 800;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(120, 200, 255, 0.16);
  background: rgba(12, 18, 44, 0.55);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  color: var(--text);
  font: inherit;
  font-weight: 900;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item button::after {
  content: "+";
  font-weight: 900;
  color: rgba(255, 138, 61, 0.9);
}

.faq-item.open button::after {
  content: "-";
}

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

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

/* Achievements */
.achievement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.achievement {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(120, 200, 255, 0.16);
  background: rgba(12, 18, 44, 0.58);
  display: grid;
  gap: 8px;
}

.achievement h3 {
  margin: 0;
  font-size: 1.04rem;
}

.achievement p {
  margin: 0;
  color: var(--text-dim);
  line-height: 1.55;
}

.achievement .status {
  font-weight: 900;
  color: rgba(255, 176, 77, 0.9);
  font-size: 0.82rem;
}

.achievement.unlocked {
  border-color: rgba(62, 230, 167, 0.32);
  background: rgba(18, 40, 44, 0.6);
}

.achievement.unlocked .status {
  color: rgba(62, 230, 167, 0.92);
}

/* Legal + Contact */
.legal-layout {
  display: grid;
  gap: 12px;
}

.legal-box {
  border-radius: 16px;
  border: 1px solid rgba(120, 200, 255, 0.16);
  background: rgba(12, 18, 44, 0.55);
  padding: 18px;
}

.legal-box h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.legal-box h3 {
  margin: 14px 0 8px;
  font-size: 1rem;
}

.legal-box p {
  margin: 0;
  color: var(--text-dim);
  line-height: 1.65;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
}

.contact-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(233, 243, 255, 0.82);
  line-height: 1.6;
}

.contact-mail {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 900;
  color: rgba(85, 198, 255, 0.92);
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

.contact-status {
  margin-top: 10px;
  font-weight: 900;
}

/* Footer + overlays */
.site-footer.footer-hub {
  margin-top: 34px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(120, 200, 255, 0.16);
  background:
    radial-gradient(1100px 720px at 12% 0%, rgba(85, 198, 255, 0.12), transparent 62%),
    radial-gradient(1100px 720px at 88% 10%, rgba(255, 138, 61, 0.12), transparent 62%),
    linear-gradient(180deg, rgba(7, 9, 20, 0.8), rgba(6, 8, 18, 0.95));
}

.footer-arc {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 88px;
  opacity: 0.95;
  pointer-events: none;
}

.footer-arc svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-shell {
  padding: 58px 0 22px;
  position: relative;
  z-index: 1;
}

.footer-shell::before {
  content: "";
  position: absolute;
  inset: -120px -80px auto -80px;
  height: 260px;
  background:
    radial-gradient(560px 240px at 20% 30%, rgba(85, 198, 255, 0.18), transparent 60%),
    radial-gradient(560px 240px at 80% 20%, rgba(255, 138, 61, 0.16), transparent 60%);
  filter: blur(2px);
  pointer-events: none;
  z-index: -1;
}

.footer-main {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: start;
}

.footer-brandblock {
  border-radius: 20px;
  border: 1px solid rgba(120, 200, 255, 0.14);
  background: rgba(8, 12, 26, 0.55);
  padding: 18px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
  position: relative;
  overflow: hidden;
}

.footer-brandblock::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(520px 260px at 20% 10%, rgba(85, 198, 255, 0.16), transparent 55%),
    radial-gradient(520px 260px at 82% 20%, rgba(255, 138, 61, 0.14), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.footer-brandblock > * {
  position: relative;
  z-index: 1;
}

.footer-copy {
  margin: 12px 0 0;
  color: rgba(233, 243, 255, 0.78);
  line-height: 1.65;
}

.footer-stamps {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(120, 200, 255, 0.18);
  background: rgba(12, 18, 44, 0.5);
  color: rgba(233, 243, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

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

.footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(120, 200, 255, 0.16);
  background: rgba(12, 18, 44, 0.55);
  color: rgba(233, 243, 255, 0.86);
  font-weight: 900;
  font-size: 0.88rem;
  transition: 0.22s ease;
}

.footer-link:hover {
  border-color: rgba(255, 138, 61, 0.26);
  transform: translateY(-1px);
}

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

.footer-col {
  border-radius: 20px;
  border: 1px solid rgba(120, 200, 255, 0.14);
  background: rgba(8, 12, 26, 0.48);
  padding: 18px;
}

.footer-col h4 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

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

.footer-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(120, 200, 255, 0.16);
  background: rgba(12, 18, 44, 0.55);
  color: rgba(233, 243, 255, 0.78);
  font-weight: 900;
  font-size: 0.86rem;
  transition: 0.22s ease;
}

.footer-chip:hover {
  color: rgba(233, 243, 255, 0.95);
  border-color: rgba(255, 138, 61, 0.26);
  transform: translateY(-1px);
}

.footer-bottom {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(120, 200, 255, 0.12);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 12px;
  align-items: start;
}

.footer-disclaimer,
.footer-meta {
  margin: 0;
  color: rgba(233, 243, 255, 0.7);
  line-height: 1.6;
  font-weight: 650;
}

.footer-meta {
  text-align: right;
  color: rgba(233, 243, 255, 0.62);
}

.age-floating {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 48;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-weight: 900;
  color: rgba(7, 9, 20, 0.95);
  border: 1px solid rgba(255, 138, 61, 0.3);
  background: linear-gradient(135deg, rgba(255, 138, 61, 0.9), rgba(255, 176, 77, 0.9));
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.35);
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(3, 6, 18, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.overlay.show {
  display: flex;
}

.overlay-card {
  width: min(520px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(120, 200, 255, 0.18);
  background: linear-gradient(145deg, rgba(12, 18, 44, 0.92), rgba(8, 12, 26, 0.88));
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.overlay-card h2 {
  margin: 0 0 10px;
  font-size: 1.9rem;
}

.overlay-card p {
  margin: 0;
  color: var(--text-dim);
  line-height: 1.6;
}

.overlay-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(85, 198, 255, 0.22);
  background: rgba(85, 198, 255, 0.12);
  color: rgba(233, 243, 255, 0.92);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cookie-box {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 70;
  width: min(380px, calc(100vw - 28px));
  border-radius: 16px;
  border: 1px solid rgba(120, 200, 255, 0.16);
  background: rgba(12, 18, 44, 0.92);
  padding: 14px;
  box-shadow: var(--shadow);
  display: none;
}

.cookie-box.show {
  display: block;
}

.cookie-box h4 {
  margin: 0 0 8px;
}

.cookie-box p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cookie-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: revealUp 0.65s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 1060px) {
  .games-compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid,
  .flow-grid,
  .game-grid,
  .achievement-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .info-split {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .how-inner {
    grid-template-columns: 1fr;
  }

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

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

  .game-row-media {
    min-height: 220px;
  }

  .game-row-media::after {
    background:
      linear-gradient(180deg, rgba(7, 9, 20, 0.15), rgba(7, 9, 20, 0.88)),
      radial-gradient(600px 320px at 20% 10%, rgba(85, 198, 255, 0.14), transparent 55%),
      radial-gradient(600px 320px at 80% 25%, rgba(255, 138, 61, 0.12), transparent 55%);
  }

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

  .footer-main {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    text-align: left;
  }
}

.compliance-line {
  padding-left: 14px;
}

.compliance-line::before {
  position: static;
  margin-bottom: 8px;
}

@media (max-width: 780px) {
  .games-compact-grid {
    grid-template-columns: 1fr;
  }
  .game-tile-body p {
    min-height: 0;
  }
  .topbar-inner {
    min-height: 24px;
    padding: 3px 0;
    flex-wrap: nowrap;
  }

  .topbar-right {
    display: none;
  }

  .topchip {
    padding: 4px 8px;
    font-size: 0.72rem;
  }

  .toptext {
    font-size: 0.72rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-inner {
    min-height: 58px;
  }

  .header-left {
    flex: 1 1 auto;
    justify-content: space-between;
  }

  .header-right {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(12, 18, 44, 0.96);
    border: 1px solid rgba(120, 200, 255, 0.18);
    border-radius: 16px;
    padding: 10px;
    display: none;
  }
  .site-nav.show {
    display: flex;
  }
  .site-nav a {
    border-radius: 12px;
  }
  .feature-grid,
  .flow-grid,
  .game-grid,
  .achievement-grid,
  .footer-grid,
  .form-grid,
  .cards-zone {
    grid-template-columns: 1fr;
  }
  .info-split {
    grid-template-columns: 1fr;
  }

  .how-steps {
    grid-template-columns: 1fr;
  }

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

  .footer-cloud {
    grid-template-columns: 1fr;
  }
  .wheel-wrap {
    width: 260px;
    height: 260px;
  }
  .wheel {
    --label-radius: 102px;
  }
  .wheel-pointer {
    top: -40px;
    width: 52px;
    height: 66px;
  }

  .hero-cover {
    min-height: 360px;
  }

  .hero-cover::before {
    background-attachment: scroll;
    transform: none;
  }

  .page-hero {
    padding: 16px;
    gap: 10px;
  }

  .page-hero::after {
    width: 88px;
    height: 88px;
    right: -14px;
    top: 12px;
    border-radius: 16px;
  }

  .page-hero h1 {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .masthead::before {
    background-attachment: scroll;
    transform: none;
  }

  .hero-cover::before {
    background-attachment: scroll;
    transform: none;
  }
}





