* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #ff6600;
  --blue: #0099ff;
  --red: #ff3366;
  --dark: #111111;
  --charcoal: #1a1a1a;
  --gray: #333333;
  --light-gray: #999999;
  --white: #ffffff;
  --off-white: #f5f5f5;
}

body {
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(to bottom right, var(--dark), var(--charcoal));
  color: var(--off-white);
  line-height: 1.6;
  min-height: 100vh;
  font-weight: 400;
}

.age-check-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(10px);
}

.age-check-overlay.hidden {
  display: none;
}

.age-check-box {
  background: linear-gradient(135deg, var(--gray), var(--charcoal));
  border: 4px solid var(--orange);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  max-width: 550px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 50px rgba(255, 102, 0, 0.5);
}

.check-icon {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  animation: zap 1s ease-in-out infinite;
}

@keyframes zap {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.age-check-box h2 {
  color: var(--orange);
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.age-check-box p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.check-info {
  font-size: 1rem;
  color: var(--light-gray);
}

.check-options {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.option-btn {
  padding: 1rem 2rem;
  border: 3px solid;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.option-btn.confirm {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.option-btn.confirm:hover {
  background: #ff8833;
  border-color: #ff8833;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.5);
}

.option-btn.deny {
  background: transparent;
  border-color: var(--red);
  color: var(--red);
}

.option-btn.deny:hover {
  background: rgba(255, 51, 102, 0.1);
}

.top-bar {
  background: rgba(26, 26, 26, 0.95);
  border-bottom: 4px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.contain {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contain.limited {
  max-width: 1000px;
}

.top-bar .contain {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-text {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.burger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.burger-menu span {
  width: 32px;
  height: 4px;
  background: var(--orange);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 3px;
}

.top-nav {
  display: flex;
  gap: 2.5rem;
}

.top-nav a {
  color: var(--off-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

.top-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.top-nav a:hover {
  color: var(--orange);
}

.top-nav a:hover::after {
  width: 100%;
}

.main-area {
  padding: 2rem 0;
}

.splash-zone {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.2), rgba(0, 153, 255, 0.2));
  border: 4px solid var(--orange);
  border-radius: 25px;
  margin: 2rem 0;
}

.splash-content {
  text-align: center;
}

.splash-content h1 {
  font-size: 4rem;
  color: var(--orange);
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
}

.splash-text {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.splash-tags {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tag {
  background: rgba(17, 17, 17, 0.8);
  border: 3px solid var(--blue);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.about-zone {
  padding: 4rem 0;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text h2 {
  font-size: 3rem;
  color: var(--orange);
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mini-card {
  background: rgba(255, 102, 0, 0.1);
  border: 3px solid var(--orange);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
}

.mini-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1rem;
}

.mini-card h3 {
  color: var(--orange);
  font-size: 1.7rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.warnings-zone {
  padding: 4rem 0;
}

.zone-heading {
  text-align: center;
  font-size: 3rem;
  color: var(--orange);
  margin-bottom: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.zone-subhead {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: var(--light-gray);
}

.warnings-flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.warning-box {
  border: 3px solid;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
}

.warning-box.orange {
  background: rgba(255, 102, 0, 0.1);
  border-color: var(--orange);
}

.warning-box.blue {
  background: rgba(0, 153, 255, 0.1);
  border-color: var(--blue);
}

.warning-box.red {
  background: rgba(255, 51, 102, 0.1);
  border-color: var(--red);
}

.warning-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.warning-emoji {
  font-size: 3rem;
}

.warning-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.warning-box.orange h3 {
  color: var(--orange);
}

.warning-box.blue h3 {
  color: var(--blue);
}

.warning-box.red h3 {
  color: var(--red);
}

.game-zone {
  padding: 4rem 0;
}

.game-box {
  background: rgba(17, 17, 17, 0.8);
  padding: 2rem;
  border: 4px solid var(--orange);
  border-radius: 25px;
  margin: 2rem 0;
}

.game-window {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 15px;
  background: #000;
}

.game-info {
  text-align: center;
  color: var(--blue);
  font-size: 1.2rem;
  margin-top: 1.5rem;
  font-weight: 600;
}

.perks-zone {
  padding: 4rem 0;
}

.perks-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.perk-block {
  background: rgba(255, 102, 0, 0.1);
  border: 3px solid var(--orange);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.perk-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4);
}

.perk-badge {
  font-size: 3.5rem;
  color: var(--orange);
  font-weight: 800;
  margin-bottom: 1rem;
}

.perk-block h3 {
  color: var(--orange);
  font-size: 1.7rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.balance-zone {
  padding: 4rem 0;
}

.balance-container {
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.2), rgba(0, 153, 255, 0.2));
  border: 4px solid var(--orange);
  border-radius: 25px;
  padding: 3rem;
  text-align: center;
}

.balance-container h2 {
  font-size: 3rem;
  color: var(--orange);
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.balance-container > p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.balance-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.balance-point {
  background: rgba(17, 17, 17, 0.8);
  border: 3px solid var(--blue);
  border-radius: 20px;
  padding: 1.5rem;
}

.point-symbol {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.page-top {
  text-align: center;
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.2), rgba(0, 153, 255, 0.2));
  border: 4px solid var(--orange);
  border-radius: 25px;
  margin: 2rem 0;
}

.page-top h1 {
  font-size: 3.5rem;
  color: var(--orange);
  margin-bottom: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.page-date {
  color: var(--light-gray);
  font-size: 1.1rem;
  font-weight: 500;
}

.play-area {
  padding: 2rem 0 4rem;
}

.play-container {
  background: rgba(17, 17, 17, 0.8);
  padding: 2rem;
  border: 4px solid var(--orange);
  border-radius: 25px;
}

.game-window-large {
  width: 100%;
  height: 650px;
  border: none;
  border-radius: 15px;
  background: #000;
}

.instructions-area {
  padding: 2rem 0 4rem;
}

.instructions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.instruction-tile {
  background: rgba(255, 102, 0, 0.1);
  border: 3px solid var(--orange);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
}

.tile-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1rem;
}

.instruction-tile h3 {
  color: var(--orange);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.notes-area {
  padding: 2rem 0;
}

.notes-panel {
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.2), rgba(0, 153, 255, 0.2));
  border: 4px solid var(--orange);
  border-radius: 25px;
  padding: 2.5rem;
}

.notes-panel h3 {
  color: var(--orange);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
}

.notes-panel ul {
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
}

.notes-panel li {
  padding: 1rem 0 1rem 2.5rem;
  position: relative;
  font-size: 1.15rem;
  border-bottom: 2px solid rgba(255, 102, 0, 0.3);
  font-weight: 500;
}

.notes-panel li:last-child {
  border-bottom: none;
}

.notes-panel li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 1.3rem;
  font-weight: bold;
}

.legal-area {
  padding: 2rem 0 4rem;
}

.intro-block {
  background: rgba(255, 102, 0, 0.1);
  border: 3px solid var(--orange);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.intro-block p {
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 500;
}

.legal-chunk {
  background: rgba(17, 17, 17, 0.6);
  border: 3px solid var(--orange);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.legal-chunk.alert {
  background: rgba(255, 102, 0, 0.15);
  border: 4px solid var(--orange);
}

.legal-chunk h2 {
  color: var(--orange);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-chunk h3 {
  color: var(--blue);
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
  font-weight: 700;
}

.legal-chunk p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.legal-chunk ul {
  margin: 1rem 0 1rem 2rem;
  list-style-type: square;
}

.legal-chunk li {
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

.legal-chunk strong {
  color: var(--orange);
  font-weight: 700;
}

.summary-card {
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.3), rgba(0, 153, 255, 0.3));
  border: 4px solid var(--orange);
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 2rem;
}

.summary-card h3 {
  color: var(--orange);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.summary-card p {
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 500;
}

.summary-card ul {
  list-style: none;
  margin: 1.5rem 0;
}

.summary-card li {
  padding: 0.8rem 0 0.8rem 2rem;
  position: relative;
  font-size: 1.1rem;
}

.summary-card li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  color: var(--orange);
}

.bottom-bar {
  background: rgba(26, 26, 26, 0.95);
  border-top: 4px solid var(--orange);
  margin-top: 4rem;
}

.footer-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}

.footer-block h4 {
  color: var(--orange);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-block p {
  line-height: 1.7;
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-block ul {
  list-style: none;
}

.footer-block ul li {
  margin-bottom: 0.7rem;
}

.footer-block a {
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.footer-block a:hover {
  color: var(--orange);
}

.footer-line {
  background: var(--dark);
  text-align: center;
  padding: 1.5rem;
  border-top: 3px solid var(--orange);
}

@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  .top-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: rgba(26, 26, 26, 0.98);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    transition: right 0.3s ease;
    border-left: 4px solid var(--orange);
  }

  .top-nav.active {
    right: 0;
  }

  .top-nav a {
    padding: 1rem 0;
    border-bottom: 2px solid rgba(255, 102, 0, 0.3);
  }

  .splash-content h1 {
    font-size: 2.5rem;
  }

  .splash-text {
    font-size: 1.2rem;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .game-window, .game-window-large {
    height: 450px;
  }

  .legal-chunk {
    padding: 1.8rem;
  }
}
