@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --navy: #0a1628;
  --deep-blue: #122040;
  --steel: #1e3a5f;
  --silver: #c0c8d4;
  --ice-blue: #7eb4e2;
  --white: #eef2f7;
  --accent: #4d9de0;
  --glow: rgba(77, 157, 224, 0.2);
  --surface: rgba(18, 32, 64, 0.85);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--navy);
  color: var(--silver);
  line-height: 1.75;
}

/* ===== NAV ===== */
.site-nav {
  background: var(--deep-blue);
  border-bottom: 1px solid var(--steel);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 60px;
}

.brand {
  font-size: 1.5rem;
  font-weight: 900;
  text-decoration: none;
  color: var(--ice-blue);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--silver);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--accent); }

.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--ice-blue);
  border-radius: 4px;
  padding: 6px 10px;
  cursor: pointer;
  color: var(--ice-blue);
  font-size: 1.2rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
}

/* ===== HERO SPLIT ===== */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}

.hero-left {
  background: linear-gradient(180deg, var(--deep-blue), var(--navy));
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-left h1 {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}

.hero-left p {
  font-size: 1.05rem;
  color: var(--silver);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-right {
  background: var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-right iframe {
  width: 100%;
  max-width: 580px;
  height: 400px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 30px var(--glow);
}

.btn-accent {
  display: inline-block;
  background: var(--accent);
  color: var(--navy);
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s;
}

.btn-accent:hover { background: var(--ice-blue); }

.tags-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.tag {
  background: var(--surface);
  border: 1px solid var(--steel);
  padding: 0.35rem 1rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ice-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== ALERT BAR ===== */
.alert-bar {
  background: var(--steel);
  text-align: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--accent);
}

.alert-bar p {
  color: var(--ice-blue);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===== CONTENT AREA ===== */
.content-area {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.content-area h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.content-area .lead {
  text-align: center;
  color: var(--silver);
  margin-bottom: 3rem;
}

/* ===== THREE COLUMNS ===== */
.triple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tri-card {
  background: var(--surface);
  border: 1px solid var(--steel);
  border-radius: 6px;
  padding: 2rem;
  transition: border-color 0.3s;
}

.tri-card:hover { border-color: var(--accent); }

.tri-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  display: block;
}

.tri-card h3 {
  color: var(--ice-blue);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tri-card p {
  font-size: 0.9rem;
  color: var(--silver);
}

/* ===== SPLIT INFO ===== */
.split-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.info-block {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  padding: 2rem;
  border-radius: 0 6px 6px 0;
}

.info-block h3 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.info-block p {
  font-size: 0.93rem;
}

/* ===== GAME FULL WIDTH ===== */
.game-full {
  max-width: 820px;
  margin: 0 auto 3rem;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--accent);
  box-shadow: 0 0 40px var(--glow);
}

.game-full iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

/* ===== ARTICLE PAGE ===== */
.article {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.article h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ice-blue);
  margin: 2rem 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article p { margin-bottom: 1rem; }

.article ul {
  list-style: square;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.article ul li { margin-bottom: 0.4rem; }

/* ===== PLAY HEADER ===== */
.play-top {
  text-align: center;
  padding: 3rem 2rem 1rem;
}

.play-top h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.play-desc {
  text-align: center;
  max-width: 600px;
  margin: 0.8rem auto 2rem;
  color: var(--silver);
  font-size: 0.93rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--deep-blue);
  border-top: 1px solid var(--steel);
  padding: 2.5rem 2rem;
  text-align: center;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.foot-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.foot-links a {
  color: var(--silver);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.foot-links a:hover { color: var(--accent); }

.foot-note {
  color: var(--steel);
  font-size: 0.8rem;
  margin-top: 1rem;
}

/* ===== AGE MODAL ===== */
.age-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-dialog {
  background: var(--deep-blue);
  border: 2px solid var(--accent);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
  max-width: 430px;
  width: 90%;
}

.age-dialog h2 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.age-dialog p {
  color: var(--silver);
  margin-bottom: 1.5rem;
  font-size: 0.93rem;
}

.age-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-confirm {
  background: var(--accent);
  color: var(--navy);
  border: none;
  padding: 0.7rem 1.8rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
}

.btn-deny {
  background: transparent;
  border: 2px solid var(--steel);
  color: var(--silver);
  padding: 0.7rem 1.8rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
}

.reject-text {
  display: none;
  color: #e74c3c;
  font-weight: 700;
  margin-top: 1rem;
  font-size: 0.88rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-right { min-height: 350px; }
  .triple-grid { grid-template-columns: 1fr 1fr; }
  .split-info { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--deep-blue);
    flex-direction: column;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--steel);
  }
  .nav-links.show { display: flex; }
  .nav-links a { padding: 0.6rem 0; display: block; }
  .hero-left { padding: 3rem 2rem; }
  .hero-left h1 { font-size: 2rem; }
  .triple-grid { grid-template-columns: 1fr; }
  .hero-right iframe { height: 320px; }
  .game-full iframe { height: 350px; }
}

@media (max-width: 480px) {
  .hero-left h1 { font-size: 1.6rem; }
  .brand { font-size: 1.2rem; letter-spacing: 1px; }
  .hero-right iframe { height: 260px; }
  .game-full iframe { height: 280px; }
}
