:root {
  --bg: #050c08;
  --bg-2: #07120d;
  --surface: rgba(10, 28, 20, 0.72);
  --surface-2: rgba(10, 28, 20, 0.88);
  --text: rgba(235, 250, 242, 0.96);
  --muted: rgba(200, 225, 212, 0.72);
  --line: rgba(155, 215, 185, 0.16);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);

  --green: #1fbf73;
  --green-2: #0f7a4b;
  --green-soft: rgba(31, 191, 115, 0.14);
  --lime: #b7ffcf;

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 12% -8%, rgba(31, 191, 115, 0.18), transparent 62%),
    radial-gradient(900px 650px at 96% 18%, rgba(15, 122, 75, 0.18), transparent 58%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 55%, #020504 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(700px 420px at 52% 120%, rgba(31, 191, 115, 0.08), transparent 62%),
    repeating-linear-gradient(135deg, rgba(235, 250, 242, 0.04) 0 1px, transparent 1px 22px);
  opacity: 0.55;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  inset: -6vh 0 -6vh;
  pointer-events: none;
  background-image:
    linear-gradient(180deg, rgba(2, 5, 4, 0.82), rgba(2, 5, 4, 0.48)),
    url("../img/background.jpg");
  background-size: cover;
  background-position: center;
  transform: translate3d(0, var(--parallax-offset, 0px), 0);
  filter: saturate(0.9) contrast(1.12) hue-rotate(85deg);
  opacity: 0.52;
  z-index: -2;
}

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

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

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

.muted {
  color: var(--muted);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(5, 12, 8, 0.62);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.topbar {
  display: none !important;
  border-bottom: 1px solid rgba(155, 215, 185, 0.14);
  background: rgba(10, 28, 20, 0.62);
}

.topbar-inner {
  min-height: 40px;
  padding: 10px 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;
}

.topbar-note {
  font-weight: 850;
  font-size: 0.86rem;
  color: rgba(200, 225, 212, 0.74);
}

.toplink {
  font-weight: 900;
  font-size: 0.86rem;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: rgba(200, 225, 212, 0.78);
  transition: 0.18s ease;
}

.toplink:hover {
  background: rgba(31, 191, 115, 0.1);
  border-color: rgba(31, 191, 115, 0.26);
  color: rgba(235, 250, 242, 0.96);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  background:
    radial-gradient(14px 14px at 28% 28%, rgba(255, 255, 255, 0.24), transparent 62%),
    linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
  box-shadow: 0 12px 26px rgba(31, 191, 115, 0.22);
}

.brand-name {
  font-size: 1.06rem;
}

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

.site-nav a {
  font-weight: 820;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: rgba(235, 250, 242, 0.82);
  transition: 0.18s ease;
}

.site-nav a:hover {
  background: rgba(31, 191, 115, 0.12);
  border-color: rgba(31, 191, 115, 0.28);
  color: rgba(235, 250, 242, 0.98);
}

.site-nav a.active {
  background: rgba(31, 191, 115, 0.16);
  border-color: rgba(31, 191, 115, 0.36);
  color: rgba(235, 250, 242, 0.98);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(31, 191, 115, 0.3);
  background: rgba(31, 191, 115, 0.12);
  color: rgba(235, 250, 242, 0.95);
  font-size: 1.02rem;
}

.header-right {
  display: none !important;
}

.wallet-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(155, 215, 185, 0.18);
  background: rgba(10, 28, 20, 0.55);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  font-weight: 900;
  letter-spacing: 0.01em;
  color: rgba(235, 250, 242, 0.9);
}

.safety-strip {
  border-top: 1px solid rgba(155, 215, 185, 0.14);
  background: rgba(10, 28, 20, 0.62);
}

.safety-strip .container {
  padding: 10px 0 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(31, 191, 115, 0.28);
  background: rgba(31, 191, 115, 0.1);
  font-weight: 900;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.pill-strong {
  border-color: rgba(183, 255, 207, 0.28);
  background: rgba(183, 255, 207, 0.08);
}

.safety-note {
  color: rgba(200, 225, 212, 0.74);
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: 0.92rem;
}

/* Typography + blocks */
.section {
  padding: 26px 0;
}

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

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(31, 191, 115, 0.26);
  background: rgba(31, 191, 115, 0.08);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(235, 250, 242, 0.86);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 12px;
}

