﻿:root {
  --bg: #eef6ff;
  --bg-soft: #f7fbff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-dark: #08152f;
  --text: #11213f;
  --text-muted: #4d618a;
  --line: rgba(17, 33, 63, 0.1);
  --shadow: 0 14px 40px rgba(33, 69, 135, 0.14);
  --shadow-soft: 0 8px 24px rgba(33, 69, 135, 0.08);
  --cyan: #16e0ff;
  --mint: #28f0ab;
  --blue: #4b79ff;
  --pink: #ff4fd8;
  --amber: #ffbd4a;
  --danger: #ff5573;
  --success: #1fd78c;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --maxw: 1180px;
  --font-display: "Orbitron", "Segoe UI", sans-serif;
  --font-body: "Exo 2", "Segoe UI", sans-serif;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background-color: #e7f2ff;
  background:
    linear-gradient(180deg, rgba(238, 246, 255, 0.3), rgba(248, 251, 255, 0.45)),
    radial-gradient(circle at 10% 12%, rgba(22, 224, 255, 0.14), transparent 36%),
    radial-gradient(circle at 90% 10%, rgba(255, 79, 216, 0.12), transparent 34%),
    radial-gradient(circle at 78% 84%, rgba(40, 240, 171, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(238, 246, 255, 0.75) 0%, rgba(237, 244, 255, 0.82) 48%, rgba(248, 251, 255, 0.95) 100%),
    url("../img/background.jpg") center top / cover fixed no-repeat;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-shell {
  position: relative;
  isolation: isolate;
}

.ambient-fx {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -4;
  overflow: hidden;
}

.ambient-fx__fire {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -8vh;
  height: min(38vh, 360px);
  background:
    radial-gradient(ellipse at 12% 100%, rgba(255, 124, 38, 0.28), transparent 62%),
    radial-gradient(ellipse at 34% 100%, rgba(255, 170, 67, 0.24), transparent 58%),
    radial-gradient(ellipse at 52% 100%, rgba(255, 95, 31, 0.24), transparent 60%),
    radial-gradient(ellipse at 71% 100%, rgba(255, 179, 76, 0.2), transparent 56%),
    radial-gradient(ellipse at 88% 100%, rgba(255, 108, 33, 0.22), transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 73, 29, 0.18), transparent 74%);
  filter: blur(12px) saturate(1.08);
  opacity: 0.95;
  transform-origin: 50% 100%;
  animation: fireBreath 8.5s ease-in-out infinite;
}

.ambient-fx__fire::before,
.ambient-fx__fire::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 72%;
  pointer-events: none;
}

.ambient-fx__fire::before {
  background:
    radial-gradient(ellipse at 20% 100%, rgba(255, 205, 120, 0.14), transparent 58%),
    radial-gradient(ellipse at 47% 100%, rgba(255, 150, 63, 0.18), transparent 64%),
    radial-gradient(ellipse at 78% 100%, rgba(255, 118, 44, 0.14), transparent 60%);
  filter: blur(10px);
  animation: fireBreath 5.6s ease-in-out infinite reverse;
}

.ambient-fx__fire::after {
  background:
    linear-gradient(180deg, transparent, rgba(255, 120, 40, 0.06) 56%, rgba(255, 96, 33, 0.08));
  opacity: 0.75;
}

.ambient-fx__embers {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ambient-fx__ember {
  position: absolute;
  left: var(--x, 50%);
  bottom: -2.5rem;
  width: var(--size, 4px);
  height: var(--size, 4px);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 246, 214, 0.95) 0%, rgba(255, 194, 107, 0.92) 35%, rgba(255, 123, 44, 0.75) 68%, rgba(255, 123, 44, 0) 100%);
  opacity: var(--opacity, 0.45);
  filter: blur(var(--blur, 0px)) hue-rotate(calc(var(--hue, 0) * 1deg));
  box-shadow:
    0 0 8px rgba(255, 150, 63, 0.45),
    0 0 18px rgba(255, 104, 37, 0.22);
  transform: translate3d(0, 0, 0) scale(0.85);
  animation: emberRise var(--dur, 12s) linear infinite;
  animation-delay: var(--delay, 0s);
}

