:root {
  --bg: #0a0a0a;
  --bg-overlay: none;
  --card: #111111;
  --card-edge: rgba(239, 68, 68, .2);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, .5);
  --primary: #ef4444;
  --primary-dark: #dc2626;
  --accent: #b91c1c;
  --warning: #facc15;
  --shadow: none;
}

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

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

body::before {
  display: none;
}

.container { width: min(1000px, 90%); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: none;
  background: var(--bg);
  border-bottom: 1px solid rgba(239, 68, 68, .15);
  box-shadow: none;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.brand {
  font-weight: 400;
  letter-spacing: 0;
  font-size: 18px;
  text-transform: none;
  color: var(--text);
  text-shadow: none;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 32px;
  padding: 0;
  border: none;
  transition: color .2s ease;
  font-weight: 300;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav a:hover {
  color: var(--primary);
}

.hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  max-width: 600px;
}
.hero::after {
  display: none;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.3;
  margin: 0 0 20px;
  text-shadow: none;
  color: var(--text);
  font-weight: 300;
  letter-spacing: -1px;
}
.hero p {
  margin: 0 0 32px;
  color: var(--muted);
  max-width: 100%;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
}
.hero-cta { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: flex-start; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 0;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 13px;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  box-shadow: none;
}
.button:active { transform: none; }
.button.primary {
  background: var(--primary);
  color: var(--text);
  border: 1px solid var(--primary);
}
.button.primary:hover {
  background: transparent;
  color: var(--primary);
}
.button.ghost {
  background: transparent;
  border: 1px solid var(--muted);
  color: var(--muted);
}
.button.ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 60px 0;
  justify-content: center;
  border-top: 1px solid rgba(239, 68, 68, .1);
  border-bottom: 1px solid rgba(239, 68, 68, .1);
}
.feature {
  position: relative;
  background: transparent;
  border: none;
  border-left: 1px solid rgba(239, 68, 68, .1);
  border-radius: 0;
  padding: 32px 24px;
  box-shadow: none;
  overflow: visible;
  display: grid;
  gap: 12px;
}
.feature:first-child {
  border-left: none;
}
.feature::after {
  display: none;
}
.feature h3 { margin: 0; color: var(--text); text-transform: none; letter-spacing: 0; font-size: 14px; position: relative; font-weight: 400; }
.feature p { margin: 0; color: var(--muted); position: relative; font-weight: 300; font-size: 13px; line-height: 1.6; }

.highlight {
  text-align: left;
  padding: 60px 0 80px;
  position: relative;
}
.highlight::before {
  display: none;
}
.highlight h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
  color: var(--text);
  text-shadow: none;
  font-weight: 300;
  letter-spacing: -0.5px;
}
.highlight p { margin: 0 0 32px; color: var(--muted); font-weight: 300; font-size: 15px; line-height: 1.7; }

.game-console {
  background: var(--card);
  border: 1px solid rgba(239, 68, 68, .15);
  border-radius: 0;
  padding: 24px;
  box-shadow: none;
  margin: 32px 0 40px;
  position: relative;
  overflow: visible;
}
.game-console::after {
  display: none;
}
.gc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(239, 68, 68, .1);
  margin-bottom: 20px;
}
.gc-title { font-weight: 400; letter-spacing: 0; color: var(--text); font-size: 13px; text-transform: uppercase; }
.gc-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 300;
  font-size: 12px;
  text-transform: uppercase;
}
.gc-dot {
  width: 6px;
  height: 6px;
  border-radius: 0;
  background: var(--primary);
  box-shadow: none;
}
.gc-viewport {
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(239, 68, 68, .1);
  margin-bottom: 20px;
}
.gc-viewport iframe { width: 100%; height: 100%; border: 0; display: block; }
.gc-controls {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 16px;
}
.gc-controls .button {
  padding: 8px 20px;
  font-size: 12px;
}
.gc-controls .button.ghost {
  border-color: var(--muted);
  color: var(--muted);
}
.gc-controls .button.ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.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: 34px 0 42px;
  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: transparent;
  border: none;
  border-bottom: 1px solid rgba(239, 68, 68, .1);
  border-radius: 0;
  padding: 32px 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
  min-height: auto;
}
#difference::before, #terms::before, #privacy::before, #legal::before, .info-card::before {
  display: none;
}
.info-card h2, #difference h2, #terms h2, #privacy h2, #legal h2 {
  margin: 0 0 12px;
  font-size: 20px;
  color: var(--text);
  letter-spacing: 0;
  position: relative;
  font-weight: 300;
}
.info-card h2::after, #difference h2::after, #terms h2::after, #privacy h2::after, #legal h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--primary);
  margin-top: 8px;
  border-radius: 0;
}
.info-card h3, #difference h3 {
  margin: 16px 0 6px;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.info-card p, #difference p, #terms p, #privacy p, #legal p { margin: 0; color: var(--muted); font-weight: 300; font-size: 13px; line-height: 1.7; }

.site-footer {
  border-top: 1px solid rgba(239, 68, 68, .1);
  padding: 40px 0 50px;
  color: var(--muted);
  text-align: left;
  background: transparent;
  backdrop-filter: none;
}
.footer-responsible {
  padding-bottom: 20px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(239, 68, 68, .1);
}
.footer-responsible h2 {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 300;
}
.footer-responsible p { margin: 0 0 8px; color: var(--muted); font-weight: 300; font-size: 13px; }
.resources { display: inline-flex; gap: 24px; flex-wrap: wrap; }
.resources a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 300;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.resources a:hover { color: var(--primary); }

.age-gate {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: none;
}
.age-card {
  width: min(400px, 96%);
  background: var(--card);
  border: 1px solid rgba(239, 68, 68, .15);
  border-radius: 0;
  padding: 40px 32px;
  box-shadow: none;
  text-align: left;
  position: relative;
  overflow: visible;
}
.age-card::before {
  display: none;
}
.age-card h2 { margin: 0 0 16px; color: var(--text); letter-spacing: 0; font-weight: 300; font-size: 20px; }
.age-card p { margin: 0; color: var(--muted); font-weight: 300; font-size: 13px; line-height: 1.7; }
.age-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 24px;
}

@media (max-width: 1020px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .feature { border-left: none; border-top: 1px solid rgba(239, 68, 68, .1); }
  .feature:first-child { border-top: none; }
  .info-grid { grid-template-columns: 1fr; }
  #difference { grid-column: 1; }
}
@media (max-width: 720px) {
  .features { grid-template-columns: 1fr; }
  .nav { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
  .site-header { position: static; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 34px; }
  .hero-cta { gap: 12px; }
  .gc-controls { flex-direction: column; align-items: stretch; }
  .info-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "difference"
      "terms"
      "privacy"
      "legal";
  }
}

