* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #0a0e27;
  color: #e8e8e8;
  line-height: 1.7;
  min-height: 100vh;
}

.content-box {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 25px;
}

.main-header {
  background: linear-gradient(90deg, #1a1d35 0%, #0f1123 100%);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid #2a2f4a;
}

.header-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
}

.brand-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.brand-text {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.main-nav {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-link {
  color: #b8b8b8;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
  color: #667eea;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: #667eea;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 86px;
    right: -100%;
    flex-direction: column;
    background: #1a1d35;
    width: 75%;
    max-width: 280px;
    padding: 40px 25px;
    gap: 25px;
    transition: right 0.3s;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 20px 0 0 20px;
  }

  .main-nav.active {
    right: 0;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    background: rgba(102, 126, 234, 0.1);
  }
}

.hero-section {
  position: relative;
  padding: 120px 25px;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero-container h1 {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 25px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-text {
  font-size: 20px;
  margin-bottom: 40px;
  line-height: 1.7;
  opacity: 0.95;
}

.hero-cta {
  display: inline-block;
  background: #ffffff;
  color: #667eea;
  padding: 18px 50px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.intro-section {
  padding: 90px 25px;
  background: #0f1225;
}

.intro-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 20px;
  color: #667eea;
  font-weight: 700;
}

.intro-lead {
  text-align: center;
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 60px;
  color: #b8b8b8;
  line-height: 1.8;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: linear-gradient(145deg, #1a1d35 0%, #0f1225 100%);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #2a2f4a;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
  border-color: #667eea;
}

.feature-emoji {
  font-size: 55px;
  display: block;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: 600;
}

.feature-card p {
  color: #b8b8b8;
  line-height: 1.7;
}

.disclaimer-section {
  padding: 90px 25px;
  background: #0a0e27;
}

.disclaimer-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 50px;
  color: #667eea;
  font-weight: 700;
}

.disclaimer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.disclaimer-card {
  background: #1a1d35;
  padding: 35px;
  border-radius: 12px;
  border-left: 5px solid;
}

.disclaimer-card.red-border {
  border-left-color: #ef4444;
}

.disclaimer-card.blue-border {
  border-left-color: #3b82f6;
}

.disclaimer-card.yellow-border {
  border-left-color: #f59e0b;
}

.disclaimer-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: 600;
}

.disclaimer-card p {
  color: #b8b8b8;
  line-height: 1.7;
}

.game-showcase {
  padding: 90px 25px;
  background: #0f1225;
}

.game-showcase h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 15px;
  color: #667eea;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  font-size: 17px;
  margin-bottom: 50px;
  color: #b8b8b8;
}

.game-embed-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  background: #000000;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.game-iframe {
  width: 100%;
  height: 750px;
  border: none;
  display: block;
}

.benefits-section {
  padding: 90px 25px;
  background: #0a0e27;
}

.benefits-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
  color: #667eea;
  font-weight: 700;
}

.benefits-list {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 35px;
}

.benefit-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.benefit-num {
  flex-shrink: 0;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
}

.benefit-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #ffffff;
  font-weight: 600;
}

.benefit-content p {
  color: #b8b8b8;
  line-height: 1.7;
}

.final-cta {
  padding: 100px 25px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
}

.final-cta h2 {
  font-size: 45px;
  margin-bottom: 20px;
  font-weight: 700;
}

.final-cta p {
  font-size: 19px;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  background: #ffffff;
  color: #667eea;
  padding: 18px 50px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.site-footer {
  background: #0f1225;
  padding: 70px 25px 30px;
  border-top: 1px solid #2a2f4a;
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #667eea;
  font-weight: 600;
}

.footer-col p {
  color: #b8b8b8;
  margin-bottom: 15px;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #b8b8b8;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #667eea;
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #2a2f4a;
  color: #b8b8b8;
  font-size: 14px;
}

.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.97);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  backdrop-filter: blur(8px);
}

.age-gate.hidden {
  display: none;
}

.age-gate-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  max-width: 550px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  border: 2px solid #ffffff;
}