.ambient-fx__ember:nth-child(3n) {
  background:
    radial-gradient(circle, rgba(255, 251, 226, 0.96) 0%, rgba(255, 214, 118, 0.92) 38%, rgba(255, 144, 49, 0.76) 72%, rgba(255, 144, 49, 0) 100%);
}

.ambient-fx__ember:nth-child(4n) {
  opacity: calc(var(--opacity, 0.4) * 0.8);
  box-shadow:
    0 0 6px rgba(255, 186, 94, 0.4),
    0 0 14px rgba(255, 112, 40, 0.16);
}

@keyframes emberRise {
  0% {
    transform: translate3d(0, 0, 0) scale(0.7);
    opacity: 0;
  }
  8% {
    opacity: var(--opacity, 0.45);
  }
  65% {
    opacity: calc(var(--opacity, 0.45) * 0.9);
  }
  100% {
    transform: translate3d(var(--drift, 6vw), calc(-1 * var(--rise, 80vh)), 0) scale(1.25);
    opacity: 0;
  }
}

@keyframes fireBreath {
  0%,
  100% {
    transform: translateY(0) scale(1, 1);
    opacity: 0.88;
  }
  50% {
    transform: translateY(-6px) scale(1.03, 1.08);
    opacity: 1;
  }
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -2;
  filter: blur(30px);
  opacity: 0.55;
}

.site-shell::before {
  top: -12rem;
  left: -8rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(22, 224, 255, 0.38), transparent 68%);
  animation: floatBlob 14s ease-in-out infinite;
}

.site-shell::after {
  right: -10rem;
  bottom: -14rem;
  width: 32rem;
  height: 32rem;
  background: radial-gradient(circle, rgba(255, 79, 216, 0.28), transparent 68%);
  animation: floatBlob 17s ease-in-out infinite reverse;
}

@keyframes floatBlob {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(1rem, -1.5rem, 0) scale(1.08);
  }
}

.container {
  width: min(calc(100% - 2rem), var(--maxw));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section.compact {
  padding: 3rem 0;
}

.panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(245, 251, 255, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
}

.grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(75, 121, 255, 0.18);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 1px rgba(22, 224, 255, 0.08) inset;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  box-shadow: 0 0 10px rgba(22, 224, 255, 0.8);
}

.game-hero__meta .eyebrow {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.8rem;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

h1,
.display {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-family: var(--font-display);
  text-transform: uppercase;
}

h3 {
  font-size: 1.12rem;
  font-family: var(--font-display);
  text-transform: uppercase;
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

ul,
ol {
  margin: 0.35rem 0 1rem;
  padding-left: 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
}

li + li {
  margin-top: 0.28rem;
}

.lede {
  font-size: 1.05rem;
  color: #334a75;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background-color 0.25s ease,
    border-color 0.25s ease;
  user-select: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: #041125;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  box-shadow: 0 10px 24px rgba(22, 224, 255, 0.24), 0 0 0 1px rgba(255, 255, 255, 0.45) inset;
}

.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(22, 224, 255, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.55) inset;
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(75, 121, 255, 0.18);
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(75, 121, 255, 0.22);
}

.btn-danger {
  background: linear-gradient(135deg, #ff7e95, #ff5573);
  color: white;
  box-shadow: 0 8px 20px rgba(255, 85, 115, 0.28);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 33, 63, 0.08);
  color: #355280;
  font-weight: 600;
  font-size: 0.85rem;
}

.neon-outline {
  position: relative;
  border: 1px solid rgba(75, 121, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
}

.neon-outline::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(22, 224, 255, 0.8), rgba(255, 79, 216, 0.55), rgba(40, 240, 171, 0.8));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.65;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(248, 252, 255, 0.9), rgba(248, 252, 255, 0.72));
  border-bottom: 1px solid rgba(75, 121, 255, 0.12);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0b1b34;
}