.lead {
  font-size: 1.06rem;
  line-height: 1.7;
  color: rgba(235, 250, 242, 0.9);
  font-weight: 650;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  user-select: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(31, 191, 115, 0.98), rgba(15, 122, 75, 0.98));
  color: rgba(2, 5, 4, 0.95);
  border-color: rgba(31, 191, 115, 0.22);
  box-shadow: 0 16px 36px rgba(31, 191, 115, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 18px 44px rgba(31, 191, 115, 0.24);
}

.btn-ghost {
  background: rgba(10, 28, 20, 0.62);
  border-color: rgba(155, 215, 185, 0.16);
  color: rgba(235, 250, 242, 0.92);
}

.btn-ghost:hover {
  border-color: rgba(31, 191, 115, 0.3);
  background: rgba(31, 191, 115, 0.08);
}

.btn-link {
  padding: 10px 12px;
  border-color: transparent;
  background: transparent;
  color: rgba(183, 255, 207, 0.92);
}

.btn-link:hover {
  color: rgba(183, 255, 207, 1);
  text-decoration: underline;
}

/* Hero */
.hero {
  padding: 34px 0 14px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: center;
}

.hero-copy {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(155, 215, 185, 0.16);
  background: rgba(10, 28, 20, 0.6);
  box-shadow: var(--shadow);
}

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

.trust-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-chip {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(155, 215, 185, 0.18);
  background: rgba(2, 5, 4, 0.38);
  font-weight: 850;
  color: rgba(235, 250, 242, 0.86);
  font-size: 0.86rem;
}

.hero-visual {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(155, 215, 185, 0.16);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(10, 28, 20, 0.65);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.hero-perks {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(155, 215, 185, 0.16);
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(31, 191, 115, 0.14), transparent 55%),
    rgba(10, 28, 20, 0.62);
  box-shadow: var(--shadow);
  padding: 18px;
}

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

.perk {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(155, 215, 185, 0.14);
  background: rgba(2, 5, 4, 0.42);
}

.perk-icon {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(31, 191, 115, 0.26);
  background: rgba(31, 191, 115, 0.1);
  font-size: 1.1rem;
  flex: 0 0 auto;
}

.perk strong {
  display: block;
  font-weight: 950;
  margin-bottom: 4px;
}

.perk span {
  color: rgba(200, 225, 212, 0.78);
  font-weight: 650;
  line-height: 1.55;
}

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

.card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(155, 215, 185, 0.16);
  background: rgba(10, 28, 20, 0.66);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.45);
  padding: 16px;
}

.card-link {
  position: relative;
  overflow: hidden;
  display: block;
}

.card-link:hover {
  transform: translateY(-2px);
  transition: transform 0.16s ease;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(31, 191, 115, 0.25);
  background: rgba(31, 191, 115, 0.08);
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.card-photo {
  border-radius: 18px;
  border: 1px solid rgba(155, 215, 185, 0.12);
  margin: 10px 0 12px;
}

.card-cta {
  display: inline-flex;
  margin-top: 10px;
  font-weight: 950;
  color: rgba(183, 255, 207, 0.94);
}

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

.step {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(155, 215, 185, 0.14);
  background: rgba(10, 28, 20, 0.56);
  padding: 16px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.42);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  border: 1px solid rgba(31, 191, 115, 0.26);
  background: rgba(31, 191, 115, 0.08);
  font-weight: 950;
  margin-bottom: 10px;
}

/* Page hero */
.page-hero {
  padding: 30px 0 12px;
}

.wallet-inline {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(155, 215, 185, 0.14);
  background: rgba(10, 28, 20, 0.55);
  display: inline-flex;
  gap: 8px;
  font-weight: 900;
}

/* Banner */
.banner {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(155, 215, 185, 0.14);
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(31, 191, 115, 0.12), transparent 55%),
    rgba(10, 28, 20, 0.62);
  box-shadow: var(--shadow);
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.banner-soft {
  background: rgba(10, 28, 20, 0.56);
}

.banner-actions {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Games grid */
.game-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.game-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(155, 215, 185, 0.16);
  background: rgba(10, 28, 20, 0.66);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.45);
  padding: 16px;
}

.game-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.game-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(31, 191, 115, 0.25);
  background: rgba(31, 191, 115, 0.08);
  font-size: 1.15rem;
}