.age-gate-logo {
  margin-bottom: 25px;
}

.logo-circle {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 900;
  color: #667eea;
  margin: 0 auto;
}

.age-gate-box h2 {
  font-size: 34px;
  margin-bottom: 20px;
  font-weight: 700;
}

.age-gate-box p {
  font-size: 17px;
  margin-bottom: 35px;
  line-height: 1.7;
}

.age-gate-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.age-btn-confirm,
.age-btn-deny {
  padding: 16px 40px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.age-btn-confirm {
  background: #ffffff;
  color: #667eea;
}

.age-btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.age-btn-deny {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.age-btn-deny:hover {
  background: rgba(255, 255, 255, 0.1);
}

.page-header {
  padding: 80px 25px 50px;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.page-header h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-intro {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.95;
}

.gameplay-info {
  padding: 60px 25px;
  background: #0f1225;
}

.info-panel {
  max-width: 900px;
  margin: 0 auto;
  background: #1a1d35;
  padding: 40px;
  border-radius: 15px;
  border: 1px solid #2a2f4a;
}

.info-panel h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #667eea;
  font-weight: 600;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-list li {
  padding-left: 30px;
  position: relative;
  color: #b8b8b8;
  line-height: 1.7;
}

.info-list li:before {
  content: "►";
  position: absolute;
  left: 0;
  color: #667eea;
}

.game-area {
  padding: 60px 0;
  background: #0a0e27;
}

.game-container-full {
  max-width: 1400px;
  margin: 0 auto;
  background: #000000;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
}

.fullscreen-game {
  width: 100%;
  height: 850px;
  border: none;
  display: block;
}

.play-notice {
  padding: 60px 25px;
  background: #0f1225;
}

.notice-panel {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(239, 68, 68, 0.1);
  padding: 35px;
  border-radius: 15px;
  border: 2px solid rgba(239, 68, 68, 0.4);
  text-align: center;
}

.notice-panel h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #ef4444;
  font-weight: 600;
}

.notice-panel p {
  color: #b8b8b8;
  line-height: 1.7;
}

.legal-hero {
  padding: 100px 25px 50px;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.legal-hero h1 {
  font-size: 52px;
  margin-bottom: 15px;
  font-weight: 700;
}

.legal-date {
  font-size: 16px;
  opacity: 0.9;
}

.legal-body {
  padding: 80px 25px;
  background: #0a0e27;
}

.legal-block {
  max-width: 1000px;
  margin: 0 auto 35px;
  background: #1a1d35;
  padding: 40px;
  border-radius: 15px;
  border-left: 4px solid #667eea;
}

.legal-block h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #667eea;
  font-weight: 600;
}

.legal-block h3 {
  font-size: 24px;
  margin-bottom: 15px;
  margin-top: 25px;
  color: #667eea;
  font-weight: 600;
}

.legal-block p {
  margin-bottom: 18px;
  color: #b8b8b8;
  line-height: 1.8;
}

.legal-block ul,
.legal-block ol {
  margin-left: 30px;
  margin-bottom: 18px;
  color: #b8b8b8;
}

.legal-block li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.legal-block strong {
  color: #ffffff;
}

.legal-block a {
  color: #667eea;
  text-decoration: none;
  border-bottom: 1px solid #667eea;
}

.legal-block a:hover {
  color: #764ba2;
  border-bottom-color: #764ba2;
}

.warning-block {
  border-left-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.summary-block {
  border: 3px solid #667eea;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-container h1 {
    font-size: 38px;
  }

  .hero-text {
    font-size: 17px;
  }

  .game-iframe {
    height: 550px;
  }

  .fullscreen-game {
    height: 650px;
  }

  .feature-cards,
  .disclaimer-cards {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .age-gate-box {
    padding: 35px;
    margin: 20px;
  }

  .age-gate-actions {
    flex-direction: column;
  }

  .legal-hero h1 {
    font-size: 36px;
  }

  .legal-block {
    padding: 30px 25px;
  }
}
