:root {
  --bg: #f1f5f9;
  --bg-alt: #ffffff;
  --surface: #e2e8f0;
  --text: #0f172a;
  --text-muted: #64748b;
  --border: #cbd5e1;
  --accent: #0369a1;
  --accent-hover: #0284c7;
  --accent-soft: rgba(3, 105, 161, 0.1);
  --footer-bg: #0f172a;
  --footer-text: #f1f5f9;
  --footer-muted: #94a3b8;
  --font: "DM Sans", system-ui, sans-serif;
  --space-xs: 6px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 28px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 20px 44px rgba(15, 23, 42, 0.12);
  --max-width: 1100px;
  --header-h: 64px;
}

* {
  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);
}

.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.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.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;
  }
}

.hero {
  position: relative;
  padding: var(--space-2xl) var(--space-lg);
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #e0e7ef 0%, #f1f5f9 35%, #f8fafc 100%);
}

.hero__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(3, 105, 161, 0.15), transparent);
  pointer-events: none;
}

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

.hero__content {
  max-width: 560px;
  margin: 0 auto;
}

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

.hero__title {
  margin: 0 0 var(--space-sm);
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
}

.hero__desc {
  margin: 0 0 var(--space-lg);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

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

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

.hero__badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-alt);
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* --- 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: var(--bg-alt);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s, transform 0.15s;
}

.perk-box:hover {
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.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: var(--bg-alt);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
  transition: box-shadow 0.2s, transform 0.15s;
}

.type-tile:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.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 .section__title {
  margin-bottom: var(--space-md);
}

/* --- Home: game tiles (horizontal: thumb + info) --- */
.game-tiles {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.game-tile {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm);
  text-decoration: none;
  color: inherit;
  background: var(--bg-alt);
  border-radius: var(--radius);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s, background 0.2s;
}

.game-tile:hover {
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  background: var(--surface);
  color: inherit;
  text-decoration: none;
}

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

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

.game-tile:hover .game-tile__thumb img {
  transform: scale(1.05);
}

.game-tile__info {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

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

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

.game-tiles__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(3, 105, 161, 0.1);
  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: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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(135deg, rgba(194, 65, 12, 0.08) 0%, rgba(194, 65, 12, 0.02) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(194, 65, 12, 0.15);
  box-shadow: var(--shadow);
}

.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-hero {
  position: relative;
  padding: var(--space-2xl) var(--space-lg);
  overflow: hidden;
}
.games-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #e0e7ef 0%, #f1f5f9 50%);
}
.games-hero .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.games-hero__card {
  width: 100%;
  max-width: 520px;
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}
.games-hero__title {
  margin: 0 0 var(--space-sm);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
}
.games-hero__desc {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.games-section-title {
  margin: 0 0 var(--space-lg);
  font-size: clamp(1.375rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.games-nutshell { padding: var(--space-md) 0; }
.games-nutshell__box {
  padding: var(--space-lg) var(--space-xl);
  background: var(--bg-alt);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}
.games-nutshell__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
}
.games-page-section { padding-top: var(--space-lg); }
.games-page-section .games-section-title { margin-bottom: var(--space-md); }

/* --- Games page: list of horizontal cards (thumb + info) --- */
.game-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.game-card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-md);
  text-decoration: none;
  color: inherit;
  background: var(--bg-alt);
  border-radius: var(--radius);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s, background 0.2s;
}

.game-card:hover {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  background: var(--surface);
  color: inherit;
  text-decoration: none;
}

.game-card__thumb {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
}

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

.game-card:hover .game-card__thumb img {
  transform: scale(1.05);
}

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

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

.game-card__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.game-card__cta {
  align-self: flex-start;
  margin-top: var(--space-xs);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

@media (max-width: 480px) {
  .game-card {
    flex-wrap: wrap;
  }
  .game-card__thumb {
    width: 100%;
    height: 120px;
  }
}

.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: 160px;
  padding: var(--space-lg) var(--space-xl);
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(194, 65, 12, 0.25);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.games-starter__btn:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 24px rgba(3, 105, 161, 0.25);
  transform: translateY(-2px);
  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__sub { margin-left: auto; margin-right: auto; }
.jump-in-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}
.jump-in-item {
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
}
.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;
  }
}