* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: #0a1f1a;
  color: #f0fdf4;
  line-height: 1.6;
}

.age-check {
  position: fixed;
  inset: 0;
  background: rgba(10, 31, 26, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(10px);
}

.age-check.hidden {
  display: none;
}

.check-panel {
  background: linear-gradient(145deg, #064e3b, #065f46);
  border: 3px solid #10b981;
  padding: 3rem 2.5rem;
  border-radius: 16px;
  text-align: center;
  max-width: 480px;
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.4);
}

.check-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.check-panel h2 {
  font-size: 2rem;
  color: #d1fae5;
  margin-bottom: 1rem;
  font-weight: 700;
}

.check-panel p {
  margin-bottom: 1rem;
  color: #a7f3d0;
  font-size: 1.05rem;
}

.check-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn-confirm, .btn-deny {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Space Grotesk', sans-serif;
}

.btn-confirm {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.5);
}

.btn-deny {
  background: transparent;
  color: #6ee7b7;
  border: 2px solid #047857;
}

.btn-deny:hover {
  border-color: #059669;
  background: rgba(16, 185, 129, 0.1);
}

.site-header {
  background: rgba(6, 78, 59, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid #10b981;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container-fluid {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 2rem;
}

.site-header .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-name {
  font-size: 1.7rem;
  font-weight: 700;
  color: #d1fae5;
  letter-spacing: 2px;
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-btn span {
  width: 28px;
  height: 3px;
  background: #10b981;
  border-radius: 2px;
  transition: all 0.3s;
}

.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

.main-menu {
  display: flex;
  gap: 2rem;
}

.menu-link {
  color: #a7f3d0;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.menu-link:hover,
.menu-link.active-link {
  color: #d1fae5;
  background: rgba(16, 185, 129, 0.2);
}

.hero-section {
  background: linear-gradient(135deg, #064e3b, #065f46, #047857);
  padding: 5.5rem 0;
  text-align: center;
}

.hero-inner h1 {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ecfdf5;
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 750px;
  margin: 0 auto 2.5rem;
  color: #a7f3d0;
  line-height: 1.8;
}

.cta-btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.info-section {
  padding: 4.5rem 0;
  background: #0a1f1a;
}

.info-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.info-box {
  background: linear-gradient(145deg, #064e3b, #065f46);
  padding: 2.5rem;
  border-radius: 14px;
  border: 2px solid #047857;
  text-align: center;
  transition: all 0.3s;
}

.info-box:hover {
  border-color: #10b981;
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.2);
}

.box-icon {
  font-size: 3.2rem;
  margin-bottom: 1rem;
}

.info-box h3 {
  font-size: 1.5rem;
  color: #d1fae5;
  margin-bottom: 1rem;
  font-weight: 700;
}

.info-box p {
  color: #a7f3d0;
  line-height: 1.7;
}

.game-area {
  padding: 5rem 0;
  background: #0c2922;
}

.game-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.game-intro h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #d1fae5;
  margin-bottom: 1rem;
}

.game-intro p {
  font-size: 1.1rem;
  color: #6ee7b7;
}

.game-box {
  max-width: 1150px;
  margin: 0 auto;
  background: rgba(6, 78, 59, 0.5);
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid #047857;
  box-shadow: 0 0 50px rgba(16, 185, 129, 0.15);
}

.game-frame {
  width: 100%;
  height: 650px;
  border: none;
  border-radius: 12px;
}

.content-section {
  padding: 5rem 0;
  background: #0a1f1a;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.content-card {
  background: linear-gradient(145deg, #064e3b, #065f46);
  padding: 2.5rem;
  border-radius: 14px;
  border-left: 4px solid #10b981;
}

.content-card h3 {
  font-size: 1.5rem;
  color: #d1fae5;
  margin-bottom: 1rem;
  font-weight: 700;
}

.content-card p {
  color: #a7f3d0;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.benefits-section {
  padding: 5rem 0;
  background: #0c2922;
}

.section-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  color: #d1fae5;
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.benefit-item {
  background: rgba(6, 78, 59, 0.6);
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #047857;
  transition: all 0.3s;
}

.benefit-item:hover {
  border-color: #10b981;
  transform: translateY(-5px);
}

.benefit-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.benefit-item h4 {
  font-size: 1.2rem;
  color: #d1fae5;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.benefit-item p {
  color: #6ee7b7;
  font-size: 0.95rem;
}

.site-footer {
  background: #052e24;
  border-top: 2px solid #10b981;
  padding: 3rem 0 2rem;
}

.footer-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.footer-block h4 {
  font-size: 1.3rem;
  color: #d1fae5;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-block p {
  color: #6ee7b7;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links li a {
  color: #a7f3d0;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-links li a:hover {
  color: #10b981;
  padding-left: 5px;
}

.footer-info {
  font-size: 0.95rem;
}

.footer-copyright {
  color: #047857;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .menu-btn {
    display: flex;
  }

  .main-menu {
    position: fixed;
    top: 76px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 76px);
    background: rgba(6, 78, 59, 0.98);
    flex-direction: column;
    padding: 2rem;
    transition: right 0.3s;
    border-left: 2px solid #10b981;
  }

  .main-menu.active {
    right: 0;
  }

  .menu-link {
    width: 100%;
    padding: 1rem;
  }

  .hero-inner h1 {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .game-box {
    padding: 1rem;
  }

  .game-frame {
    height: 450px;
  }

  .section-title, .game-intro h2 {
    font-size: 2.2rem;
  }

  .footer-layout {
    grid-template-columns: 1fr;
  }
}
