:root {
  --bg-900: #08061c;
  --bg-800: #0c0927;
  --bg-700: #120d38;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.1);
  --violet: #7c3aed;
  --violet-2: #a855f7;
  --cyan: #22d3ee;
  --magenta: #ec4899;
  --gold: #f6b93b;
  --text: #eef0ff;
  --muted: #a7a3cf;
  --muted-2: #7f7ba8;
  --grad-brand: linear-gradient(120deg, #7c3aed 0%, #d946ef 45%, #22d3ee 100%);
  --grad-brand-solid: linear-gradient(120deg, #7c3aed, #ec4899 55%, #22d3ee);
  --grad-gold: linear-gradient(120deg, #f6b93b, #fbd786);
  --shadow-soft: 0 20px 60px -20px rgba(124, 58, 237, 0.55);
  --shadow-card: 0 24px 60px -28px rgba(0, 0, 0, 0.75);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --nav-h: 78px;
  --topbar-h: 44px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 88% -10%, rgba(124, 58, 237, 0.28), transparent 60%),
    radial-gradient(900px 520px at 5% 8%, rgba(34, 211, 238, 0.16), transparent 55%),
    radial-gradient(1000px 620px at 50% 120%, rgba(236, 72, 153, 0.18), transparent 60%),
    var(--bg-900);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container-x {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 22px;
}

.text-grad {
  background: var(--grad-brand-solid);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.topbar {
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.22), rgba(34, 211, 238, 0.14));
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--topbar-h);
  padding-block: 8px;
  text-align: center;
}

.topbar__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 11px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: #0b0720;
  background: var(--grad-gold);
  white-space: nowrap;
}

.topbar__text i {
  color: var(--cyan);
  margin-right: 6px;
}

.topbar__text strong {
  color: var(--text);
  font-weight: 600;
}

.navbar-x {
  border-bottom: 1px solid var(--border);
  background: rgba(8, 6, 28, 0.72);
  backdrop-filter: blur(14px);
}

.navbar-x__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand__mark {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--grad-brand-solid);
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
}

.brand__mark i {
  font-size: 1.35rem;
  color: #fff;
}

.brand__mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  mix-blend-mode: overlay;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: -0.02em;
}

.brand__name span {
  color: var(--gold);
}

.brand__tag {
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 11px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a i {
  font-size: 0.85rem;
  opacity: 0.75;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text);
  background: var(--surface);
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-brand-solid);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0b0720;
  background: var(--grad-gold);
  box-shadow: 0 14px 30px -12px rgba(246, 185, 59, 0.65);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -14px rgba(246, 185, 59, 0.8);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hamburger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  padding: 0;
  place-items: center;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

body.menu-open .hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}

body.menu-open .hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(360px, 86vw);
  z-index: 1200;
  background: linear-gradient(180deg, var(--bg-700), var(--bg-900));
  border-left: 1px solid var(--border);
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  padding: 26px 24px 34px;
  overflow-y: auto;
}

body.menu-open .mobile-nav {
  transform: translateX(0);
}

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.mobile-nav__close {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
}

.mobile-nav a.m-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 14px;
  border-radius: 13px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mobile-nav a.m-link i {
  width: 22px;
  text-align: center;
  color: var(--violet-2);
}

.mobile-nav a.m-link:hover,
.mobile-nav a.m-link.is-active {
  color: var(--text);
  background: var(--surface);
  border-color: var(--border);
}

.mobile-nav .nav-cta {
  margin-top: 22px;
  justify-content: center;
}

.mobile-nav__foot {
  margin-top: auto;
  padding-top: 24px;
  font-size: 0.8rem;
  color: var(--muted-2);
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(4, 3, 14, 0.6);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.menu-open .overlay {
  opacity: 1;
  visibility: visible;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(56px, 9vw, 118px);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.9;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg-900) 8%, rgba(8, 6, 28, 0.82) 42%, rgba(8, 6, 28, 0.25) 72%, transparent 100%),
    linear-gradient(0deg, var(--bg-900), transparent 45%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.eyebrow i {
  color: var(--gold);
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.3rem, 5.4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}

.hero p.lead {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}

.btn-x {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 15px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-primary-x {
  color: #fff;
  background: var(--grad-brand-solid);
  box-shadow: var(--shadow-soft);
}

.btn-primary-x:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 50px -18px rgba(124, 58, 237, 0.75);
}

.btn-ghost-x {
  color: var(--text);
  background: var(--surface);
  border-color: var(--border);
}

.btn-ghost-x:hover {
  transform: translateY(-3px);
  background: var(--surface-2);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.stat-chip {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  min-width: 168px;
}

.stat-chip__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  color: #0b0720;
  background: var(--grad-gold);
  flex-shrink: 0;
}

.stat-chip__icon.alt {
  background: var(--grad-brand-solid);
  color: #fff;
}

.stat-chip__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1;
}

.stat-chip__label {
  font-size: 0.78rem;
  color: var(--muted);
}

