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

body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f172a 100%);
  background-attachment: fixed;
  color: #e2e8f0;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(139, 92, 246, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #8b5cf6, #3b82f6);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 80%;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6, #3b82f6);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 73px;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.98);
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    padding: 2rem 0;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu a {
    width: 100%;
    padding: 1rem;
  }
}

/* Age Gate */
.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.age-gate.hidden {
  display: none;
}

.age-gate-content {
  background: linear-gradient(135deg, #1e293b, #334155);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  border: 2px solid rgba(139, 92, 246, 0.5);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-gate-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.age-gate-content p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #cbd5e1;
}

.age-gate-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.btn-yes,
.btn-no {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
}

.btn-yes {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  color: white;
}

.btn-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.btn-no {
  background: #64748b;
  color: white;
}

.btn-no:hover {
  background: #475569;
}

/* Hero Section */
.hero {
  padding: 6rem 0;
  text-align: center;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.hero-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  font-weight: 300;
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

/* Sections */
section {
  padding: 4rem 0;
}

h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #fff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro {
  background: rgba(30, 41, 59, 0.5);
  border-radius: 20px;
  padding: 3rem;
  margin: 2rem 0;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.intro p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #cbd5e1;
}

/* Game Showcase */
.game-showcase {
  background: rgba(30, 41, 59, 0.3);
  padding: 4rem 0;
}

.game-wrapper {
  background: #0f172a;
  padding: 20px;
  border-radius: 20px;
  margin: 2rem 0;
  border: 2px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.game-info {
  text-align: center;
  margin-top: 2rem;
}

.game-info p {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.play-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* Notices */
.notices {
  padding: 5rem 0;
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.notice-card {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
  padding: 2.5rem;
  border-radius: 16px;
  border: 2px solid rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

.notice-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.notice-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.notice-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
  background: none;
  -webkit-text-fill-color: inherit;
}

.notice-card p {
  color: #cbd5e1;
  line-height: 1.7;
}

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

.feature-item {
  background: rgba(30, 41, 59, 0.5);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-item:hover {
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-3px);
}

.feature-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.feature-item p {
  color: #cbd5e1;
  font-size: 0.95rem;
}

/* Responsible Gaming */
.responsible-gaming {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid rgba(239, 68, 68, 0.3);
  margin: 3rem 0;
}

.responsible-gaming h2 {
  color: #fca5a5;
}

.responsible-gaming p {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background: rgba(15, 23, 42, 0.95);
  border-top: 2px solid rgba(139, 92, 246, 0.3);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #8b5cf6;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  color: #94a3b8;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 20px 0;
}

/* Play Page */
.play-header {
  padding: 3rem 0 2rem;
  text-align: center;
}

.play-subtitle {
  font-size: 1.2rem;
  color: #cbd5e1;
  font-weight: 300;
}

.game-full {
  padding: 2rem 0;
}

.game-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.game-fullscreen {
  width: 100%;
  height: 80vh;
  min-height: 600px;
  border: none;
  border-radius: 20px;
  background: #0f172a;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(139, 92, 246, 0.3);
}

.game-instructions {
  background: rgba(30, 41, 59, 0.5);
  padding: 4rem 0;
  margin-top: 3rem;
}

.instructions-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.instruction-block {
  background: rgba(15, 23, 42, 0.6);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.instruction-block h3 {
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.instruction-block p {
  color: #cbd5e1;
  line-height: 1.7;
}

/* Legal Pages */
.legal-page {
  padding: 3rem 0;
  min-height: 60vh;
}

.legal-page h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.last-updated {
  color: #94a3b8;
  font-style: italic;
  margin-bottom: 3rem;
}

.legal-content {
  background: rgba(30, 41, 59, 0.5);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.legal-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  color: #fff;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  text-align: left;
  background: none;
  -webkit-text-fill-color: inherit;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.legal-content ul {
  margin: 1rem 0 1.5rem 2rem;
  color: #cbd5e1;
}

.legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .game-frame {
    height: 400px;
  }

  .game-fullscreen {
    height: 60vh;
    min-height: 400px;
  }

  .age-gate-content {
    padding: 2rem;
    margin: 0 20px;
  }

  .age-gate-buttons {
    flex-direction: column;
  }

  .legal-content {
    padding: 2rem 1.5rem;
  }

  .legal-page h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1.5rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
