:root {
  --bg: #f5f5f0;
  --card: #ffffff;
  --text: #1a1a1a;
  --muted: #666666;
  --primary: #c41e3a;
  --accent: #1a1a1a;
  --shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: 
    repeating-linear-gradient(90deg, transparent, transparent 1px, rgba(0, 0, 0, .02) 1px, rgba(0, 0, 0, .02) 2px);
  z-index: -1;
  pointer-events: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--card);
  border-bottom: 3px solid var(--primary);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}
.header-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.brand {
  font-weight: 700;
  letter-spacing: 8px;
  font-size: 32px;
  text-transform: uppercase;
  color: var(--primary);
  font-family: "Libre Baskerville", serif;
  border-bottom: 4px solid var(--primary);
  padding-bottom: 8px;
  display: inline-block;
}
.nav {
  display: flex;
  gap: 0;
  border-left: 2px solid rgba(0, 0, 0, .1);
  padding-left: 24px;
}
.nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 0;
  padding: 8px 20px;
  border-right: 1px solid rgba(0, 0, 0, .1);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all .2s ease;
  position: relative;
}
.nav a:last-child {
  border-right: none;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width .3s ease;
}
.nav a:hover {
  color: var(--primary);
}
.nav a:hover::after {
  width: 100%;
}

.hero {
  padding: 80px 0 100px;
  position: relative;
  border-top: 4px solid var(--primary);
  border-bottom: 4px solid var(--primary);
  margin-bottom: 60px;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  background: var(--primary);
  opacity: .05;
  z-index: -1;
}
.hero h1 {
  font-size: clamp(72px, 10vw, 140px);
  line-height: .9;
  margin: 0 0 24px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -3px;
  font-family: "Libre Baskerville", serif;
  max-width: 80%;
  position: relative;
  padding-left: 40px;
}
.hero h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--primary);
}
.hero p {
  margin: 0 0 40px;
  color: var(--muted);
  max-width: 60%;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 300;
  font-style: italic;
  padding-left: 40px;
  border-left: 2px solid rgba(0, 0, 0, .1);
}
.hero-cta { 
  display: flex; 
  gap: 16px; 
  flex-wrap: wrap;
  padding-left: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 0;
  text-decoration: none;
  border: 2px solid var(--primary);
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all .2s ease;
  background: transparent;
  color: var(--primary);
  font-family: "Source Sans Pro", sans-serif;
}
.button:active { transform: translateY(1px); }
.button.primary {
  background: var(--primary);
  color: var(--card);
  border-color: var(--primary);
}
.button.primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--card);
}
.button.ghost {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}
.button.ghost:hover {
  background: var(--accent);
  color: var(--card);
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  border-top: 2px solid rgba(0, 0, 0, .1);
  border-bottom: 2px solid rgba(0, 0, 0, .1);
  margin: 60px auto;
}
.feature {
  position: relative;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(0, 0, 0, .1);
  padding: 40px 32px;
  box-shadow: none;
  display: grid;
  gap: 16px;
  transition: all .2s ease;
}
.feature:last-child {
  border-right: none;
}
.feature:hover {
  background: rgba(196, 30, 58, .05);
}
.feature::before {
  content: "01";
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 700;
  color: rgba(196, 30, 58, .1);
  font-family: "Libre Baskerville", serif;
  line-height: 1;
}
.feature:nth-child(2)::before { content: "02"; }
.feature:nth-child(3)::before { content: "03"; }
.feature:nth-child(4)::before { content: "04"; }
.feature h3 { 
  margin: 0; 
  color: var(--text); 
  font-size: 20px; 
  font-weight: 700;
  font-family: "Libre Baskerville", serif;
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 8px;
  display: inline-block;
  width: fit-content;
}
.feature p { 
  margin: 0; 
  color: var(--muted); 
  font-size: 14px;
  line-height: 1.8;
  font-weight: 400;
}

.highlight {
  padding: 80px 0;
  position: relative;
  border-top: 4px solid var(--primary);
  border-bottom: 4px solid var(--primary);
  margin: 60px auto;
  background: var(--card);
  padding: 60px 40px;
}
.highlight::before {
  content: "FEATURED";
  position: absolute;
  top: -12px;
  left: 40px;
  background: var(--card);
  padding: 0 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.highlight h2 {
  font-size: clamp(56px, 8vw, 96px);
  margin-bottom: 24px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -2px;
  font-family: "Libre Baskerville", serif;
  max-width: 70%;
  position: relative;
  padding-left: 40px;
}
.highlight h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--primary);
}
.highlight p { 
  margin: 0 0 40px; 
  color: var(--muted); 
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  max-width: 70%;
  padding-left: 40px;
  font-style: italic;
}

