* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #0d0221 0%, #1a0b2e 50%, #16213e 100%);
  color: #00ffff;
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3 {
  font-family: 'Orbitron', sans-serif;
}

.verify-overlay {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 2, 33, 0.98);
  backdrop-filter: blur(12px);
}

.verify-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.verify-panel {
  background: linear-gradient(145deg, #1a0b2e, #0d0221);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  border: 3px solid #ff00ff;
  box-shadow: 0 0 40px rgba(255, 0, 255, 0.5), 0 0 80px rgba(0, 255, 255, 0.3);
}

.verify-icon {
  margin-bottom: 1.5rem;
}

.neon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff00ff, #00ffff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  font-family: 'Orbitron', sans-serif;
  color: #0d0221;
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
}

.verify-panel h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ff00ff;
  text-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
  letter-spacing: 3px;
}

.verify-panel p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #00ffff;
}

.verify-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-confirm, .btn-decline {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 2px;
}

.btn-confirm {
  background: linear-gradient(135deg, #ff00ff, #00ffff);
  color: #0d0221;
  border: 2px solid transparent;
}

.btn-confirm:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
}

.btn-decline {
  background: transparent;
  color: #888;
  border: 2px solid #444;
}

.btn-decline:hover {
  color: #aaa;
  border-color: #666;
}

