:root {
  --bg: #f0fdfa;
  --bg-alt: #ffffff;
  --surface: #ccfbf1;
  --text: #134e4a;
  --text-muted: #0f766e;
  --border: #99f6e4;
  --accent: #0d9488;
  --accent-hover: #0f766e;
  --accent-soft: rgba(13, 148, 136, 0.12);
  --footer-bg: #134e4a;
  --footer-text: #f0fdfa;
  --footer-muted: #5eead4;
  --font: "Outfit", system-ui, sans-serif;
  --space-xs: 6px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 22px;
  --shadow: 0 1px 6px rgba(19, 78, 74, 0.06);
  --shadow-md: 0 8px 24px rgba(19, 78, 74, 0.08);
  --shadow-hover: 0 16px 40px rgba(19, 78, 74, 0.1);
  --max-width: 1100px;
  --header-h: 64px;
  --hero-deep: #0f3d3a;
  --hero-glow: rgba(20, 184, 166, 0.35);
  --glass: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(255, 255, 255, 0.65);
  --card-skew-radius: 22px;
  --card-inset: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.wrap {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--surface {
  background: var(--surface);
}

.section__title {
  margin: 0 0 var(--space-sm);
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
}

.section__title::before {
  content: "";
  width: 4px;
  height: 1.1em;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--accent), #2dd4bf);
  flex-shrink: 0;
}

.section__sub {
  margin: 0 0 var(--space-lg);
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.btn--secondary {
  background: var(--bg-alt);
  color: var(--text);
  border-color: var(--border);
}

.btn--secondary:hover {
  background: var(--surface);
  border-color: var(--text-muted);
  text-decoration: none;
}

.btn--lg {
  padding: 14px 26px;
  font-size: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(153, 246, 228, 0.65);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.site-header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.brand:hover {
  text-decoration: none;
}

.brand__mark {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: var(--accent);
}

.brand__img {
  display: block;
  height: 46px;
  width: auto;
  object-fit: contain;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-desktop a {
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
}

.nav-desktop a:hover {
  text-decoration: none;
  background: var(--accent-soft);
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: var(--radius-sm);
}

.nav-toggle:hover {
  background: var(--accent-soft);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 81;
  background: rgba(28, 25, 23, 0.35);
  opacity: 0;
  transition: opacity 0.25s;
}

.nav-overlay.is-open {
  display: block;
  opacity: 1;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 85vw);
  height: 100%;
  z-index: 82;
  background: var(--bg-alt);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
  padding: var(--space-xl) var(--space-lg);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
}

.nav-drawer.is-open {
  transform: translateX(0);
}

.nav-drawer a {
  display: block;
  padding: var(--space-sm) 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.nav-drawer a:hover {
  text-decoration: none;
  color: var(--accent);
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

/* --- Home hero (split + glass + stack) --- */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 88px) var(--space-md);
  min-height: clamp(440px, 72vh, 560px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero--renew .hero__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .hero--renew .hero__wrap {
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.85fr);
    gap: var(--space-2xl);
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #ecfdf5 0%, #ccfbf1 38%, #f0fdfa 72%, #ffffff 100%);
  pointer-events: none;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background:
    radial-gradient(ellipse 80% 50% at 15% 20%, rgba(45, 212, 191, 0.25), transparent 50%),
    radial-gradient(ellipse 60% 40% at 85% 60%, rgba(13, 148, 136, 0.18), transparent 45%),
    radial-gradient(circle at 70% 15%, rgba(204, 251, 241, 0.9), transparent 35%);
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero__orb--a {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  right: -8%;
  top: -15%;
  background: var(--hero-glow);
  opacity: 0.5;
}

.hero__orb--b {
  width: min(280px, 40vw);
  height: min(280px, 40vw);
  left: -5%;
  bottom: -10%;
  background: rgba(94, 234, 212, 0.4);
  opacity: 0.45;
}

.hero__wrap {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__content {
  text-align: left;
}

@media (max-width: 899px) {
  .hero__content {
    text-align: center;
  }
}

.hero__glass {
  padding: clamp(24px, 4vw, 40px);
  border-radius: 28px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 4px 24px rgba(19, 78, 74, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  max-width: 560px;
}

@media (max-width: 899px) {
  .hero__glass {
    margin: 0 auto;
  }
}

.hero__tagline {
  margin: 0 0 var(--space-md);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__tagline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2dd4bf, var(--accent));
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

.hero__title {
  margin: 0 0 var(--space-md);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: var(--hero-deep);
}

.hero__title-accent {
  background: linear-gradient(120deg, var(--accent) 0%, #0d9488 45%, #115e59 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__desc {
  margin: 0 0 var(--space-lg);
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 32ch;
}

@media (max-width: 899px) {
  .hero__desc {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

@media (max-width: 899px) {
  .hero__ctas {
    justify-content: center;
  }
}

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

@media (max-width: 899px) {
  .hero__badges {
    justify-content: center;
  }
}

.hero__badge {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(19, 78, 74, 0.05);
}

/* Decorative stack (home hero) */
.hero__visual {
  display: none;
  position: relative;
  min-height: 280px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

@media (min-width: 900px) {
  .hero__visual {
    display: flex;
  }
}

.hero__stack {
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: 4 / 5;
}

.hero__stack-card {
  position: absolute;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 50px rgba(15, 61, 58, 0.15);
  background: linear-gradient(145deg, #ffffff 0%, #ecfeff 100%);
  pointer-events: none;
}

.hero__stack-card--1 {
  inset: 8% 12% 18% 0;
  transform: rotate(-6deg);
  z-index: 1;
  opacity: 0.92;
}

.hero__stack-card--2 {
  inset: 4% 4% 12% 8%;
  transform: rotate(3deg);
  z-index: 2;
  background: linear-gradient(160deg, #f0fdfa 0%, #ccfbf1 100%);
}

.hero__stack-card--3 {
  inset: 22% 0 8% 18%;
  transform: rotate(8deg);
  z-index: 3;
  width: auto;
  height: auto;
  background: linear-gradient(135deg, var(--accent) 0%, #0f766e 100%);
  opacity: 0.95;
}

/* --- Perks: row of pills --- */
.perks-strip {
  padding: var(--space-lg) 0;
}

.perks-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  max-width: 640px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .perks-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.perk-box {
  text-align: center;
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
  border-radius: 18px 18px 8px 18px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(19, 78, 74, 0.05);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.perk-box:hover {
  border-color: rgba(13, 148, 136, 0.35);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.1);
  transform: translateY(-3px);
}

.perk-box__icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 4px;
  line-height: 1;
}

.perk-box__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
}

/* --- Types: 4 equal tiles with bottom accent --- */
.types-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}

@media (max-width: 900px) {
  .types-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .types-row {
    grid-template-columns: 1fr;
  }
}

.type-tile {
  padding: var(--space-lg);
  background: #ffffff;
  border-radius: 22px 22px 12px 22px;
  border: 1px solid var(--border);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 28px rgba(19, 78, 74, 0.06);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.2s;
}

.type-tile:hover {
  border-color: rgba(13, 148, 136, 0.3);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 16px 40px rgba(13, 148, 136, 0.12);
  transform: translateY(-4px);
}

.type-tile__icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.type-tile__title {
  margin: 0 0 var(--space-xs);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.type-tile__text {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.games-section {
  position: relative;
  z-index: 5;
}

.games-section .section__title {
  margin-bottom: var(--space-md);
}

/* --- Home: game mosaic (inset media + row footer) --- */
.game-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (max-width: 720px) {
  .game-mosaic {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

@media (max-width: 420px) {
  .game-mosaic {
    grid-template-columns: 1fr;
  }
}

.game-pick {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  padding: var(--card-inset);
  background: linear-gradient(165deg, #ffffff 0%, #f8fffe 100%);
  border-radius: 26px 26px 14px 26px;
  overflow: hidden;
  border: 1px solid rgba(153, 246, 228, 0.85);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 32px rgba(19, 78, 74, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s;
}

.game-pick::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 4px 0 0 4px;
  background: linear-gradient(180deg, #2dd4bf, var(--accent));
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.game-pick:hover {
  transform: translateY(-6px) rotate(-0.25deg);
  border-color: rgba(13, 148, 136, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 24px 48px rgba(13, 148, 136, 0.14);
  color: inherit;
  text-decoration: none;
}

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

.game-pick__shine {
  position: absolute;
  top: -40%;
  right: -30%;
  width: 70%;
  height: 80%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.12), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.game-pick__media {
  position: relative;
  z-index: 1;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, #ccfbf1, #e0f2fe);
  box-shadow: 0 4px 16px rgba(19, 78, 74, 0.08);
}

.game-pick__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.game-pick:hover .game-pick__media img {
  transform: scale(1.07);
}

.game-pick__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xs) var(--space-sm) 4px;
  text-align: left;
}

.game-pick__title {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--hero-deep);
  line-height: 1.2;
}

.game-pick__action {
  flex-shrink: 0;
}

.game-pick__action-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 10px 18px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 12px;
  background: var(--text);
  color: #fff;
  box-shadow: 0 4px 14px rgba(15, 61, 58, 0.2);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.game-pick:hover .game-pick__action-inner {
  background: var(--accent);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.35);
  transform: scale(1.02);
}

.game-mosaic__more {
  text-align: center;
  margin-top: var(--space-xl);
  margin-bottom: 0;
}

/* --- Legacy: game rows --- */
.game-rows {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.game-row {
  margin: 0;
}

.game-row__link {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.game-row__link:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.12);
  text-decoration: none;
  color: inherit;
}

.game-row__thumb {
  flex-shrink: 0;
  width: 100px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
}

.game-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.game-row__link:hover .game-row__thumb img {
  transform: scale(1.06);
}

.game-row__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.game-row__title {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.game-row__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.game-row__action {
  flex-shrink: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
}

@media (max-width: 640px) {
  .game-row__link {
    flex-wrap: wrap;
    gap: var(--space-sm);
  }
  .game-row__thumb {
    width: 100%;
    height: 120px;
  }
  .game-row__action {
    width: 100%;
    text-align: right;
  }
}

/* --- How: timeline with dots --- */
.how-timeline {
  margin: var(--space-xl) 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  position: relative;
}

@media (max-width: 768px) {
  .how-timeline {
    flex-direction: column;
    gap: var(--space-lg);
  }
}

.how-timeline__item {
  flex: 1;
  min-width: 200px;
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.how-timeline__dot {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--accent), #0f766e);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.28);
}

.how-timeline__content {
  flex: 1;
  padding: var(--space-sm) 0;
}

.how-timeline__title {
  margin: 0 0 var(--space-xs);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
}

.how-timeline__text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.cta-block {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  background: linear-gradient(145deg, rgba(204, 251, 241, 0.9) 0%, rgba(240, 253, 250, 0.95) 50%, #ffffff 100%);
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(19, 78, 74, 0.08);
}

.cta-block__title {
  margin: 0 0 var(--space-xs);
  font-size: 1.5rem;
  font-weight: 700;
}

.cta-block__text {
  margin: 0 0 var(--space-md);
  color: var(--text-muted);
}

.cta-block .btn--primary {
  text-decoration: none;
}

/* --- Games page hero --- */
.games-hero {
  position: relative;
  padding: clamp(40px, 7vw, 72px) var(--space-md) clamp(48px, 8vw, 80px);
  overflow: hidden;
}

.games-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(168deg, #042f2e 0%, #0f3d3a 42%, #134e4a 78%, #115e59 100%);
  pointer-events: none;
}

.games-hero--renew .games-hero__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background:
    radial-gradient(ellipse 90% 60% at 10% 0%, rgba(45, 212, 191, 0.35), transparent 50%),
    radial-gradient(ellipse 70% 50% at 95% 80%, rgba(20, 184, 166, 0.2), transparent 45%);
  pointer-events: none;
}

.games-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}

.games-hero__orb--a {
  width: min(360px, 50vw);
  height: min(360px, 50vw);
  right: -10%;
  top: 20%;
  background: rgba(45, 212, 191, 0.25);
}

.games-hero__wrap {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.games-hero__panel {
  padding: clamp(28px, 5vw, 44px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.games-hero__eyebrow {
  margin: 0 0 var(--space-md);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5eead4;
}

.games-hero__eyebrow-icon {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #2dd4bf;
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.8);
}

.games-hero__title {
  margin: 0 0 var(--space-md);
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: #f0fdfa;
}

.games-hero__title-accent {
  color: #5eead4;
  font-weight: 700;
}

.games-hero__desc {
  margin: 0 0 var(--space-lg);
  font-size: 1.0625rem;
  color: rgba(240, 253, 250, 0.82);
  line-height: 1.6;
  max-width: 36ch;
}

.games-hero__stats {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-xl);
}

.games-hero__stats li {
  font-size: 0.875rem;
  color: rgba(240, 253, 250, 0.75);
  font-weight: 500;
}

.games-hero__stats strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}

.games-section-title {
  margin: 0 0 var(--space-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.5rem, 2.8vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--hero-deep);
}

.games-section-title__mark {
  width: 4px;
  height: 1.15em;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--accent), #2dd4bf);
  flex-shrink: 0;
}

.games-nutshell {
  padding: var(--space-lg) 0;
  margin-top: -24px;
  position: relative;
  z-index: 1;
}

.games-nutshell__box {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(19, 78, 74, 0.1);
}

.games-nutshell__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 14px;
}

.games-nutshell__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
}

@media (max-width: 520px) {
  .games-nutshell__box {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .games-nutshell__icon {
    margin-inline: auto;
  }
}
.games-page-section {
  position: relative;
  z-index: 5;
  padding-top: var(--space-lg);
}
.games-page-section .games-section-title { margin-bottom: var(--space-md); }

/* --- Games page: catalog (horizontal cards) --- */
.catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 720px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (min-width: 1100px) {
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.catalog-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(153, 246, 228, 0.9);
  box-shadow: 0 8px 28px rgba(19, 78, 74, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s;
}

@media (min-width: 600px) {
  .catalog-card {
    flex-direction: row;
    align-items: stretch;
    min-height: 168px;
    border-radius: 22px 22px 22px 14px;
  }
}

.catalog-card:hover {
  border-color: rgba(13, 148, 136, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(13, 148, 136, 0.14);
  color: inherit;
  text-decoration: none;
}

.catalog-card__visual {
  display: block;
  flex-shrink: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(145deg, #ccfbf1, #e0f2fe);
}

@media (min-width: 600px) {
  .catalog-card__visual {
    width: 42%;
    max-width: 220px;
    min-height: 100%;
    aspect-ratio: auto;
  }
}

.catalog-card__visual img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.catalog-card:hover .catalog-card__visual img {
  transform: scale(1.05);
}

.catalog-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.catalog-card__main {
  flex: 1;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}

.catalog-card__title {
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--hero-deep);
}

.catalog-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.catalog-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  margin-top: auto;
  background: linear-gradient(90deg, rgba(240, 253, 250, 0.95), rgba(204, 251, 241, 0.5));
  border-top: 1px solid var(--border);
}

.catalog-card__hint {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.catalog-card__btn {
  flex-shrink: 0;
}

.catalog-card__btn-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  box-shadow: 0 4px 14px rgba(15, 61, 58, 0.2);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.catalog-card:hover .catalog-card__btn-text {
  background: var(--accent);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.35);
  transform: scale(1.02);
}

.games-starter {
  padding: var(--space-xl) 0;
  background: var(--bg-alt);
}
.games-starter__label {
  margin: 0 0 var(--space-md);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}
.games-starter__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}
.games-starter__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 168px;
  padding: var(--space-lg) var(--space-xl);
  background: linear-gradient(145deg, var(--accent) 0%, #0f766e 100%);
  color: #fff;
  border-radius: 20px 20px 10px 20px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 28px rgba(13, 148, 136, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.games-starter__btn:hover {
  background: linear-gradient(145deg, #0f766e 0%, #115e59 100%);
  box-shadow: 0 12px 36px rgba(13, 148, 136, 0.4);
  transform: translateY(-3px);
  color: #fff;
  text-decoration: none;
}
.games-starter__btn-name { font-size: 1.125rem; }
.games-starter__btn-desc {
  font-size: 0.8125rem;
  font-weight: 500;
  opacity: 0.9;
}

.games-stats {
  padding: var(--space-md) 0;
  background: var(--footer-bg);
  color: var(--footer-text);
}
.games-stats__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  font-weight: 500;
}
.games-stats__dot {
  opacity: 0.5;
  font-weight: 700;
}
.games-stats__item { color: var(--footer-muted); }

.games-bookmark {
  padding: var(--space-lg) 0;
  text-align: center;
}
.games-bookmark__text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.jump-in-section { text-align: center; }
.jump-in-section .section__title {
  justify-content: center;
}
.jump-in-section .section__sub { margin-left: auto; margin-right: auto; }
.jump-in-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}
.jump-in-item {
  padding: 12px 28px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hero-deep);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px 16px 8px 16px;
  box-shadow: 0 6px 20px rgba(19, 78, 74, 0.06);
}
.jump-in-section .btn { margin-top: 0; }

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: var(--space-2xl) 0 var(--space-lg);
  margin-top: var(--space-2xl);
}

.site-footer a {
  color: var(--footer-text);
}

.site-footer a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.footer-col__title {
  margin: 0 0 var(--space-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--footer-muted);
}

.footer-col p {
  margin: 0 0 var(--space-xs);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--footer-muted);
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  margin-bottom: var(--space-xs);
}

.footer-col a {
  font-size: 0.9375rem;
}

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.875rem;
  color: var(--footer-muted);
  text-align: center;
}

.age-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.age-modal.is-visible {
  display: flex;
}

.age-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, 0.45);
}

.age-modal__box {
  position: relative;
  width: 100%;
  max-width: 380px;
  padding: var(--space-xl);
  background: var(--bg-alt);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.age-modal__title {
  margin: 0 0 var(--space-sm);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.age-modal__text {
  margin: 0 0 var(--space-lg);
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.age-modal__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.age-modal__actions .btn {
  min-width: 100px;
}

.page-title {
  margin: 0 0 var(--space-md);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-content {
  margin: 0 auto;
}

.page-content p {
  margin: 0 0 var(--space-md);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

.page-content h2 {
  margin: var(--space-xl) 0 var(--space-sm);
  font-size: 1.25rem;
  font-weight: 600;
}

.page-content ul {
  margin: 0 0 var(--space-md);
  padding-left: 1.25rem;
  line-height: 1.75;
}

.page-content li {
  margin-bottom: var(--space-xs);
}

.page-content a {
  color: #fff;
}

.page-content a:hover {
  text-decoration: underline;
}

.checklist {
  margin: 0;
  padding-left: 1.25rem;
}

.checklist li {
  margin: 0 0 var(--space-xs);
}

.cookiebar {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  z-index: 90;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-xl);
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  display: none;
}

.cookiebar.show {
  display: block;
}

.cookiebar p {
  margin: 0 0 var(--space-sm);
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.cookiebar__btns {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-side {
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-alt) 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-side h3 {
  margin: 0 0 var(--space-sm);
  font-size: 1.0625rem;
}

.contact-side p {
  margin: 0 0 var(--space-sm);
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.contact-side a {
  color: var(--accent);
}

.legal h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 var(--space-sm);
  font-weight: 700;
}

.legal .meta {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.legal h2 {
  font-size: 1.25rem;
  margin: var(--space-lg) 0 var(--space-sm);
  font-weight: 600;
}

.legal p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 var(--space-sm);
}

.legal ul {
  padding-left: 1.25rem;
  margin: 0 0 var(--space-md);
}

.legal li {
  margin-bottom: var(--space-xs);
}

.faq-list {
  margin-top: var(--space-lg);
}

.faq-item {
  margin-bottom: var(--space-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item.is-open {
  box-shadow: 0 4px 20px rgba(194, 65, 12, 0.1);
}

.faq-item button {
  width: 100%;
  padding: var(--space-lg) var(--space-xl);
  text-align: left;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  transition: background 0.2s;
}

.faq-item button:hover {
  background: var(--surface);
}

.faq-item.is-open button {
  background: var(--accent-soft);
}

.faq-item .faq-answer {
  padding: 0 var(--space-xl) var(--space-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s;
}

.faq-item .faq-answer p {
  margin: 0 0 var(--space-sm);
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
}

.sports-strategy-section .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.sports-strategy-section .sports-strategy-content p {
  margin: 0 0 var(--space-sm);
}

.sports-strategy-section .sports-strategy-content .btn {
  margin-top: var(--space-md);
}

@media (max-width: 768px) {
  .sports-strategy-section .wrap {
    grid-template-columns: 1fr;
  }
}