* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.7;
  color: #2c3e50;
  background: #ecf0f1;
}

/* Age Gate */
.age-gate {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-gate.show {
  display: flex;
}

.age-gate-box {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
  padding: 50px;
  border-radius: 20px;
  max-width: 550px;
  width: 100%;
  text-align: center;
  color: white;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.gate-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.age-gate-box h2 {
  font-family: 'Righteous', cursive;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #fff;
}

.age-gate-box p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.8;
}

.gate-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.gate-btn {
  padding: 15px 35px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
}

.gate-btn-yes {
  background: white;
  color: #27ae60;
}

.gate-btn-yes:hover {
  background: #f1f1f1;
  transform: scale(1.05);
}

.gate-btn-no {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.gate-btn-no:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Layout */
.layout-wrapper {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 280px;
  background: linear-gradient(180deg, #27ae60 0%, #1e8449 100%);
  color: white;
  padding: 30px 0;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
  padding: 0 30px 30px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.site-brand {
  font-family: 'Righteous', cursive;
  font-size: 1.8rem;
  color: white;
}

.sidebar-nav {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 15px 30px;
  transition: all 0.3s ease;
  font-weight: 600;
  border-left: 4px solid transparent;
}

.nav-link:hover, .nav-link.active {
  background: rgba(255, 255, 255, 0.15);
  border-left-color: white;
  color: white;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;
  background: #27ae60;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

/* Main Content */
.main-content {
  margin-left: 280px;
  flex: 1;
  padding: 0;
}

.page-header {
  background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
  color: white;
  padding: 80px 50px;
  text-align: center;
}

.page-header h1 {
  font-family: 'Righteous', cursive;
  font-size: 3rem;
  margin-bottom: 15px;
}

.header-tagline {
  font-size: 1.3rem;
  opacity: 0.95;
}

/* Content Sections */
section {
  padding: 60px 50px;
}

.content-box {
  max-width: 1000px;
  margin: 0 auto;
}

.welcome-block {
  background: white;
}

.welcome-block h2 {
  font-family: 'Righteous', cursive;
  font-size: 2.5rem;
  color: #27ae60;
  margin-bottom: 25px;
}

.welcome-block p {
  font-size: 1.15rem;
  margin-bottom: 20px;
}

/* Key Points */
.key-points {
  background: #f8f9fa;
}

.key-points h2 {
  font-family: 'Righteous', cursive;
  font-size: 2.5rem;
  color: #27ae60;
  margin-bottom: 40px;
  text-align: center;
}

.points-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.point-box {
  padding: 35px;
  border-radius: 15px;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.green-box {
  background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
}

.blue-box {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.orange-box {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.point-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 15px;
}

.point-box h3 {
  font-family: 'Righteous', cursive;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.point-box p {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Game Showcase */
.game-showcase {
  background: white;
}

.game-showcase h2 {
  font-family: 'Righteous', cursive;
  font-size: 2.5rem;
  color: #27ae60;
  margin-bottom: 20px;
  text-align: center;
}

.game-showcase p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 35px;
}

.game-embed {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.game-iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

/* Benefits */
.benefits {
  background: #f8f9fa;
}

.benefits h2 {
  font-family: 'Righteous', cursive;
  font-size: 2.5rem;
  color: #27ae60;
  margin-bottom: 40px;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.benefit-card h3 {
  font-family: 'Righteous', cursive;
  color: #27ae60;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.benefit-card p {
  font-size: 1.05rem;
}

/* Play Page */
.play-info {
  background: white;
}

.play-info h2 {
  font-family: 'Righteous', cursive;
  color: #27ae60;
  margin-bottom: 20px;
  font-size: 2rem;
}

.play-info p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

/* Legal Section */
.legal-section {
  background: white;
}

.legal-section h2 {
  font-family: 'Righteous', cursive;
  color: #27ae60;
  margin-top: 35px;
  margin-bottom: 15px;
  font-size: 1.9rem;
}

.legal-section p, .legal-section li {
  font-size: 1.05rem;
  margin-bottom: 15px;
}

.legal-section ul {
  margin-left: 30px;
  margin-bottom: 20px;
}

/* Footer */
.page-footer {
  background: #2c3e50;
  color: white;
  padding: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-col h4 {
  font-family: 'Righteous', cursive;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #27ae60;
}

.footer-col p {
  margin-bottom: 15px;
  opacity: 0.9;
}

.resource-links, .footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.resource-links a, .footer-links a {
  color: #27ae60;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.resource-links a:hover, .footer-links a:hover {
  opacity: 0.7;
}

.footer-note {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  text-align: center;
  opacity: 0.85;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }
  
  .sidebar {
    left: -280px;
    transition: left 0.3s ease;
    z-index: 9998;
  }
  
  .sidebar.open {
    left: 0;
  }
  
  .main-content {
    margin-left: 0;
  }
  
  .page-header, section {
    padding: 40px 20px;
  }
  
  .page-header h1 {
    font-size: 2.2rem;
  }
  
  .points-container, .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .game-iframe {
    height: 400px;
  }
  
  .age-gate-box {
    padding: 30px 20px;
  }
}