.hero__cards {
  position: absolute;
  right: 3%;
  bottom: 40px;
  z-index: 1;
  display: flex;
  gap: 14px;
}

.mini-card {
  width: 150px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(12, 9, 39, 0.72);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
}

.mini-card i {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--cyan);
}

.mini-card h4 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  margin: 0 0 4px;
}

.mini-card p {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}

.games {
  position: relative;
  padding-block: clamp(60px, 8vw, 110px);
}

.section-head {
  max-width: 640px;
  margin: 0 auto clamp(38px, 5vw, 58px);
  text-align: center;
}

.section-head .eyebrow {
  margin-bottom: 18px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.section-sub {
  color: var(--muted);
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  margin: 0;
}

.games__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.game-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, 0.55);
  box-shadow: 0 34px 70px -30px rgba(124, 58, 237, 0.7);
}

.game-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-700), var(--bg-800));
}

.game-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.game-card:hover .game-card__media img {
  transform: scale(1.06);
}

.game-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  background: rgba(8, 6, 28, 0.6);
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.game-card__badge i {
  color: var(--gold);
}

.game-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px 26px;
  flex: 1;
}

.game-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0;
}

.game-card__text {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 6px;
  flex: 1;
}

.game-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 13px;
  font-weight: 700;
  font-size: 0.98rem;
  color: #fff;
  background: var(--grad-brand-solid);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.game-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px -18px rgba(124, 58, 237, 0.8);
}

@media (max-width: 992px) {
  .games__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .games__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 1080px) {
  .hero__cards {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-right .nav-cta {
    display: none;
  }

  .hamburger {
    display: grid;
  }

  .hero__bg img {
    object-position: 70% center;
    opacity: 0.5;
  }

  .hero__bg::after {
    background:
      linear-gradient(90deg, var(--bg-900) 30%, rgba(8, 6, 28, 0.7) 70%, rgba(8, 6, 28, 0.55) 100%),
      linear-gradient(0deg, var(--bg-900), transparent 55%);
  }
}

.about {
  position: relative;
  padding-block: clamp(60px, 8vw, 110px);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.about__intro h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.about__intro p {
  color: var(--muted);
  font-size: 1.02rem;
  margin: 0 0 16px;
}

.about__panel {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.about-point {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.about-point__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: #fff;
  background: var(--grad-brand-solid);
  box-shadow: var(--shadow-soft);
}

.about-point h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 3px;
}

.about-point p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.values {
  padding-block: clamp(60px, 8vw, 110px);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.value-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.5);
}

.value-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: var(--gold);
  background: rgba(246, 185, 59, 0.12);
  border: 1px solid rgba(246, 185, 59, 0.25);
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  margin: 0 0 10px;
}

.value-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.notice {
  padding-block: clamp(20px, 4vw, 40px) clamp(60px, 8vw, 100px);
}

.notice__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.notice-card {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.16), rgba(34, 211, 238, 0.08));
  border: 1px solid rgba(168, 85, 247, 0.32);
  overflow: hidden;
}

.notice-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  color: #0b0720;
  background: var(--grad-gold);
}

.notice-card__icon.alt {
  color: #fff;
  background: var(--grad-brand-solid);
}

.notice-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 12px;
}

.notice-card p {
  color: var(--muted);
  font-size: 0.98rem;
  margin: 0;
}

.footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(12, 9, 39, 0.6), var(--bg-900));
  padding-block: clamp(48px, 6vw, 76px) 30px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer__brand .brand {
  margin-bottom: 18px;
}

.footer__desc {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0 0 20px;
  max-width: 380px;
}

.footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer__contact i {
  color: var(--cyan);
  margin-top: 3px;
}

.footer__contact a:hover {
  color: var(--text);
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 18px;
  color: var(--text);
}

.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.footer__col a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: var(--text);
}

.footer__resources a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.footer__resources i {
  font-size: 0.72rem;
  color: var(--violet-2);
}

.footer__note {
  margin: 16px 0 0;
  font-size: 0.8rem;
  color: var(--muted-2);
}

.footer__disclaimers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-block: 32px;
  border-bottom: 1px solid var(--border);
}

.footer-disc {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
}

.footer-disc__badge {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #0b0720;
  background: var(--grad-gold);
}

.footer-disc__badge.alt {
  color: #fff;
  background: var(--grad-brand-solid);
}

.footer-disc p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 26px;
}

.footer__bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted-2);
}