.game-photo {
  border-radius: 18px;
  border: 1px solid rgba(155, 215, 185, 0.12);
  margin: 10px 0 12px;
  max-height: 300px;
  margin: 0 auto;
}

.bullets {
  margin: 0;
  padding-left: 18px;
  color: rgba(200, 225, 212, 0.78);
  line-height: 1.7;
  font-weight: 650;
}

.card-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Game surfaces */
.game-surface {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(155, 215, 185, 0.16);
  background: rgba(10, 28, 20, 0.66);
  box-shadow: var(--shadow);
  padding: 16px;
}

.surface-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 12px;
}

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

label {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 850;
  color: rgba(235, 250, 242, 0.88);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(155, 215, 185, 0.16);
  background: rgba(2, 5, 4, 0.4);
  color: rgba(235, 250, 242, 0.92);
  font: inherit;
}

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

.output {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(155, 215, 185, 0.14);
  background: rgba(2, 5, 4, 0.42);
  color: rgba(235, 250, 242, 0.9);
  font-weight: 750;
  line-height: 1.6;
}

/* Reels */
.reels-machine {
  margin-top: 12px;
  display: grid;
  place-items: center;
}

.reels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(520px, 100%);
}

.reel {
  border-radius: 18px;
  border: 1px solid rgba(155, 215, 185, 0.16);
  background: rgba(2, 5, 4, 0.42);
  overflow: hidden;
}

.reel-window {
  height: 96px;
  overflow: hidden;
}

.reel-track {
  transform: translateY(0);
}

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

/* Wheel */
.wheel-wrap {
  width: 340px;
  height: 340px;
  margin: 14px auto 6px;
  position: relative;
}

.wheel-pointer {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translateX(-50%) rotate(45deg);
  background: linear-gradient(135deg, rgba(183, 255, 207, 1), rgba(31, 191, 115, 1));
  border-radius: 4px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(5, 12, 8, 0.5);
}

.wheel {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  border: 1px solid rgba(155, 215, 185, 0.2);
  background:
    conic-gradient(
      rgba(31, 191, 115, 0.5),
      rgba(15, 122, 75, 0.5),
      rgba(31, 191, 115, 0.38),
      rgba(2, 5, 4, 0.6),
      rgba(31, 191, 115, 0.56),
      rgba(15, 122, 75, 0.44),
      rgba(31, 191, 115, 0.6),
      rgba(2, 5, 4, 0.62)
    );
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 4.2s cubic-bezier(0.12, 0.85, 0.22, 1);
  --label-y: -134px;
}

.wheel-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(var(--slice-angle)) translateY(var(--label-y)) rotate(var(--slice-angle-neg));
  transform-origin: center;
  font-weight: 950;
  color: rgba(235, 250, 242, 0.92);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
  letter-spacing: 0.01em;
}

/* Cards game */
.cards-zone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.hand {
  border-radius: 18px;
  border: 1px solid rgba(155, 215, 185, 0.14);
  background: rgba(2, 5, 4, 0.42);
  padding: 12px;
}

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

.play-card {
  width: 54px;
  height: 68px;
  border-radius: 14px;
  border: 1px solid rgba(155, 215, 185, 0.18);
  background: rgba(10, 28, 20, 0.65);
  display: grid;
  place-items: center;
  font-weight: 950;
  color: rgba(235, 250, 242, 0.95);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.4);
}

.scoreline {
  margin-top: 10px;
  font-weight: 850;
  color: rgba(200, 225, 212, 0.8);
}

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

.achievement {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(155, 215, 185, 0.14);
  background: rgba(10, 28, 20, 0.58);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  padding: 16px;
}

.achievement .status {
  margin-top: 10px;
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(155, 215, 185, 0.16);
  color: rgba(200, 225, 212, 0.82);
  font-weight: 900;
}

.achievement.unlocked {
  border-color: rgba(31, 191, 115, 0.32);
  background: rgba(31, 191, 115, 0.12);
}

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

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(155, 215, 185, 0.14);
  background: rgba(10, 28, 20, 0.56);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 14px 14px;
  border: 0;
  background: transparent;
  color: rgba(235, 250, 242, 0.92);
  font-weight: 950;
  cursor: pointer;
}

.faq-item .answer {
  display: none;
  padding: 0 14px 14px;
  color: rgba(200, 225, 212, 0.78);
  line-height: 1.7;
  font-weight: 650;
}

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

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

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