.topnav {
  background: rgba(13, 2, 33, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #ff00ff;
  box-shadow: 0 5px 30px rgba(255, 0, 255, 0.3);
}

.nav-content {
  max-width: 100%;
  padding: 1rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-neon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff00ff, #00ffff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  font-family: 'Orbitron', sans-serif;
  color: #0d0221;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
}

.logo-neon.small {
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
}

.logo-text {
  font-size: 1.6rem;
  font-weight: 900;
  font-family: 'Orbitron', sans-serif;
  color: #00ffff;
  letter-spacing: 4px;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.ham-line {
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, #ff00ff, #00ffff);
  margin: 4px 0;
  transition: 0.3s;
  border-radius: 3px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  color: #00ffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 2px;
  font-family: 'Orbitron', sans-serif;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border: 2px solid transparent;
}

.nav-item:hover,
.nav-item.active {
  color: #ff00ff;
  border-color: #ff00ff;
  text-shadow: 0 0 15px rgba(255, 0, 255, 0.8);
}

@media (max-width: 768px) {
  .nav-content {
    padding: 1rem 1.5rem;
  }

  .hamburger-btn {
    display: flex;
  }

  .nav-list {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background: rgba(13, 2, 33, 0.98);
    width: 100%;
    height: 100vh;
    text-align: center;
    transition: 0.3s;
    padding-top: 5rem;
    gap: 0;
  }

  .nav-list.open {
    left: 0;
  }

  .nav-item {
    display: block;
    padding: 1.5rem;
    width: 100%;
    font-size: 1.1rem;
  }
}

main {
  width: 100%;
}

.hero-zone {
  padding: 8rem 2.5rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
  border-bottom: 3px solid #ff00ff;
}

.hero-wrap h1.mega-title {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  letter-spacing: 5px;
  text-shadow: 0 0 40px rgba(255, 0, 255, 0.5);
}

.hero-text {
  font-size: 1.4rem;
  color: #00ffff;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-neon {
  display: inline-block;
  padding: 1.25rem 3.5rem;
  background: linear-gradient(135deg, #ff00ff, #00ffff);
  color: #0d0221;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 900;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 3px;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.cta-neon:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 40px rgba(255, 0, 255, 0.8), 0 0 80px rgba(0, 255, 255, 0.6);
}

.content-zone {
  max-width: 100%;
  padding: 0 2.5rem;
}

.about-zone {
  padding: 6rem 0;
  background: rgba(26, 11, 46, 0.5);
}

.section-heading {
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #ff00ff;
  font-weight: 900;
  letter-spacing: 4px;
  text-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
}

.section-text {
  font-size: 1.15rem;
  color: #00ffff;
  margin-bottom: 1.5rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.core-zone {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0d0221, #1a0b2e);
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.core-card {
  background: linear-gradient(145deg, #1a0b2e, #0d0221);
  padding: 2.5rem;
  border: 2px solid #ff00ff;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.core-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(255, 0, 255, 0.6);
  border-color: #00ffff;
}

.core-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.core-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #00ffff;
  text-align: center;
  letter-spacing: 2px;
}

.core-desc {
  color: #ccc;
  line-height: 1.8;
  text-align: center;
}

.game-zone {
  padding: 6rem 0;
  background: rgba(26, 11, 46, 0.5);
}

.game-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #00ffff;
  margin-bottom: 3rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.game-wrapper {
  max-width: 1350px;
  margin: 0 auto;
  background: #000;
  padding: 1.5rem;
  border: 3px solid #ff00ff;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(255, 0, 255, 0.4);
}

.game-player {
  width: 100%;
  height: 750px;
  border: none;
}

.responsibility-zone {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0d0221, #1a0b2e);
  text-align: center;
}

.responsibility-desc {
  font-size: 1.15rem;
  color: #00ffff;
  max-width: 1000px;
  margin: 0 auto 3rem auto;
}

.support-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.support-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(145deg, #1a0b2e, #0d0221);
  border: 2px solid #ff00ff;
  border-radius: 10px;
  color: #00ffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
  border-color: #00ffff;
}

.support-emoji {
  font-size: 2rem;
}

.bottom-footer {
  background: #0d0221;
  border-top: 3px solid #ff00ff;
  padding: 4rem 2.5rem;
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer-logo-text {
  font-size: 1.3rem;
  font-weight: 900;
  font-family: 'Orbitron', sans-serif;
  color: #00ffff;
  letter-spacing: 3px;
}

.footer-heading {
  font-size: 1.1rem;
  color: #ff00ff;
  margin-bottom: 1rem;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 2px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: #00ffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #ff00ff;
  text-shadow: 0 0 15px rgba(255, 0, 255, 0.8);
}

.footer-notice {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer-copy {
  color: #666;
  font-size: 0.9rem;
}

.page-hero {
  padding: 5rem 2.5rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
  border-bottom: 3px solid #ff00ff;
}

.page-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  letter-spacing: 4px;
}

.page-intro {
  font-size: 1.25rem;
  color: #00ffff;
  max-width: 850px;
  margin: 0 auto;
}

.legal-date {
  color: #888;
  font-size: 1rem;
}

.play-zone {
  padding: 5rem 0;
  background: rgba(26, 11, 46, 0.5);
}

.game-info-panel {
  max-width: 1350px;
  margin: 3rem auto 0 auto;
  padding: 2.5rem;
  background: linear-gradient(145deg, #1a0b2e, #0d0221);
  border: 2px solid #ff00ff;
  border-radius: 15px;
}

.info-heading {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: #ff00ff;
  text-align: center;
  letter-spacing: 3px;
}

.info-text {
  color: #00ffff;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-size: 1.05rem;
  text-align: center;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-row {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-symbol {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.feature-name {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: #00ffff;
}

.feature-detail {
  color: #ccc;
  line-height: 1.7;
}

.disclaimer-zone {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0d0221, #1a0b2e);
}

.disclaimer-box {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(145deg, #1a0b2e, #0d0221);
  padding: 3rem;
  border: 3px solid #ff00ff;
  border-radius: 15px;
  box-shadow: 0 0 40px rgba(255, 0, 255, 0.3);
}

.disclaimer-heading {
  font-size: 2.25rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #ff00ff;
  letter-spacing: 3px;
}

.disclaimer-points {
  list-style: none;
  padding: 0;
}

.disclaimer-points li {
  color: #00ffff;
  padding: 1rem 0;
  padding-left: 2.5rem;
  position: relative;
  line-height: 1.7;
  font-size: 1.05rem;
}

.disclaimer-points li:before {
  content: "►";
  position: absolute;
  left: 0;
  color: #ff00ff;
  font-weight: bold;
  font-size: 1.3rem;
}

.legal-zone {
  padding: 5rem 0;
  background: rgba(26, 11, 46, 0.5);
}

.legal-document {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(145deg, #1a0b2e, #0d0221);
  padding: 3.5rem;
  border: 2px solid #ff00ff;
  border-radius: 15px;
}

.legal-document h2 {
  font-size: 1.9rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  color: #ff00ff;
  letter-spacing: 2px;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document p {
  color: #00ffff;
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.legal-document ul {
  list-style: disc;
  margin-left: 2.25rem;
  margin-bottom: 1.25rem;
  color: #00ffff;
}

.legal-document li {
  margin-bottom: 0.75rem;
  line-height: 1.75;
}

.legal-document strong {
  color: #fff;
}

.legal-document a {
  color: #ff00ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.legal-document a:hover {
  color: #00ffff;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .mega-title {
    font-size: 3rem !important;
  }

  .hero-text {
    font-size: 1.15rem;
  }

  .section-heading {
    font-size: 2.25rem;
  }

  .game-player {
    height: 500px;
  }

  .core-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .legal-document,
  .disclaimer-box {
    padding: 2rem 1.5rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .content-zone {
    padding: 0 1.5rem;
  }
}
