* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background: radial-gradient(circle at top, #1e1b4b, #0f0a2e);
  color: #f5f3ff;
  line-height: 1.6;
  min-height: 100vh;
}

.verify-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 46, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(12px);
}

.verify-overlay.hidden {
  display: none;
}

.verify-card {
  background: linear-gradient(145deg, #2d1b69, #4c1d95);
  border: 3px solid #a855f7;
  padding: 3rem 2.5rem;
  border-radius: 25px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 25px 70px rgba(168, 85, 247, 0.4);
}

.verify-symbol {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  animation: mystical 4s ease-in-out infinite;
}

@keyframes mystical {
  0%, 100% { transform: rotate(0deg) scale(1); opacity: 1; }
  50% { transform: rotate(180deg) scale(1.1); opacity: 0.9; }
}

.verify-card h2 {
  font-size: 2.2rem;
  color: #e9d5ff;
  margin-bottom: 1rem;
  font-weight: 800;
}

.verify-card p {
  margin-bottom: 1rem;
  color: #ddd6fe;
  font-size: 1.1rem;
  line-height: 1.7;
}

.verify-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn-yes, .btn-no {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Outfit', sans-serif;
}

.btn-yes {
  background: linear-gradient(135deg, #a855f7, #c026d3);
  color: white;
}

.btn-yes:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(168, 85, 247, 0.5);
}

.btn-no {
  background: transparent;
  color: #a78bfa;
  border: 2px solid #6d28d9;
}

.btn-no:hover {
  border-color: #8b5cf6;
  background: rgba(139, 92, 246, 0.1);
}

.navbar {
  background: rgba(30, 27, 75, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid #a855f7;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-title {
  font-size: 1.9rem;
  font-weight: 900;
  color: #e9d5ff;
  letter-spacing: 1px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  width: 30px;
  height: 3px;
  background: #a855f7;
  border-radius: 3px;
  transition: all 0.3s;
}

.mobile-toggle.opened span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.mobile-toggle.opened span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.opened span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.menu-item {
  color: #ddd6fe;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  padding: 0.5rem 1.2rem;
  border-radius: 10px;
}

.menu-item:hover,
.menu-item.current {
  color: #f5f3ff;
  background: rgba(168, 85, 247, 0.2);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.banner-hero {
  background: linear-gradient(135deg, rgba(76, 29, 149, 0.3), rgba(109, 40, 217, 0.3));
  padding: 6rem 0;
  text-align: center;
  border-bottom: 2px solid rgba(168, 85, 247, 0.3);
}

.hero-heading {
  font-size: 3.8rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #f5f3ff;
  text-shadow: 0 0 40px rgba(168, 85, 247, 0.6);
}

.hero-description {
  font-size: 1.3rem;
  max-width: 750px;
  margin: 0 auto 2.5rem;
  color: #ddd6fe;
  line-height: 1.8;
}

.hero-action {
  display: inline-block;
  padding: 1.3rem 3.5rem;
  background: linear-gradient(135deg, #a855f7, #c026d3);
  color: white;
  text-decoration: none;
  border-radius: 15px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 12px 35px rgba(168, 85, 247, 0.4);
}

.hero-action:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(168, 85, 247, 0.6);
}

.critical-notices {
  padding: 4.5rem 0;
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.notice-item {
  background: linear-gradient(145deg, #2d1b69, #4c1d95);
  padding: 2.5rem;
  border-radius: 18px;
  border: 2px solid #7c3aed;
  text-align: center;
  transition: all 0.3s;
}

.notice-item:hover {
  border-color: #a855f7;
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.3);
}

.notice-symbol {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
}

.notice-item h3 {
  font-size: 1.6rem;
  color: #e9d5ff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.notice-item p {
  color: #ddd6fe;
  line-height: 1.7;
}

.game-presentation {
  padding: 5rem 0;
  background: rgba(76, 29, 149, 0.1);
}

.presentation-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.presentation-intro h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #e9d5ff;
  margin-bottom: 1rem;
}

.presentation-intro p {
  font-size: 1.15rem;
  color: #c4b5fd;
}

.game-stage {
  max-width: 1150px;
  margin: 0 auto;
  background: rgba(30, 27, 75, 0.5);
  padding: 2rem;
  border-radius: 20px;
  border: 3px solid #7c3aed;
  box-shadow: 0 0 50px rgba(168, 85, 247, 0.2);
}

.game-portal {
  width: 100%;
  height: 650px;
  border: none;
  border-radius: 15px;
}

.about-realm {
  padding: 5rem 0;
}

.realm-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.realm-column {
  background: linear-gradient(145deg, #2d1b69, #4c1d95);
  padding: 2.5rem;
  border-radius: 18px;
  border-left: 5px solid #a855f7;
}

.realm-column h3 {
  font-size: 1.5rem;
  color: #e9d5ff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.realm-column p {
  color: #ddd6fe;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.platform-features {
  padding: 5rem 0;
  background: rgba(76, 29, 149, 0.1);
}

.features-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 900;
  color: #e9d5ff;
  margin-bottom: 3rem;
}

.features-display {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(30, 27, 75, 0.6);
  padding: 2.5rem 1.5rem;
  border-radius: 15px;
  text-align: center;
  border: 2px solid #6d28d9;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: #a855f7;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}

.feature-glyph {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.feature-card h4 {
  font-size: 1.3rem;
  color: #e9d5ff;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.feature-card p {
  color: #c4b5fd;
  font-size: 0.95rem;
}

.site-footer {
  background: rgba(15, 10, 46, 0.9);
  border-top: 3px solid #a855f7;
  padding: 3rem 0 2rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.footer-segment h4 {
  font-size: 1.4rem;
  color: #e9d5ff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-segment p {
  color: #c4b5fd;
  margin-bottom: 1rem;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 0.8rem;
}

.footer-menu li a {
  color: #ddd6fe;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-menu li a:hover {
  color: #a855f7;
  padding-left: 5px;
}

.footer-note {
  font-size: 0.95rem;
}

.footer-credit {
  color: #7c3aed;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 260px;
    height: calc(100vh - 80px);
    background: rgba(30, 27, 75, 0.98);
    flex-direction: column;
    padding: 2rem;
    transition: right 0.3s;
    border-left: 3px solid #a855f7;
  }

  .nav-menu.active {
    right: 0;
  }

  .menu-item {
    width: 100%;
    padding: 1rem;
  }

  .hero-heading {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .game-stage {
    padding: 1rem;
  }

  .game-portal {
    height: 450px;
  }

  .features-title, .presentation-intro h2 {
    font-size: 2.2rem;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }
}
