:root {
  --bg: #100222;
  --bg-glow: radial-gradient(1100px 820px at 20% -10%, rgba(99, 102, 241, .35), transparent), radial-gradient(900px 740px at 90% -5%, rgba(236, 191, 65, .35), transparent);
  --card: rgba(22, 14, 48, .9);
  --text: #f9f6ff;
  --muted: rgba(223, 214, 255, .7);
  --primary: #c084fc;
  --primary-dark: #a855f7;
  --accent: #facc15;
  --accent-dark: #eab308;
  --shadow: 0 26px 58px rgba(12, 4, 32, .65);
}

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Inter:wght@400;500;600&display=swap");

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.7 "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: -20% -15% 45% -15%;
  background: var(--bg-glow);
  filter: blur(20px);
  opacity: .9;
  z-index: -2;
}

.container { width: min(1120px, 92%); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(16, 2, 34, .82);
  border-bottom: 1px solid rgba(236, 191, 65, .25);
  box-shadow: 0 18px 32px rgba(12, 4, 32, .55);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.brand {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 1.2px;
  font-size: 26px;
  color: var(--accent);
  text-transform: uppercase;
}
.nav a {
  color: rgba(249, 246, 255, .74);
  text-decoration: none;
  margin-left: 24px;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
  font-weight: 500;
}
.nav a:hover { color: #fff; border-color: rgba(236, 191, 65, .6); }

.hero {
  padding: 96px 0 54px;
  text-align: center;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 10% 20% 35% 20%;
  background: radial-gradient(circle, rgba(192, 132, 252, .24), transparent 70%);
  filter: blur(50px);
  z-index: -1;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(46px, 6.5vw, 66px);
  margin: 0 0 18px;
  color: #fef9c3;
  text-shadow: 0 20px 44px rgba(12, 4, 32, .7);
}
.hero p {
  margin: 0 0 26px;
  color: rgba(223, 214, 255, .75);
  max-width: 580px;
  margin-inline: auto;
}
.hero-cta { display: inline-flex; gap: 18px; flex-wrap: wrap; justify-content: center; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: .3px;
  transition: transform .12s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
  box-shadow: 0 20px 44px rgba(12, 4, 32, .45);
}
.button:active { transform: translateY(1px); }
.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #190227;
}
.button.primary:hover { box-shadow: 0 24px 56px rgba(192, 132, 252, .45); }
.button.ghost {
  background: rgba(27, 12, 52, .7);
  border-color: rgba(192, 132, 252, .5);
  color: var(--text);
}
.button.ghost:hover {
  border-color: rgba(236, 191, 65, .6);
  color: #fff;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 54px 0 40px;
  justify-content: center;
  grid-auto-rows: 1fr;
}
.feature {
  background: linear-gradient(160deg, rgba(24, 10, 54, .94), rgba(17, 7, 42, .84));
  border: 1px solid rgba(192, 132, 252, .36);
  border-radius: 26px;
  padding: 28px 26px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.feature:nth-child(2n) { transform: translateY(18px); }
.feature::before {
  content: "";
  position: absolute;
  inset: -50% -30% auto auto;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(236, 191, 65, .22), transparent 70%);
  filter: blur(8px);
}
.feature h3 {
  margin: 0;
  color: var(--accent);
  font-family: "Playfair Display", serif;
  font-size: 20px;
  letter-spacing: .6px;
  position: relative;
}
.feature p { margin: 0; color: var(--muted); position: relative; }

.highlight { text-align: center; padding: 52px 0 64px; position: relative; }
.highlight::before {
  content: "";
  position: absolute;
  inset: 12% 12% 50% 12%;
  background: radial-gradient(circle, rgba(236, 191, 65, .18), transparent 75%);
  filter: blur(40px);
  z-index: -1;
}
.highlight h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  margin-bottom: 18px;
  color: var(--accent);
  font-family: "Playfair Display", serif;
}
.highlight p { margin: 0 0 32px; color: rgba(223, 214, 255, .75); }