.brand__glyph {
  width: 50px;
  height: 50px;
  padding: 4px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.82), transparent 40%),
    linear-gradient(135deg, rgba(22, 224, 255, 0.28), rgba(40, 240, 171, 0.22)),
    rgba(9, 22, 45, 0.96);
  border: 1px solid rgba(22, 224, 255, 0.28);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset, 0 10px 22px rgba(13, 26, 52, 0.24);
}

.brand__glyph::before,
.brand__glyph::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.brand__glyph::before {
  inset: 9px;
  border: 2px solid rgba(22, 224, 255, 0.95);
  box-shadow: 0 0 18px rgba(22, 224, 255, 0.65);
}

.brand__glyph::after {
  width: 8px;
  height: 8px;
  background: var(--mint);
  top: 8px;
  right: 8px;
  box-shadow: 0 0 14px rgba(40, 240, 171, 0.9);
}

.brand__glyph::before,
.brand__glyph::after {
  display: none;
}

.brand__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.brand small {
  display: block;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.76rem;
  margin-top: 0.15rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav a {
  position: relative;
  padding: 0.58rem 0.72rem;
  border-radius: 12px;
  font-weight: 700;
  color: #1d335f;
  font-size: 0.92rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  background: rgba(75, 121, 255, 0.08);
}

.nav a.is-active {
  background: rgba(22, 224, 255, 0.14);
  color: #08244d;
  box-shadow: 0 0 0 1px rgba(22, 224, 255, 0.2) inset;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.site-header .btn {
  min-height: 42px;
  padding: 0.6rem 0.85rem;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(75, 121, 255, 0.18);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  border-radius: 2px;
  background: #163362;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}

.menu-toggle span:nth-child(1) {
  top: 14px;
}

.menu-toggle span:nth-child(2) {
  top: 21px;
}

.menu-toggle span:nth-child(3) {
  top: 28px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-panel {
  display: none;
  padding-top: 0.35rem;
  padding-bottom: 0.9rem;
  border-top: 1px solid rgba(75, 121, 255, 0.08);
}

.mobile-panel .nav {
  display: grid;
  gap: 0.35rem;
}

.mobile-panel .nav a {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(75, 121, 255, 0.12);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-panel.is-open {
  display: block;
  animation: fadeSlide 0.28s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero {
  padding: 2.5rem 0 3rem;
}

.hero__wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem;
  align-items: stretch;
}

.hero__card {
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
}

.hero__card::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -10%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(22, 224, 255, 0.2), transparent 70%);
  animation: pulseHalo 8s ease-in-out infinite;
}

.hero__card::after {
  content: "";
  position: absolute;
  inset: auto -20% -25% auto;
  width: 52%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 79, 216, 0.18), transparent 70%);
  animation: pulseHalo 9s ease-in-out infinite reverse;
}

@keyframes pulseHalo {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__title {
  max-width: 16ch;
  margin-bottom: 0.8rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.35rem 0 1rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.stat-card {
  padding: 0.85rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(75, 121, 255, 0.12);
  box-shadow: var(--shadow-soft);
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.stat-card span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  padding: 1rem;
  min-height: 460px;
  display: grid;
  place-items: center;
}

.hero-stage {
  width: min(100%, 430px);
  aspect-ratio: 0.9;
  border-radius: 28px;
  position: relative;
  background:
    linear-gradient(160deg, rgba(4, 14, 33, 0.96), rgba(12, 31, 67, 0.96)),
    #0c2047;
  border: 1px solid rgba(22, 224, 255, 0.28);
  box-shadow:
    0 22px 45px rgba(10, 28, 61, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 45px rgba(22, 224, 255, 0.08) inset;
  overflow: hidden;
}

.hero-stage__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
  transform: scale(1.02);
  z-index: 0;
  pointer-events: none;
}

.hero-stage__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(22, 224, 255, 0.34), transparent 42%),
    radial-gradient(circle at 16% 82%, rgba(255, 189, 74, 0.18), transparent 44%),
    linear-gradient(145deg, rgba(3, 13, 29, 0.28), rgba(6, 17, 38, 0.6) 55%, rgba(5, 12, 25, 0.72));
  z-index: 1;
  pointer-events: none;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: auto -5% -18% -5%;
  height: 45%;
  background: radial-gradient(circle at 50% 10%, rgba(22, 224, 255, 0.22), transparent 70%);
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at 50% 50%, black 45%, transparent 95%);
}

