:root {
  color-scheme: dark;
  --page-bg: #030918;
  --page-gradient: radial-gradient(
    circle at top,
    #1d2b64 0%,
    #0c1027 40%,
    #030918 100%
  );
  --card-bg: rgba(8, 18, 46, 0.85);
  --card-border: rgba(255, 255, 255, 0.12);
  --text-primary: #f2f6ff;
  --text-muted: #9db2d7;
  --accent: #f04f74;
  --accent-2: #12d6c5;
  --shadow-soft: 0 20px 50px rgba(3, 4, 15, 0.6);
  --radius-lg: 30px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text-primary);
  background: var(--page-gradient);
  min-height: 100vh;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent-2);
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  color: #050b16;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #050b16;
  box-shadow: 0 10px 25px rgba(18, 214, 197, 0.35);
}

.btn--secondary {
  background: linear-gradient(135deg, #ffe29f, #ffa99f);
  color: #120c1e;
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn--lg {
  padding: 0.85rem 2.4rem;
  font-size: 1rem;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(4, 8, 20, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__top {
  font-size: 0.85rem;
  text-align: center;
  padding: 0.6rem 1rem;
  color: var(--text-muted);
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 4rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand__logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px;
  background: rgba(3, 10, 27, 0.5);
}

.brand__text {
  color: var(--text-primary);
}

.brand__dot {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.nav a {
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
}

main {
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1rem, 5vw, 4.5rem) 5rem;
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero__content h1 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-family: "Space Grotesk", sans-serif;
  margin: 0 0 1.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.hero__meta li {
  padding: 1rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
}

.hero__meta span {
  font-weight: 600;
  color: var(--accent-2);
}

.hero__visual {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(5, 10, 25, 0.8);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
}

.hero__visual img {
  border-radius: 20px;
}

.hero__badge {
  position: absolute;
  right: 2.5rem;
  bottom: 2.5rem;
  background: rgba(3, 11, 27, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  text-align: right;
}

.hero__badge strong {
  display: block;
  color: var(--accent);
  margin-top: 0.2rem;
}

.game-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-lg);
  background: rgba(4, 9, 24, 0.9);
  border: 1px solid var(--card-border);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.checklist li::before {
  content: "✓";
  color: var(--accent-2);
  border: 1px solid var(--accent-2);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.game-preview__card {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.game-preview__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-preview__cta {
  position: absolute;
  inset: auto 1.5rem 1.5rem;
  background: rgba(3, 9, 24, 0.9);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: left;
}

.pillars {
  padding: clamp(2.5rem, 5vw, 3.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  background: rgba(6, 12, 30, 0.95);
}

.section-heading {
  /* max-width: 720px; */
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 0.8rem;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  padding: 1.5rem;
  border-radius: 22px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  min-height: 180px;
}

.howto {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  background: rgba(3, 10, 27, 0.9);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.step {
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.02);
}

.step span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: rgba(18, 214, 197, 0.15);
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.reviews-teaser {
  text-align: center;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  background: rgba(255, 255, 255, 0.03);
}

.reviews-teaser__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.reviews-teaser__grid article {
  padding: 1.25rem;
  border-radius: 18px;
  background: rgba(5, 10, 25, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-style: italic;
}

.legal {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  background: rgba(5, 10, 24, 0.95);
}

.legal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.legal-card {
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.2s ease, border 0.2s ease;
}

.legal-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-2);
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(18, 214, 197, 0.15),
    rgba(240, 79, 116, 0.15)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer {
  background: #030614;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem clamp(1rem, 4vw, 3rem) 2rem;
}

.site-footer__top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
}

.footer-logos a {
  display: inline-flex;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  background: rgba(219, 143, 143, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logos img {
  width: 120px;
  height: auto;
  filter: grayscale(0%);
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer-logos a:hover img,
.footer-logos a:focus-visible img {
  opacity: 1;
  filter: none;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-muted);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.age-modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 4, 10, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 999;
}

.age-modal.is-visible {
  display: flex;
}

.age-modal__panel {
  max-width: 420px;
  background: #050b16;
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

.age-modal__badge {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(240, 79, 116, 0.15);
  color: var(--accent);
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.5rem;
}

.age-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.cookie-banner {
  position: fixed;
  inset: auto clamp(1rem, 3vw, 3rem) clamp(1rem, 3vw, 3rem);
  width: min(420px, calc(100% - 2rem));
  background: rgba(10, 16, 35, 0.95);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 30;
}

.cookie-banner.is-visible {
  display: flex;
}

.page-hero {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  background: rgba(8, 14, 33, 0.92);
  margin-bottom: 2rem;
}

.content {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(5, 10, 26, 0.92);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.content ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 960px) {
  .nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    background: rgba(5, 10, 25, 0.95);
    flex-direction: column;
    padding: 1rem;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header__nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .hero__badge {
    position: static;
    margin-top: 1rem;
    text-align: left;
  }

  .hero__actions {
    flex-direction: column;
  }

  .cookie-banner {
    width: calc(100% - 2rem);
    inset: auto 1rem 1rem 1rem;
  }
}
