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

body {
  font-family: 'Roboto', sans-serif;
  background: #1a1625;
  color: #e5e7eb;
  line-height: 1.6;
  min-height: 100vh;
}

/* Verification Overlay */
.verification-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 100000;
  align-items: center;
  justify-content: center;
}

.verification-overlay.show {
  display: flex;
}

.verification-box {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  padding: 3rem;
  border-radius: 20px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.5);
}

.verification-box h2 {
  font-family: 'Raleway', sans-serif;
  color: white;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.verification-box p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.verification-note {
  font-size: 0.95rem;
  opacity: 0.85;
}

.verification-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.verify-yes, .verify-no {
  flex: 1;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.verify-yes {
  background: white;
  color: #7c3aed;
}

.verify-yes:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.verify-no {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.verify-no:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Page Container */
.page-container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 260px;
  background: linear-gradient(180deg, #2d1b4e 0%, #1a1625 100%);
  padding: 2rem 0;
  position: fixed;
  height: 100vh;
  border-right: 2px solid rgba(168, 85, 247, 0.3);
  overflow-y: auto;
}

.logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 3rem;
  padding: 0 1.5rem;
}

.logo-symbol {
  font-size: 2.5rem;
}

.logo-title {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #a855f7;
}

.side-nav ul {
  list-style: none;
}

.side-nav li {
  margin-bottom: 0.5rem;
}

.side-nav a {
  display: block;
  padding: 1rem 1.5rem;
  color: #9ca3af;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.side-nav a:hover {
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
  border-left-color: #a855f7;
}

.side-nav a.active {
  background: rgba(168, 85, 247, 0.2);
  color: #a855f7;
  border-left-color: #a855f7;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1001;
  background: #7c3aed;
  border: none;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

/* Main Content */
.main-content {
  flex: 1;
  margin-left: 260px;
  padding: 3rem;
}

/* Page Header */
.page-header {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(168, 85, 247, 0.1) 100%);
  border-radius: 20px;
  margin-bottom: 3rem;
}

.page-header h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #a855f7;
  margin-bottom: 1rem;
}

.header-subtitle {
  font-size: 1.3rem;
  color: #9ca3af;
  margin-bottom: 2rem;
}

.primary-btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.6);
}

/* Sections */
section {
  margin-bottom: 4rem;
}

h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #a855f7;
  margin-bottom: 1.5rem;
  text-align: center;
}

.content-box {
  background: rgba(45, 27, 78, 0.5);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  border: 1px solid rgba(168, 85, 247, 0.2);
}

/* Highlight Grid */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.highlight-item {
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid;
}

.purple {
  background: rgba(124, 58, 237, 0.1);
  border-color: #7c3aed;
}

.violet {
  background: rgba(168, 85, 247, 0.1);
  border-color: #a855f7;
}

.indigo {
  background: rgba(99, 102, 241, 0.1);
  border-color: #6366f1;
}

.highlight-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.3);
}

.highlight-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1rem;
}

.highlight-item h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.4rem;
  color: #a855f7;
  margin-bottom: 1rem;
}

/* Game Section */
.game-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #9ca3af;
  font-size: 1.1rem;
}

.game-box {
  max-width: 1000px;
  margin: 0 auto;
  border: 3px solid #a855f7;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(168, 85, 247, 0.4);
}

.game-display {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

.game-expand-link {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  color: #a855f7;
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.game-expand-link:hover {
  color: #c084fc;
  transform: translateX(5px);
}

/* Features Layout */
.features-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: rgba(45, 27, 78, 0.5);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: #a855f7;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.feature-symbol {
  font-size: 2.5rem;
}

.feature-card h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.3rem;
  color: #a855f7;
}

/* Info Section */
.info-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.info-content p {
  font-size: 1.1rem;
  color: #9ca3af;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.info-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: 'Raleway', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #a855f7;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: #9ca3af;
}

/* Play Page */
.play-content h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 3rem;
  color: #a855f7;
  text-align: center;
  margin-bottom: 1rem;
}

.play-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #9ca3af;
}

.play-info-box {
  background: rgba(124, 58, 237, 0.1);
  border-left: 4px solid #7c3aed;
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 1000px;
  margin: 0 auto 2rem;
}

.play-game-container {
  max-width: 1000px;
  margin: 0 auto;
  border: 3px solid #a855f7;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(168, 85, 247, 0.4);
}

.play-game-frame {
  width: 100%;
  height: 700px;
  border: none;
  display: block;
}

.play-notice-box {
  background: rgba(168, 85, 247, 0.1);
  border: 2px solid #a855f7;
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 1000px;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 1.05rem;
}

/* Legal Pages */
.legal-content h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 2.8rem;
  color: #a855f7;
  text-align: center;
  margin-bottom: 1rem;
}

.effective-date {
  text-align: center;
  color: #6b7280;
  font-style: italic;
  margin-bottom: 3rem;
}

.terms-article {
  background: rgba(45, 27, 78, 0.5);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.terms-article h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  color: #a855f7;
  text-align: left;
  margin-bottom: 1rem;
}

.terms-article ul {
  margin-left: 2rem;
  margin-top: 1rem;
}

.terms-article li {
  margin-bottom: 0.6rem;
}

.critical-notice {
  background: rgba(168, 85, 247, 0.15);
  border: 3px solid #a855f7;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
}

.critical-notice h2 {
  text-align: left;
  margin-bottom: 1rem;
}

.critical-notice ul {
  margin-left: 2rem;
  margin-top: 1rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #2d1b4e 0%, #1a1625 100%);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  border-top: 3px solid rgba(168, 85, 247, 0.3);
  margin-left: 260px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  font-family: 'Raleway', sans-serif;
  color: #a855f7;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.6rem;
}

.footer-column a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #a855f7;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(168, 85, 247, 0.2);
  color: #6b7280;
}

/* Mobile Responsive */
@media (max-width: 968px) {
  .sidebar {
    left: -260px;
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .sidebar.open {
    left: 0;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .main-content {
    margin-left: 0;
    padding: 1.5rem;
  }

  .site-footer {
    margin-left: 0;
  }

  .footer-container {
    padding: 0 1.5rem;
  }

  .page-header h1, .play-content h1, .legal-content h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .highlight-grid, .features-layout {
    grid-template-columns: 1fr;
  }

  .game-display, .play-game-frame {
    height: 400px;
  }

  .info-stats {
    gap: 2rem;
  }

  .verification-box {
    margin: 20px;
    padding: 2rem;
  }

  .verification-buttons {
    flex-direction: column;
  }
}