.hero-avatar {
  position: relative;
  width: 72%;
  aspect-ratio: 0.78;
  border-radius: 30px;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.28), transparent 35%),
    radial-gradient(circle at 70% 18%, rgba(255, 79, 216, 0.28), transparent 40%),
    radial-gradient(circle at 50% 70%, rgba(22, 224, 255, 0.22), transparent 48%),
    linear-gradient(160deg, #152c61, #0d1834 68%);
  border: 1px solid rgba(22, 224, 255, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  display: grid;
  place-items: center;
  transform: rotate(-4deg);
  animation: avatarFloat 6s ease-in-out infinite;
}

.hero-avatar::before,
.hero-avatar::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-avatar::before {
  width: 70%;
  aspect-ratio: 1;
  top: 18%;
  background: radial-gradient(circle at 50% 35%, rgba(40, 240, 171, 0.45), transparent 65%);
}

.hero-avatar::after {
  width: 45%;
  aspect-ratio: 1;
  bottom: 14%;
  right: 8%;
  background: radial-gradient(circle, rgba(255, 189, 74, 0.38), transparent 68%);
}

@keyframes avatarFloat {
  0%,
  100% {
    transform: rotate(-4deg) translateY(0);
  }
  50% {
    transform: rotate(-2deg) translateY(-8px);
  }
}

.avatar-glyph {
  position: relative;
  width: 74%;
  aspect-ratio: 0.86;
}

.avatar-glyph .head {
  position: absolute;
  top: 4%;
  left: 50%;
  width: 46%;
  height: 32%;
  transform: translateX(-50%);
  border-radius: 38% 38% 46% 46%;
  background: linear-gradient(180deg, #23f0ff, #0e7dff);
  box-shadow: 0 0 30px rgba(35, 240, 255, 0.38);
}

.avatar-glyph .visor {
  position: absolute;
  top: 12%;
  left: 50%;
  width: 34%;
  height: 12%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, #ff4fd8, #ffd66f);
  box-shadow: 0 0 22px rgba(255, 79, 216, 0.45);
}

.avatar-glyph .torso {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 58%;
  height: 44%;
  transform: translateX(-50%);
  border-radius: 30% 30% 22% 22%;
  background: linear-gradient(180deg, #1a2e62, #101d41);
  border: 1px solid rgba(40, 240, 171, 0.24);
}

.avatar-glyph .arm,
.avatar-glyph .leg {
  position: absolute;
  background: linear-gradient(180deg, #d2efff, #92d4ff);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(146, 212, 255, 0.16);
}

.avatar-glyph .arm.left {
  width: 12%;
  height: 28%;
  top: 35%;
  left: 20%;
  transform: rotate(28deg);
}

.avatar-glyph .arm.right {
  width: 12%;
  height: 28%;
  top: 35%;
  right: 20%;
  transform: rotate(-28deg);
}

.avatar-glyph .leg.left {
  width: 13%;
  height: 28%;
  bottom: 4%;
  left: 36%;
  transform: rotate(10deg);
}

.avatar-glyph .leg.right {
  width: 13%;
  height: 28%;
  bottom: 4%;
  right: 36%;
  transform: rotate(-10deg);
}

.hero-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.float-badge {
  position: absolute;
  padding: 0.65rem 0.8rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: #17386d;
  font-weight: 700;
  border: 1px solid rgba(75, 121, 255, 0.14);
  box-shadow: var(--shadow-soft);
  animation: floatChip 5s ease-in-out infinite;
}

.float-badge:nth-child(1) {
  top: 10%;
  left: 2%;
}

.float-badge:nth-child(2) {
  top: 58%;
  right: 4%;
  animation-delay: -1.4s;
}

.float-badge:nth-child(3) {
  bottom: 4%;
  left: 9%;
  animation-delay: -2.3s;
}

@keyframes floatChip {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero-ribbon {
  margin-top: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  background: rgba(8, 21, 47, 0.96);
  color: white;
  border-radius: 14px;
  box-shadow: 0 12px 22px rgba(8, 21, 47, 0.18);
}

.hero-ribbon__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px rgba(40, 240, 171, 0.8);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.section-heading p {
  max-width: 54ch;
  margin: 0;
}

.feature-card,
.info-card,
.review-card,
.legal-card,
.timeline-card,
.faq-card,
.badge-card,
.contact-card {
  position: relative;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(75, 121, 255, 0.1);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.feature-card::after,
.info-card::after,
.review-card::after,
.badge-card::after {
  content: "";
  position: absolute;
  inset: auto -15% -35% auto;
  width: 8rem;
  height: 8rem;
  background: radial-gradient(circle, rgba(22, 224, 255, 0.14), transparent 70%);
  pointer-events: none;
}

.feature-card h3,
.info-card h3,
.review-card h3,
.badge-card h3 {
  margin-bottom: 0.4rem;
}

.feature-card .icon,
.badge-card .icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #08244d;
  background: linear-gradient(135deg, rgba(22, 224, 255, 0.25), rgba(40, 240, 171, 0.25));
  box-shadow: 0 8px 18px rgba(22, 224, 255, 0.14);
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.kpi {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(75, 121, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.kpi strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin-bottom: 0.25rem;
}

.kpi span {
  color: var(--text-muted);
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: start;
}

.story-panel {
  padding: 1.35rem;
}

.story-panel ul,
.story-panel ol {
  margin-bottom: 0;
}

.feature-card > *:last-child,
.info-card > *:last-child,
.review-card > *:last-child,
.legal-card > *:last-child,
.timeline-card > *:last-child,
.faq-card > *:last-child,
.badge-card > *:last-child,
.contact-card > *:last-child,
.story-panel > *:last-child {
  margin-bottom: 0;
}

.story-panel .steps {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.step__num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: #06224a;
  background: linear-gradient(135deg, rgba(22, 224, 255, 0.42), rgba(40, 240, 171, 0.34));
  box-shadow: 0 8px 18px rgba(22, 224, 255, 0.18);
}

.step p {
  margin: 0.1rem 0 0;
}

.step h4 {
  margin: 0;
  font-size: 1rem;
}

.glass-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.glass-table thead {
  background: linear-gradient(135deg, rgba(22, 224, 255, 0.15), rgba(75, 121, 255, 0.12));
}

.glass-table th,
.glass-table td {
  text-align: left;
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid rgba(17, 33, 63, 0.07);
  vertical-align: top;
}

.glass-table tbody tr:last-child td {
  border-bottom: 0;
}

.table-card-shell {
  width: 100%;
  max-width: 100%;
}

.glow-divider {
  height: 1px;
  margin: 1rem 0 1.1rem;
  background: linear-gradient(90deg, transparent, rgba(22, 224, 255, 0.5), rgba(255, 79, 216, 0.5), transparent);
}

.game-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.game-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 251, 255, 0.85));
  border: 1px solid rgba(75, 121, 255, 0.1);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto 1fr;
}

.game-card__visual {
  position: relative;
  min-height: 170px;
  padding: 1rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(22, 224, 255, 0.2), transparent 38%),
    radial-gradient(circle at 85% 22%, rgba(255, 79, 216, 0.18), transparent 42%),
    radial-gradient(circle at 50% 88%, rgba(40, 240, 171, 0.18), transparent 44%),
    linear-gradient(160deg, #07142d, #0d2148 62%);
  border-bottom: 1px solid rgba(22, 224, 255, 0.1);
  overflow: hidden;
}

.game-card__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 12, 27, 0.18), rgba(5, 15, 32, 0.48)),
    linear-gradient(0deg, rgba(4, 13, 28, 0.6), rgba(4, 13, 28, 0.08));
  z-index: 1;
}

.game-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.35;
  z-index: 2;
}