.game-console {
  background: var(--card);
  border: 2px solid rgba(0, 0, 0, .1);
  padding: 40px;
  box-shadow: var(--shadow);
  margin: 40px 0;
  position: relative;
}
.game-console::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--primary);
}
.gc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 20px;
  border-bottom: 2px solid rgba(0, 0, 0, .1);
  margin-bottom: 28px;
}
.gc-title { 
  font-weight: 700; 
  color: var(--text); 
  font-size: 24px;
  font-family: "Libre Baskerville", serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-left: 20px;
}
.gc-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: var(--primary);
}
.gc-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-style: italic;
}
.gc-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 0;
  transform: rotate(45deg);
}
.gc-viewport {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  background: #000;
  border: 2px solid rgba(0, 0, 0, .1);
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.gc-viewport iframe { width: 100%; height: 100%; border: 0; display: block; }
.gc-controls {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, .1);
}
.gc-controls .button {
  padding: 12px 28px;
  font-size: 12px;
}

.info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin: 80px 0;
  align-items: start;
}
#difference {
  grid-row: 1 / 4;
  display: grid;
  gap: 32px;
  border-right: 2px solid rgba(0, 0, 0, .1);
  padding-right: 40px;
}
#terms, #privacy, #legal {
  display: grid;
  gap: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
#legal {
  border-bottom: none;
  margin-bottom: 0;
}
#difference, #terms, #privacy, #legal, .info-card {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  position: relative;
}
#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 20px;
  font-size: 36px;
  color: var(--text);
  font-weight: 700;
  font-family: "Libre Baskerville", serif;
  text-transform: none;
  letter-spacing: 0;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
}
.info-card h2::after, #difference h2::after, #terms h2::after, #privacy h2::after, #legal h2::after {
  display: none;
}
.info-card h3, #difference h3 {
  margin: 28px 0 12px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Source Sans Pro", sans-serif;
}
.info-card p, #difference p, #terms p, #privacy p, #legal p { 
  margin: 0; 
  color: var(--muted); 
  font-size: 15px;
  line-height: 1.9;
  font-weight: 400;
}

.site-footer {
  border-top: 4px solid var(--primary);
  padding: 50px 0;
  color: var(--muted);
  text-align: center;
  background: var(--card);
  margin-top: 80px;
}
.footer-responsible {
  padding-bottom: 28px;
  margin-bottom: 24px;
  border-bottom: 2px solid rgba(0, 0, 0, .1);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.footer-responsible h2 {
  margin: 0 0 16px;
  font-size: 32px;
  color: var(--text);
  font-weight: 700;
  font-family: "Libre Baskerville", serif;
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 12px;
  display: inline-block;
}
.footer-responsible p { 
  margin: 0 0 12px; 
  color: var(--muted); 
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  font-style: italic;
}
.resources { 
  display: inline-flex; 
  gap: 32px; 
  flex-wrap: wrap;
  justify-content: center;
}
.resources a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 4px;
}
.resources a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width .3s ease;
}
.resources a:hover::after {
  width: 100%;
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(245, 245, 240, .98);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-card {
  width: min(500px, 96%);
  background: var(--card);
  border: 3px solid var(--primary);
  padding: 48px 40px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}
.age-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--primary);
}
.age-card h2 { 
  margin: 0 0 24px; 
  color: var(--text); 
  font-size: 36px;
  font-weight: 700;
  font-family: "Libre Baskerville", serif;
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 12px;
  display: inline-block;
}
.age-card p { 
  margin: 0; 
  color: var(--muted); 
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  font-style: italic;
}
.age-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

@media (max-width: 1020px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .feature { border-right: none; border-bottom: 1px solid rgba(0, 0, 0, .1); }
  .feature:nth-child(2) { border-bottom: 1px solid rgba(0, 0, 0, .1); }
  .feature:nth-child(3) { border-bottom: 1px solid rgba(0, 0, 0, .1); }
  .info-grid { grid-template-columns: 1fr; }
  #difference { 
    grid-row: 1; 
    border-right: none;
    border-bottom: 2px solid rgba(0, 0, 0, .1);
    padding-right: 0;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 720px) {
  .features { grid-template-columns: 1fr; }
  .nav { flex-direction: column; border-left: none; border-top: 2px solid rgba(0, 0, 0, .1); padding-left: 0; padding-top: 16px; }
  .nav a { border-right: none; border-bottom: 1px solid rgba(0, 0, 0, .1); padding: 12px 0; margin-left: 0; }
  .nav a:last-child { border-bottom: none; }
  .hero h1, .hero p, .hero-cta { padding-left: 0; }
  .hero h1::before, .highlight h2::before { display: none; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 48px; max-width: 100%; }
  .hero-cta { flex-direction: column; }
  .gc-controls { flex-direction: column; }
  .button { width: 100%; }
}


