* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', sans-serif;
  background: #0a0f1e;
  color: #e2e8f0;
  line-height: 1.6;
}

.age-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 30, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(8px);
}

.age-modal.hidden {
  display: none;
}

.age-modal-content {
  background: linear-gradient(145deg, #0f1729, #1a2332);
  border: 2px solid #06b6d4;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  text-align: center;
  max-width: 480px;
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3), 0 0 100px rgba(6, 182, 212, 0.1);
}

.modal-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.age-modal-content h2 {
  font-size: 2rem;
  color: #06b6d4;
  margin-bottom: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.age-modal-content p {
  margin-bottom: 1rem;
  color: #cbd5e1;
  font-size: 1.05rem;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn-accept, .btn-reject {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-accept {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #000;
}

.btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.5);
}

.btn-reject {
  background: transparent;
  color: #64748b;
  border: 2px solid #334155;
}

.btn-reject:hover {
  border-color: #475569;
  color: #94a3b8;
}

.top-strip {
  background: linear-gradient(90deg, #0c4a6e, #075985, #0c4a6e);
  padding: 0.7rem 0;
  border-bottom: 1px solid #06b6d4;
}

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.strip-icon {
  font-size: 1rem;
  color: #06b6d4;
}

.strip-text {
  color: #bae6fd;
}

.strip-divider {
  color: #475569;
}

.header {
  background: #0f172a;
  border-bottom: 2px solid #06b6d4;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.header-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-name {
  font-size: 1.6rem;
  font-weight: 900;
  color: #06b6d4;
  letter-spacing: 3px;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-burger span {
  width: 28px;
  height: 3px;
  background: #06b6d4;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.nav-burger.active span:nth-child(2) {
  opacity: 0;
}

.nav-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

.navigation {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.nav-link:hover,
.nav-link.active {
  color: #06b6d4;
  background: rgba(6, 182, 212, 0.1);
}

.content-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.intro-section {
  background: linear-gradient(135deg, #0c2340, #0f1729);
  padding: 5rem 0;
  border-bottom: 1px solid #1e3a5f;
}

.intro-content {
  text-align: center;
}

.intro-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #06b6d4;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
}

.intro-lead {
  font-size: 1.25rem;
  max-width: 750px;
  margin: 0 auto 2.5rem;
  color: #cbd5e1;
  line-height: 1.8;
}

.primary-btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(6, 182, 212, 0.5);
}

.essential-info {
  padding: 4rem 0;
  background: #0a0f1e;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.info-card {
  background: linear-gradient(145deg, #0f1729, #1a2332);
  padding: 2.5rem;
  border-radius: 12px;
  border: 2px solid #1e3a5f;
  text-align: center;
  transition: all 0.3s;
}

.info-card:hover {
  border-color: #06b6d4;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-size: 1.5rem;
  color: #06b6d4;
  margin-bottom: 1rem;
  font-weight: 700;
}

.info-card p {
  color: #cbd5e1;
  line-height: 1.7;
}

.game-display {
  padding: 5rem 0;
  background: #0f172a;
}

.game-header {
  text-align: center;
  margin-bottom: 3rem;
}

.game-header h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #06b6d4;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.game-header p {
  font-size: 1.1rem;
  color: #94a3b8;
}

.game-window {
  max-width: 1200px;
  margin: 0 auto;
  background: #0a0f1e;
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid #1e3a5f;
  box-shadow: 0 0 50px rgba(6, 182, 212, 0.1);
}

.game-embed {
  width: 100%;
  height: 650px;
  border: none;
  border-radius: 10px;
  background: #000;
}

.platform-info {
  padding: 5rem 0;
  background: #0a0f1e;
}

.platform-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.info-block {
  background: linear-gradient(145deg, #0f1729, #1a2332);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
}

.info-block h3 {
  font-size: 1.4rem;
  color: #06b6d4;
  margin-bottom: 1rem;
  font-weight: 700;
}

.info-block p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.features-showcase {
  padding: 5rem 0;
  background: #0f172a;
}

.section-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: #06b6d4;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.features-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.feature-box {
  background: #0a0f1e;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #1e3a5f;
  transition: all 0.3s;
}

.feature-box:hover {
  border-color: #06b6d4;
  transform: translateY(-5px);
  background: #0f1729;
}

.feat-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.feature-box h4 {
  font-size: 1.2rem;
  color: #06b6d4;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.feature-box p {
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer {
  background: #0a0f1e;
  border-top: 2px solid #06b6d4;
  padding: 3rem 0 2rem;
}

.footer-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.footer-col h4 {
  font-size: 1.3rem;
  color: #06b6d4;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  color: #94a3b8;
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.8rem;
}

.footer-list li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-list li a:hover {
  color: #06b6d4;
  padding-left: 5px;
}

.footer-text {
  font-size: 0.95rem;
}

.footer-copy {
  color: #475569;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .nav-burger {
    display: flex;
  }

  .navigation {
    position: fixed;
    top: 75px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 75px);
    background: #0f172a;
    flex-direction: column;
    padding: 2rem;
    transition: right 0.3s;
    border-left: 2px solid #06b6d4;
  }

  .navigation.active {
    right: 0;
  }

  .nav-link {
    width: 100%;
    padding: 1rem;
  }

  .intro-content h1 {
    font-size: 2.2rem;
  }

  .intro-lead {
    font-size: 1.1rem;
  }

  .game-window {
    padding: 1rem;
  }

  .game-embed {
    height: 450px;
  }

  .section-heading, .game-header h2 {
    font-size: 2rem;
  }

  .footer-sections {
    grid-template-columns: 1fr;
  }
}