.game-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.98;
  transform: scale(1.03);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.game-card:hover .game-card__image {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.02);
}

.game-card__chips {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.game-card__chip {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.22);
  animation: chipFloat 6s ease-in-out infinite;
}

.game-card__chip:nth-child(1) {
  top: 14%;
  left: 10%;
  background: rgba(22, 224, 255, 0.24);
}

.game-card__chip:nth-child(2) {
  top: 34%;
  right: 12%;
  background: rgba(255, 79, 216, 0.24);
  animation-delay: -2s;
}

.game-card__chip:nth-child(3) {
  bottom: 12%;
  left: 34%;
  background: rgba(40, 240, 171, 0.22);
  animation-delay: -4s;
}

.game-card__body {
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
}

.game-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.game-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.meter {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(17, 33, 63, 0.08);
  overflow: hidden;
}

.meter > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--mint), var(--amber));
  box-shadow: 0 0 12px rgba(22, 224, 255, 0.35);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag {
  padding: 0.38rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(75, 121, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 700;
  color: #33517d;
}

.timeline {
  display: grid;
  gap: 0.9rem;
  position: relative;
  isolation: isolate;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, rgba(22, 224, 255, 0.55), rgba(75, 121, 255, 0.3), rgba(255, 79, 216, 0.35));
  z-index: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.9rem;
  position: relative;
  z-index: 1;
}

