* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0f0f0f;
  color: #f5f5f5;
  line-height: 1.6;
}

.age-verify {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(5px);
}

.age-verify.hidden {
  display: none;
}

.age-verify-box {
  background: linear-gradient(145deg, #1a1100, #2d1f00);
  border: 3px solid #d97706;
  padding: 3rem 2.5rem;
  border-radius: 15px;
  text-align: center;
  max-width: 450px;
  box-shadow: 0 0 50px rgba(217, 119, 6, 0.3);
}

.age-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.age-verify-box h2 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 1rem;
  font-weight: 700;
}

.age-verify-box p {
  margin-bottom: 1rem;
  color: #d1d5db;
  font-size: 1.05rem;
}

.age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn-confirm, .btn-deny {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}

.btn-confirm {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

.btn-confirm:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.4);
}

.btn-deny {
  background: transparent;
  color: #9ca3af;
  border: 2px solid #4b5563;
}

.btn-deny:hover {
  border-color: #6b7280;
  color: #d1d5db;
}

.top-banner {
  background: linear-gradient(90deg, #78350f, #92400e, #78350f);
  padding: 0.8rem 0;
  border-bottom: 2px solid #f59e0b;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.banner-content span {
  font-size: 1.2rem;
}

.banner-content p {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fbbf24;
}

.site-header {
  background: #1a1a1a;
  border-bottom: 3px solid #d97706;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand h1 {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #f59e0b;
  border-radius: 2px;
  transition: all 0.3s;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

.main-nav {
  display: flex;
  gap: 2.5rem;
}

.main-nav a {
  color: #d1d5db;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f59e0b;
  transition: width 0.3s;
}

.main-nav a:hover::after,
.main-nav a.nav-active::after {
  width: 100%;
}

.main-nav a:hover,
.main-nav a.nav-active {
  color: #fbbf24;
}

.hero-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23422006" width="1200" height="600"/><path fill="%23d97706" opacity="0.1" d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z"/></svg>');
  background-size: cover;
  background-position: center;
  padding: 6rem 0;
  position: relative;
}

.hero-text {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fbbf24;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-text p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: #e5e7eb;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(217, 119, 6, 0.5);
}

.key-points {
  padding: 4rem 0;
  background: #0a0a0a;
}

.key-points .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.point-box {
  background: linear-gradient(145deg, #1a1100, #2d1f00);
  padding: 2.5rem;
  border-radius: 12px;
  border: 2px solid #78350f;
  text-align: center;
  transition: all 0.3s;
}

.point-box:hover {
  border-color: #f59e0b;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.2);
}

.point-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.point-box h3 {
  font-size: 1.5rem;
  color: #fbbf24;
  margin-bottom: 1rem;
  font-weight: 700;
}

.point-box p {
  color: #d1d5db;
  line-height: 1.7;
}

.game-showcase {
  padding: 5rem 0;
  background: #0f0f0f;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
  color: #9ca3af;
}

.game-embed {
  max-width: 1100px;
  margin: 0 auto;
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 15px;
  border: 3px solid #78350f;
}

.game-iframe {
  width: 100%;
  height: 650px;
  border: none;
  border-radius: 10px;
}

.about-platform {
  padding: 5rem 0;
  background: #0a0a0a;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.about-card {
  background: linear-gradient(145deg, #1a1100, #2d1f00);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.about-card h3 {
  font-size: 1.4rem;
  color: #fbbf24;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-card p {
  color: #d1d5db;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.benefits {
  padding: 5rem 0;
  background: #0f0f0f;
}

.benefits h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.benefit {
  background: #1a1a1a;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #78350f;
  transition: all 0.3s;
}

.benefit:hover {
  border-color: #f59e0b;
  transform: translateY(-5px);
}

.benefit-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.benefit h4 {
  font-size: 1.2rem;
  color: #fbbf24;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.benefit p {
  color: #9ca3af;
  font-size: 0.95rem;
}

.site-footer {
  background: #0a0a0a;
  border-top: 3px solid #d97706;
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.footer-block h4 {
  font-size: 1.3rem;
  color: #fbbf24;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-block p {
  color: #9ca3af;
  margin-bottom: 1rem;
}

.footer-block ul {
  list-style: none;
}

.footer-block ul li {
  margin-bottom: 0.8rem;
}

.footer-block ul li a {
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-block ul li a:hover {
  color: #f59e0b;
  padding-left: 5px;
}

.footer-info {
  font-size: 0.95rem;
}

.copyright {
  color: #6b7280;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 75px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 75px);
    background: #1a1a1a;
    flex-direction: column;
    padding: 2rem;
    transition: right 0.3s;
    border-left: 3px solid #d97706;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav a {
    padding: 1rem 0;
    width: 100%;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .game-embed {
    padding: 1rem;
  }

  .game-iframe {
    height: 450px;
  }

  .section-title h2, .benefits h2 {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
