:root {
  --bg: #140b1c;
  --bg-glow: radial-gradient(1100px 760px at 10% -15%, rgba(255, 106, 0, .35), transparent), radial-gradient(900px 720px at 85% -5%, rgba(255, 193, 7, .25), transparent);
  --card: rgba(25, 13, 33, .92);
  --text: #fffdf8;
  --muted: rgba(255, 235, 219, .76);
  --primary: #ff7b54;
  --primary-dark: #f86138;
  --secondary: #ffd166;
  --accent: #fca5a5;
  --shadow: 0 24px 50px rgba(20, 11, 28, .66);
}

@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;600;700&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 "Josefin Sans", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  position: relative;
  overflow-x: hidden;
}

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

.container { width: min(1080px, 92%); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(20, 11, 28, .82);
  border-bottom: 1px solid rgba(255, 193, 7, .22);
  box-shadow: 0 16px 32px rgba(20, 11, 28, .5);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.brand {
  font-weight: 700;
  letter-spacing: 1.2px;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--secondary);
}
.nav a {
  color: rgba(255, 253, 248, .7);
  text-decoration: none;
  margin-left: 20px;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav a:hover { color: #fff; border-color: rgba(255, 123, 84, .6); }

.hero {
  padding: 96px 0 52px;
  text-align: center;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 12% 22% 35% 22%;
  background: radial-gradient(circle, rgba(255, 123, 84, .2), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}
.hero h1 {
  font-size: clamp(44px, 6.5vw, 64px);
  margin: 0 0 16px;
  color: #ffe0b2;
  letter-spacing: .4px;
}
.hero p {
  margin: 0 0 26px;
  color: rgba(255, 235, 219, .78);
  max-width: 560px;
  margin-inline: auto;
}
.hero-cta {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  transition: transform .12s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
  box-shadow: 0 18px 40px rgba(20, 11, 28, .35);
}
.button:active { transform: translateY(1px); }
.button.primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #3d0c02;
}
.button.primary:hover { box-shadow: 0 24px 48px rgba(255, 123, 84, .45); }
.button.ghost {
  background: transparent;
  border-color: rgba(255, 123, 84, .4);
  color: var(--text);
}
.button.ghost:hover { border-color: rgba(255, 193, 7, .6); }

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  padding: 52px 0 40px;
  justify-content: center;
  grid-auto-rows: 1fr;
}
.feature {
  background: linear-gradient(160deg, rgba(25, 13, 33, .95), rgba(41, 16, 36, .85));
  border: 1px solid rgba(255, 193, 7, .3);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.feature:nth-child(2n) { transform: translateY(16px); }
.feature::before {
  content: "";
  position: absolute;
  inset: -48% -30% auto auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 123, 84, .22), transparent 70%);
}
.feature h3 {
  margin: 0;
  color: var(--secondary);
  letter-spacing: .5px;
  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: 10% 15% 45% 15%;
  background: radial-gradient(circle, rgba(255, 193, 7, .18), transparent 75%);
  filter: blur(45px);
  z-index: -1;
}
.highlight h2 {
  font-size: clamp(30px, 4.5vw, 46px);
  margin-bottom: 18px;
  color: var(--secondary);
}
.highlight p {
  margin: 0 0 30px;
  color: rgba(255, 235, 219, .75);
}

.game-console {
  background: rgba(28, 13, 35, .94);
  border: 1px solid rgba(255, 193, 7, .26);
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 28px 58px rgba(20, 11, 28, .68);
  margin: 30px 0 36px;
  position: relative;
  overflow: hidden;
}
.game-console::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  inset: auto -60px -70px auto;
  background: radial-gradient(circle, rgba(255, 193, 7, .24), transparent 70%);
  filter: blur(24px);
}
.gc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 18px;
  border-bottom: 1px solid rgba(255, 193, 7, .26);
}
.gc-title { font-weight: 600; letter-spacing: .5px; color: var(--secondary); }
.gc-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 235, 219, .8);
  font-weight: 600;
}
.gc-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--secondary);
  box-shadow: 0 0 0 6px rgba(255, 209, 102, .25);
}
.gc-viewport {
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #08030a;
  border: 1px solid rgba(255, 193, 7, .26);
}
.gc-viewport iframe { width: 100%; height: 100%; border: 0; display: block; }
.gc-controls {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 16px;
}

.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(28, 13, 35, .94);
  border: 1px solid rgba(255, 193, 7, .26);
  border-radius: 26px;
  padding: 26px;
  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(255, 123, 84, .22), transparent 70%);
  filter: blur(28px);
}
.info-card h2, #difference h2, #terms h2, #privacy h2, #legal h2 {
  margin: 0 0 18px;
  color: var(--secondary);
  font-size: 24px;
  letter-spacing: .4px;
  position: relative;
}
.info-card h2::after, #difference h2::after, #terms h2::after, #privacy h2::after, #legal h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), transparent);
  margin-top: 12px;
  border-radius: 3px;
}
.info-card h3, #difference h3 {
  margin: 20px 0 10px;
  color: var(--primary);
  letter-spacing: .4px;
}
.info-card p, #difference p, #terms p, #privacy p, #legal p { margin: 0; color: var(--muted); }

.site-footer {
  border-top: 1px solid rgba(255, 123, 84, .28);
  padding: 30px 0 42px;
  color: rgba(255, 235, 219, .78);
  text-align: center;
  background: rgba(20, 11, 28, .82);
  backdrop-filter: blur(14px);
}
.footer-responsible {
  padding-bottom: 18px;
  margin-bottom: 16px;
  border-bottom: 1px dashed rgba(255, 193, 7, .28);
}
.footer-responsible h2 { margin: 0 0 12px; color: var(--secondary); }
.footer-responsible p { margin: 0 0 10px; color: rgba(255, 235, 219, .78); }
.resources { display: inline-flex; gap: 14px; }
.resources a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.resources a:hover { text-decoration: underline; }

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(20, 11, 28, .88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-card {
  width: min(460px, 96%);
  background: rgba(28, 13, 35, .94);
  border: 1px solid rgba(255, 193, 7, .28);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 28px 60px rgba(20, 11, 28, .7);
  text-align: center;
}
.age-card h2 { margin: 0 0 16px; color: var(--secondary); }
.age-card p { margin: 0; color: rgba(255, 235, 219, .8); }
.age-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
}

@media (max-width: 980px) { .feature:nth-child(2n) { transform: translateY(10px); } }
@media (max-width: 640px) {
  .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: 36px; }
  .gc-controls { flex-direction: column; align-items: stretch; }
  .info-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "difference"
      "terms"
      "privacy"
      "legal";
  }
}