.timeline-item__dot {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(22, 224, 255, 0.94), rgba(255, 79, 216, 0.9));
  border: 1px solid rgba(75, 121, 255, 0.18);
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(9, 42, 87, 0.28);
  font-weight: 800;
  font-family: var(--font-display);
  z-index: 2;
}

.timeline-item__content {
  padding: 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(75, 121, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.timeline-item__content small {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(75, 121, 255, 0.12);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 0.95rem 1rem;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
  color: #153262;
  cursor: pointer;
}

.faq-item button span:last-child {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(22, 224, 255, 0.14);
  color: #07325f;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.faq-item button[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
  background: rgba(255, 79, 216, 0.14);
}

.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-item__panel > div {
  padding: 0.15rem 1rem 1rem;
}

.faq-item__panel p:last-child {
  margin-bottom: 0;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
}

.rating__stars {
  color: #ffb330;
  letter-spacing: 0.08em;
  text-shadow: 0 0 10px rgba(255, 179, 48, 0.22);
}

.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.75rem;
}

.pros-cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.pros-cons li {
  padding-left: 1.05rem;
  position: relative;
  color: var(--text-muted);
}

.pros-cons li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px rgba(40, 240, 171, 0.45);
}

.pros-cons .cons li::before {
  background: var(--pink);
  box-shadow: 0 0 8px rgba(255, 79, 216, 0.35);
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.badge-card {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 0.4rem;
}

.badge-card.is-unlocked {
  border-color: rgba(40, 240, 171, 0.25);
  box-shadow: 0 12px 30px rgba(40, 240, 171, 0.1);
}

.badge-card.is-locked {
  opacity: 0.78;
}

.badge-state {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  width: fit-content;
}

.badge-state.unlocked {
  background: rgba(40, 240, 171, 0.14);
  color: #086c4e;
}

.badge-state.locked {
  background: rgba(75, 121, 255, 0.1);
  color: #355280;
}

.achievement-progress {
  margin-top: 1rem;
}

.achievement-progress .meter {
  margin-top: 0.35rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.contact-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.contact-point {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.7rem;
  align-items: start;
}

.contact-point__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(22, 224, 255, 0.14);
  color: #0b3367;
}

.contact-point h4 {
  margin: 0;
  font-size: 0.98rem;
}

.contact-point p {
  margin: 0.2rem 0 0;
  font-size: 0.94rem;
}

.form-grid {
  display: grid;
  gap: 0.8rem;
}

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

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-weight: 700;
  color: #17345e;
  font-size: 0.9rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(75, 121, 255, 0.18);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.78rem 0.85rem;
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(22, 224, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(22, 224, 255, 0.13);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: rgba(255, 85, 115, 0.45);
  box-shadow: 0 0 0 4px rgba(255, 85, 115, 0.12);
}

.form-note {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.form-success {
  margin-top: 0.6rem;
  display: none;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: rgba(40, 240, 171, 0.12);
  color: #0b6f51;
  border: 1px solid rgba(40, 240, 171, 0.2);
  font-weight: 600;
}

.form-success.is-visible {
  display: block;
  animation: fadeSlide 0.22s ease;
}

.legal-content {
  display: grid;
  gap: 1rem;
}

.legal-card h3 {
  margin-bottom: 0.35rem;
}

.legal-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.legal-card li + li {
  margin-top: 0.35rem;
}

.page-hero {
  padding: 2rem 0 1.2rem;
}

.page-hero__box {
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
  transform: scale(1.03);
  pointer-events: none;
}

.page-hero__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(22, 224, 255, 0.14), transparent 36%),
    radial-gradient(circle at 82% 18%, rgba(255, 79, 216, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 251, 255, 0.84));
  pointer-events: none;
}