.game-console {
  background: rgba(22, 14, 48, .92);
  border: 1px solid rgba(192, 132, 252, .32);
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 28px 60px rgba(12, 4, 32, .65);
  margin: 28px 0 34px;
  position: relative;
  overflow: hidden;
}
.game-console::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  inset: auto -60px -80px auto;
  background: radial-gradient(circle, rgba(236, 191, 65, .24), transparent 70%);
  filter: blur(25px);
}
.gc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 20px;
  border-bottom: 1px solid rgba(236, 191, 65, .28);
}
.gc-title {
  font-weight: 600;
  letter-spacing: .6px;
  color: var(--accent);
  font-family: "Playfair Display", serif;
}
.gc-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(223, 214, 255, .78);
  font-weight: 600;
}
.gc-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(236, 191, 65, .22);
}
.gc-viewport {
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #0a0615;
  border: 1px solid rgba(192, 132, 252, .32);
}
.gc-viewport iframe { width: 100%; height: 100%; border: 0; display: block; }
.gc-controls {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  padding-top: 18px;
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, .9fr);
  grid-template-areas:
    "difference terms"
    "difference privacy"
    "difference legal";
  gap: 26px;
  margin: 36px 0 44px;
  align-items: start;
}
#difference {
  grid-area: difference;
  display: grid;
  gap: 22px;
  align-content: start;
}
#terms { grid-area: terms; }
#privacy { grid-area: privacy; }
#legal { grid-area: legal; }
#difference, #terms, #privacy, #legal, .info-card {
  background: rgba(22, 14, 48, .92);
  border: 1px solid rgba(192, 132, 252, .34);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
#difference::before, #terms::before, #privacy::before, #legal::before, .info-card::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  top: -80px;
  left: -60px;
  background: radial-gradient(circle, rgba(192, 132, 252, .26), transparent 70%);
  filter: blur(30px);
}
.info-card h2, #difference h2, #terms h2, #privacy h2, #legal h2 {
  margin: 0 0 18px;
  font-size: 24px;
  color: var(--accent);
  font-family: "Playfair Display", serif;
  position: relative;
}
.info-card h2::after, #difference h2::after, #terms h2::after, #privacy h2::after, #legal h2::after {
  content: "";
  display: block;
  width: 88px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-top: 12px;
  border-radius: 3px;
}
.info-card h3, #difference h3 {
  margin: 20px 0 10px;
  color: var(--primary);
  letter-spacing: .4px;
  text-transform: uppercase;
  font-size: 16px;
}
.info-card p, #difference p, #terms p, #privacy p, #legal p { margin: 0; color: var(--muted); }

.site-footer {
  border-top: 1px solid rgba(236, 191, 65, .25);
  padding: 30px 0 42px;
  color: rgba(223, 214, 255, .74);
  text-align: center;
  background: rgba(16, 2, 34, .82);
  backdrop-filter: blur(18px);
}
.footer-responsible {
  padding-bottom: 18px;
  margin-bottom: 16px;
  border-bottom: 1px dashed rgba(192, 132, 252, .28);
}
.footer-responsible h2 {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: "Playfair Display", serif;
  letter-spacing: .6px;
}
.footer-responsible p { margin: 0 0 10px; color: rgba(223, 214, 255, .76); }
.resources { display: inline-flex; gap: 14px; }
.resources a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.resources a:hover { text-decoration: underline; }

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(16, 2, 34, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
}
.age-card {
  width: min(460px, 96%);
  background: rgba(22, 14, 48, .94);
  border: 1px solid rgba(192, 132, 252, .32);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 30px 66px rgba(12, 4, 32, .7);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.age-card::before {
  content: "";
  position: absolute;
  inset: -80px auto auto -70px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(236, 191, 65, .22), transparent 70%);
  filter: blur(24px);
}
.age-card h2 { margin: 0 0 18px; color: var(--accent); font-family: "Playfair Display", serif; }
.age-card p { margin: 0; color: rgba(223, 214, 255, .78); }
.age-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 18px;
}

@media (max-width: 1020px) { .feature:nth-child(2n) { transform: translateY(12px); } }
@media (max-width: 680px) {
  .features { grid-template-columns: 1fr; }
  .feature { transform: none !important; }
  .nav { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
  .site-header { position: static; }
}
@media (max-width: 540px) {
  .hero h1 { font-size: 38px; }
  .gc-controls { flex-direction: column; align-items: stretch; }
  .info-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "difference"
      "terms"
      "privacy"
      "legal";
  }
}


