@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Karla:wght@300;400;600;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --charcoal: #1A1A1A;
  --dark-gray: #2A2A2A;
  --red: #E53935;
  --red-light: #FF5252;
  --red-dark: #C62828;
  --off-white: #F5F5F5;
  --gray-text: #999;
}

body {
  font-family: 'Karla', sans-serif;
  background: var(--charcoal);
  color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 2px; }

a { color: var(--red); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--red-light); }

/* NAV */
.ind-nav {
  background: #111;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--red);
}
.ind-nav-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 60px;
}

.ind-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--red);
  letter-spacing: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ind-logo svg { width: 30px; height: 30px; }

.ind-links { display: flex; gap: 1.5rem; list-style: none; }
.ind-links a {
  color: var(--gray-text);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 2px;
  transition: 0.3s;
}
.ind-links a:hover, .ind-links a.hot { color: var(--red); }

.ind-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.ind-burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--red);
  margin: 5px 0;
}

/* HERO */
.bold-hero {
  background: linear-gradient(180deg, #111 0%, var(--charcoal) 100%);
  padding: 5rem 2rem;
  position: relative;
}
.bold-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hero-inner h1 {
  font-size: 4.5rem;
  line-height: 1;
  color: var(--off-white);
  letter-spacing: 6px;
}
.hero-inner h1 .red { color: var(--red); }
.hero-inner p {
  font-size: 1.1rem;
  color: var(--gray-text);
  margin-top: 1.5rem;
  max-width: 600px;
}

/* ALERT BAR */
.alert-bar {
  background: var(--red);
  color: white;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 0.9rem;
}

/* GAME */
.game-block {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}
.game-frame {
  background: #000;
  border: 3px solid var(--red);
  overflow: hidden;
}
.game-frame iframe { width: 100%; height: 600px; border: none; display: block; }

/* INDUSTRIAL GRID */
.ind-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}
.ind-cell {
  padding: 2.5rem;
  border: 1px solid #333;
}
.ind-cell:nth-child(odd) { background: var(--dark-gray); }
.ind-cell:nth-child(even) { background: #222; }
.ind-cell h3 { color: var(--red); margin-bottom: 0.6rem; font-size: 1.4rem; }
.ind-cell p { color: var(--gray-text); font-size: 0.95rem; }

/* COUNTER */
.count-bar {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  background: #111;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  padding: 2.5rem 2rem;
  margin: 2rem 0;
}
.count-box { text-align: center; }
.count-box .num { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--red); letter-spacing: 3px; }
.count-box .lbl { color: var(--gray-text); font-size: 0.85rem; }

/* TEXT PAGES */
.ind-text {
  max-width: 880px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.ind-text h1 { color: var(--red); font-size: 3rem; text-align: center; margin-bottom: 1.5rem; letter-spacing: 4px; }
.ind-text h2 { color: var(--red-light); font-size: 1.5rem; margin: 2rem 0 0.7rem; letter-spacing: 2px; }
.ind-text p { color: var(--gray-text); margin-bottom: 1rem; }
.ind-text ul { margin: 1rem 0 1rem 1.5rem; color: var(--gray-text); }
.ind-text ul li { margin-bottom: 0.4rem; }

/* PLAY */
.play-top { text-align: center; padding: 3rem 2rem 1rem; }
.play-top h1 { color: var(--red); font-size: 3rem; letter-spacing: 4px; }
.play-top p { color: var(--gray-text); max-width: 550px; margin: 0.5rem auto 0; }
.play-box {
  max-width: 700px;
  margin: 1.5rem auto;
  background: var(--dark-gray);
  border-left: 4px solid var(--red);
  padding: 1rem 1.5rem;
  color: var(--gray-text);
  font-size: 0.9rem;
}

/* FOOTER */
.ind-footer {
  background: #0A0A0A;
  border-top: 3px solid var(--red);
  padding: 2rem;
  text-align: center;
}
.rf-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 1rem; }
.rf-links a { color: var(--red); font-size: 0.9rem; font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; }
.ind-copy { color: rgba(255,255,255,0.25); font-size: 0.78rem; }

/* AGE GATE */
.age-shield {
  position: fixed;
  inset: 0;
  background: rgba(17,17,17,0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shield-box {
  background: var(--dark-gray);
  border: 3px solid var(--red);
  padding: 2.5rem;
  text-align: center;
  max-width: 430px;
  width: 90%;
}
.shield-box h2 { color: var(--red); margin-bottom: 0.8rem; font-size: 2rem; letter-spacing: 3px; }
.shield-box p { color: var(--gray-text); margin-bottom: 1.5rem; }
.shield-btns { display: flex; gap: 1rem; justify-content: center; }
.s-yes, .s-no {
  padding: 0.7rem 2rem;
  border: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s;
}
.s-yes { background: var(--red); color: white; }
.s-yes:hover { background: var(--red-dark); }
.s-no { background: transparent; border: 2px solid var(--red); color: var(--red); }
.s-no:hover { background: rgba(229,57,53,0.1); }
.shield-fail { display: none; color: var(--red-light); margin-top: 1rem; font-weight: 700; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .ind-burger { display: block; }
  .ind-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0; right: 0;
    background: #111;
    flex-direction: column;
    padding: 1rem 2rem;
    border-bottom: 3px solid var(--red);
  }
  .ind-links.open { display: flex; }
  .ind-nav-inner { position: relative; }
  .hero-inner h1 { font-size: 2.5rem; }
  .ind-grid { grid-template-columns: 1fr; }
  .game-frame iframe { height: 380px; }
  .count-bar { flex-direction: column; align-items: center; }
}