.page-hero__box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(22, 224, 255, 0.12), transparent 35%),
    radial-gradient(circle at 88% 24%, rgba(255, 79, 216, 0.12), transparent 36%),
    radial-gradient(circle at 60% 90%, rgba(40, 240, 171, 0.1), transparent 38%);
  pointer-events: none;
}

.page-hero__box > *:not(.page-hero__poster):not(.page-hero__shade) {
  position: relative;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  color: #4a6390;
}

.breadcrumbs a {
  color: #31518a;
  font-weight: 700;
}

.breadcrumbs span.sep {
  opacity: 0.5;
}

.highlight-list {
  display: grid;
  gap: 0.65rem;
}

.highlight-list .item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.6rem;
  align-items: start;
}

.highlight-list .item i {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(22, 224, 255, 0.14);
  color: #093669;
  font-style: normal;
}

.quote-card {
  padding: 1.1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(8, 21, 47, 0.97), rgba(10, 30, 64, 0.95));
  color: #dff1ff;
  border: 1px solid rgba(22, 224, 255, 0.2);
  box-shadow: 0 20px 40px rgba(8, 21, 47, 0.18);
}

.footer-brandline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.55rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(75, 121, 255, 0.12);
  margin-bottom: 0.7rem;
}

.footer-brandline img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 18px rgba(13, 26, 52, 0.14);
}

.footer-brandline span {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #0c2142;
  font-size: 0.9rem;
}

.quote-card p {
  color: rgba(223, 241, 255, 0.9);
  margin-bottom: 0.8rem;
}

.quote-card small {
  color: rgba(223, 241, 255, 0.74);
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(75, 121, 255, 0.12);
  background: linear-gradient(180deg, rgba(246, 251, 255, 0.86), rgba(242, 248, 255, 0.9));
  backdrop-filter: blur(10px);
}

.site-footer__top {
  padding: 1.5rem 0 1rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.footer-links h4 {
  margin: 0 0 0.55rem;
  font-size: 0.88rem;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  padding: 0.2rem 0;
  font-weight: 600;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: #213b69;
}

.compliance-box {
  padding: 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(75, 121, 255, 0.12);
  box-shadow: var(--shadow-soft);
}

.compliance-box h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.compliance-box p {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
}

.compliance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.compliance-tag {
  padding: 0.33rem 0.55rem;
  border-radius: 999px;
  background: rgba(22, 224, 255, 0.1);
  color: #0f3a6c;
  font-size: 0.78rem;
  font-weight: 700;
}

.site-footer__bottom {
  border-top: 1px solid rgba(75, 121, 255, 0.1);
  padding: 0.95rem 0 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.age-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 85, 115, 0.1);
  border: 1px solid rgba(255, 85, 115, 0.16);
  color: #a92044;
  font-weight: 700;
}

.age-pill::before {
  content: "18+";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 85, 115, 0.16);
  box-shadow: 0 0 0 1px rgba(255, 85, 115, 0.15) inset;
  font-family: var(--font-display);
  font-size: 0.78rem;
}

.notice-strip {
  padding: 0.8rem 0;
  border-top: 1px solid rgba(75, 121, 255, 0.08);
  border-bottom: 1px solid rgba(75, 121, 255, 0.08);
  background: rgba(255, 255, 255, 0.62);
}

.notice-strip__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.notice-strip p {
  margin: 0;
  font-size: 0.92rem;
}
.age-gate,
.cookie-banner {
  position: fixed;
  z-index: 80;
}