@media (max-width: 992px) {
  .about__grid {
    grid-template-columns: 1fr;
  }

  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .values__grid,
  .notice__grid,
  .footer__disclaimers {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .topbar__inner {
    font-size: 0.74rem;
  }

  .topbar__badge {
    display: none;
  }

  .stat-chip {
    flex: 1 1 100%;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }
}

body.no-scroll {
  overflow: hidden;
}

.page-hero {
  position: relative;
  padding-block: clamp(52px, 7vw, 92px);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(800px 400px at 80% -20%, rgba(124, 58, 237, 0.28), transparent 60%),
    radial-gradient(700px 380px at 10% 0%, rgba(34, 211, 238, 0.14), transparent 55%);
  text-align: center;
}

.page-hero .eyebrow {
  margin-bottom: 20px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0 auto 18px;
  max-width: 900px;
}

.page-sub {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 640px;
  margin: 0 auto;
}

.page-section {
  padding-block: clamp(52px, 7vw, 96px);
}

.prose {
  max-width: 880px;
  margin: 0 auto;
}

.prose__block {
  margin-bottom: 38px;
}

.prose__block:last-child {
  margin-bottom: 0;
}

.prose h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.prose h2 i {
  color: var(--violet-2);
  font-size: 0.85em;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 26px 0 10px;
}

.prose p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 15px;
}

.prose ul {
  margin: 0 0 15px;
  padding-left: 4px;
  list-style: none;
  display: grid;
  gap: 11px;
}

.prose ul li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 1rem;
}

.prose ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--cyan);
  font-size: 0.95rem;
}

.prose a {
  color: var(--cyan);
}

.prose a:hover {
  text-decoration: underline;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.contact-card {
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.5);
}

.contact-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  font-size: 1.35rem;
  color: #fff;
  background: var(--grad-brand-solid);
  box-shadow: var(--shadow-soft);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 8px;
}

.contact-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 12px;
}

.contact-card a {
  color: var(--cyan);
  font-weight: 600;
  word-break: break-word;
}

.contact-card a:hover {
  text-decoration: underline;
}

.game-stage {
  max-width: 1000px;
  margin: 0 auto;
}

.game-stage__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.game-stage__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0b0720;
  background: var(--grad-gold);
}

.game-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.35);
  background: linear-gradient(135deg, var(--bg-700), var(--bg-800));
  box-shadow: 0 34px 80px -30px rgba(124, 58, 237, 0.6);
}

.game-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.game-disc {
  max-width: 1000px;
  margin: 34px auto 0;
  display: flex;
  gap: 16px;
  padding: 24px 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.14), rgba(34, 211, 238, 0.07));
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.game-disc__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: #0b0720;
  background: var(--grad-gold);
}

.game-disc h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 8px;
}

.game-disc p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

@media (max-width: 780px) {
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 22px;
  background: radial-gradient(1000px 600px at 50% 30%, rgba(124, 58, 237, 0.28), rgba(4, 3, 14, 0.86));
  backdrop-filter: blur(10px);
}

.age-gate[hidden] {
  display: none;
}

.age-gate__box {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: 40px 34px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--bg-700), var(--bg-900));
  border: 1px solid rgba(168, 85, 247, 0.35);
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.85);
  text-align: center;
  animation: gate-pop 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes gate-pop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.age-gate__mark {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  font-size: 1.7rem;
  color: #fff;
  background: var(--grad-brand-solid);
  box-shadow: var(--shadow-soft);
}

.age-gate__badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 5px 13px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: #0b0720;
  background: var(--grad-gold);
}

.age-gate h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  margin: 0 0 14px;
}

.age-gate p {
  color: var(--muted);
  font-size: 0.96rem;
  margin: 0 0 22px;
}

.age-gate__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  padding: 15px 16px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 22px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text);
}

.age-gate__check input {
  margin-top: 3px;
  width: 20px;
  height: 20px;
  accent-color: var(--violet-2);
  flex-shrink: 0;
  cursor: pointer;
}

.age-gate__btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border: none;
  border-radius: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  background: var(--grad-brand-solid);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.age-gate__btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 24px 46px -18px rgba(124, 58, 237, 0.8);
}

.age-gate__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.age-gate__foot {
  margin: 18px 0 0;
  font-size: 0.8rem;
  color: var(--muted-2);
}

.age-gate__foot a {
  color: var(--cyan);
}

.age-gate__foot a:hover {
  text-decoration: underline;
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 1500;
  width: min(1080px, calc(100% - 36px));
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  background: rgba(12, 9, 39, 0.92);
  border: 1px solid rgba(168, 85, 247, 0.32);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 70px -24px rgba(0, 0, 0, 0.8);
  animation: cookie-rise 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes cookie-rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-consent__text {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cookie-consent__text i {
  font-size: 1.4rem;
  color: var(--gold);
}

.cookie-consent__text p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.cookie-consent__text a {
  color: var(--cyan);
}

.cookie-consent__text a:hover {
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 11px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease;
}

.cookie-btn--ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}

.cookie-btn--ghost:hover {
  background: var(--surface-2);
}

.cookie-btn--solid {
  color: #fff;
  background: var(--grad-brand-solid);
  box-shadow: var(--shadow-soft);
}

.cookie-btn--solid:hover {
  transform: translateY(-2px);
}

@media (max-width: 680px) {
  .cookie-consent__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .cookie-consent__actions {
    margin-left: 0;
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    justify-content: center;
  }
}