.contact-mail {
  display: inline-flex;
  margin: 8px 0 12px;
  font-weight: 950;
  color: rgba(183, 255, 207, 0.95);
}

.contact-status {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(155, 215, 185, 0.14);
  background: rgba(2, 5, 4, 0.42);
  color: rgba(200, 225, 212, 0.82);
  font-weight: 750;
}

.contact-status[data-kind="error"] {
  border-color: rgba(255, 117, 117, 0.28);
  color: rgba(255, 200, 200, 0.9);
}

.contact-status[data-kind="ok"] {
  border-color: rgba(31, 191, 115, 0.26);
  color: rgba(200, 225, 212, 0.9);
}

/* Legal */
.legal-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.legal-box {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(155, 215, 185, 0.14);
  background: rgba(10, 28, 20, 0.58);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  padding: 16px;
}

.legal-box h3 {
  margin: 12px 0 8px;
}

/* Footer */
.site-footer {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  background: rgba(5, 12, 8, 0.62);
}

.footer-shell {
  padding: 22px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 12px;
}

.footer-brandblock {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(155, 215, 185, 0.14);
  background: rgba(10, 28, 20, 0.56);
  padding: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

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

.footer-chip {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(155, 215, 185, 0.16);
  background: rgba(2, 5, 4, 0.38);
  font-weight: 900;
  color: rgba(200, 225, 212, 0.78);
  font-size: 0.86rem;
}

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

.footer-col {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(155, 215, 185, 0.14);
  background: rgba(10, 28, 20, 0.56);
  padding: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.footer-col h4 {
  margin: 0 0 10px;
}

.footer-col a {
  display: block;
  padding: 7px 0;
  color: rgba(200, 225, 212, 0.78);
  font-weight: 850;
  transition: 0.18s ease;
}

.footer-col a:hover {
  color: rgba(183, 255, 207, 0.98);
  transform: translateX(2px);
}

.footer-bottom {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(155, 215, 185, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-disclaimer {
  margin: 0;
  max-width: 860px;
  line-height: 1.6;
  font-weight: 700;
  color: rgba(200, 225, 212, 0.76);
}

.footer-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.to-top {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(31, 191, 115, 0.3);
  background: rgba(31, 191, 115, 0.14);
  color: rgba(235, 250, 242, 0.95);
  display: grid;
  place-items: center;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
  transition: 0.18s ease;
}

.to-top:hover {
  transform: translateY(-2px);
  border-color: rgba(183, 255, 207, 0.3);
}

/* Overlay + cookie box */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(0, 0, 0, 0.68);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.overlay.show {
  display: flex;
}

.overlay-card {
  width: min(560px, 100%);
  border-radius: 22px;
  border: 1px solid rgba(155, 215, 185, 0.18);
  background: rgba(10, 28, 20, 0.92);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.65);
  padding: 20px;
  text-align: center;
}

.overlay-card p {
  margin: 0;
  color: rgba(200, 225, 212, 0.78);
  line-height: 1.7;
  font-weight: 650;
}

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

.cookie-box {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 70;
  width: min(410px, calc(100vw - 28px));
  border-radius: 18px;
  border: 1px solid rgba(155, 215, 185, 0.16);
  background: rgba(10, 28, 20, 0.9);
  box-shadow: var(--shadow);
  padding: 14px;
  display: none;
}

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

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

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

/* Responsive */
@media (max-width: 1060px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .card-grid,
  .steps,
  .game-grid,
  .achievement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: rgba(10, 28, 20, 0.96);
    border: 1px solid rgba(155, 215, 185, 0.16);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow);
  }
  .site-nav.show {
    display: flex;
  }
}

@media (max-width: 780px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: rgba(10, 28, 20, 0.96);
    border: 1px solid rgba(155, 215, 185, 0.16);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow);
  }
  .site-nav.show {
    display: flex;
  }
  .card-grid,
  .steps,
  .game-grid,
  .achievement-grid,
  .form-grid,
  .cards-zone,
  .footer-top,
  .footer-navgrid,
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .wheel-wrap {
    width: 280px;
    height: 280px;
  }
  .wheel {
    --label-y: -112px;
  }
  .wheel-label {
    font-size: 0.92rem;
  }
}

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