.age-gate {
  inset: 0;
  background: rgba(5, 13, 28, 0.62);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

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

.age-gate__dialog {
  width: min(100%, 580px);
  border-radius: 24px;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 15% 15%, rgba(22, 224, 255, 0.12), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(255, 79, 216, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(75, 121, 255, 0.14);
  box-shadow: 0 30px 70px rgba(4, 14, 33, 0.25);
}

.age-gate__dialog h2 {
  margin-bottom: 0.6rem;
}

.age-gate__dialog p {
  margin-bottom: 0.8rem;
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.cookie-banner {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
  animation: fadeSlide 0.3s ease;
}

.cookie-banner__inner {
  width: min(100%, 900px);
  margin-inline: auto;
  padding: 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(75, 121, 255, 0.14);
  box-shadow: 0 20px 40px rgba(8, 21, 47, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.cookie-banner__inner p {
  margin: 0;
  max-width: 56ch;
  font-size: 0.92rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.page-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.page-nav-item {
  border-radius: 16px;
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(75, 121, 255, 0.1);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-nav-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.page-nav-item strong {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.page-nav-item span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}

.reveal[data-delay="3"] {
  transition-delay: 0.24s;
}

.inline-code {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: rgba(75, 121, 255, 0.08);
  color: #1b3e73;
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
}

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

.spacer-sm {
  height: 0.4rem;
}

.spacer-md {
  height: 0.8rem;
}

.mt-0 {
  margin-top: 0 !important;
}

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

.text-center {
  text-align: center;
}

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

.hidden {
  display: none !important;
}

@media (max-width: 1100px) {
  .hero__wrap,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

  .site-footer__top {
    grid-template-columns: 1fr;
  }

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

  .header-actions .age-pill {
    display: none;
  }
}

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

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions .age-pill,
  .header-actions .btn {
    display: none;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .mobile-panel .nav {
    display: grid;
  }

  .grid.cols-4,
  .kpi-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-list,
  .review-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 680px) {
  .section {
    padding: 3.35rem 0;
  }

  .hero {
    padding: 1.35rem 0 2rem;
  }

  .hero__card,
  .page-hero__box {
    padding: 1.05rem;
  }

  .hero-stage {
    border-radius: 22px;
  }

  .hero-avatar {
    width: 78%;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .kpi-row,
  .badge-grid,
  .form-row,
  .footer-links,
  .page-nav-grid,
  .pros-cons {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
  }

  .cookie-banner__inner {
    padding: 0.8rem;
  }

  .site-header__inner {
    min-height: 68px;
    gap: 0.55rem;
  }

  .brand {
    gap: 0.55rem;
    font-size: 0.95rem;
    min-width: 0;
  }

  .brand > span:last-child {
    min-width: 0;
  }

  .brand__glyph {
    width: 42px;
    height: 42px;
    padding: 3px;
  }

  .age-gate__dialog {
    padding: 1rem;
    border-radius: 18px;
  }

  .float-badge {
    display: none;
  }

  .notice-strip__row {
    align-items: flex-start;
  }

  .glass-table--cards {
    display: block;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  .glass-table--cards thead {
    display: none;
  }

  .glass-table--cards tbody {
    display: grid;
    gap: 0.75rem;
  }

  .glass-table--cards tbody tr {
    display: block;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(75, 121, 255, 0.1);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
  }

  .glass-table--cards tbody td {
    display: grid;
    grid-template-columns: minmax(112px, 130px) 1fr;
    gap: 0.65rem;
    align-items: start;
    width: 100%;
    padding: 0.72rem 0.8rem;
    border-bottom: 1px solid rgba(17, 33, 63, 0.06);
    overflow-wrap: anywhere;
  }

  .glass-table--cards tbody td:last-child {
    border-bottom: 0;
  }

  .glass-table--cards tbody td::before {
    content: attr(data-label);
    font-weight: 800;
    color: #244777;
    font-size: 0.82rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-family: var(--font-display);
  }

  .glass-table--cards tbody td strong {
    display: inline-block;
    color: #102a52;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
