* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0a0a;
  color: #e8e8e8;
  line-height: 1.7;
  min-height: 100vh;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

.age-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(8px);
}

.age-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-modal-box {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  padding: 3.5rem;
  border-radius: 8px;
  text-align: center;
  max-width: 480px;
  width: 88%;
  border: 2px solid #d4af37;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

.modal-icon {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.age-modal-box h2 {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  color: #d4af37;
  font-weight: 600;
}

.age-modal-box p {
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  color: #b8b8b8;
}

.age-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.age-yes, .age-no {
  padding: 1rem 2.25rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
}

.age-yes {
  background-color: #d4af37;
  color: #0a0a0a;
  border: 2px solid #d4af37;
}

.age-yes:hover {
  background-color: #b8941f;
  border-color: #b8941f;
  transform: translateY(-2px);
}

.age-no {
  background-color: transparent;
  color: #888;
  border: 2px solid #333;
}

.age-no:hover {
  color: #aaa;
  border-color: #555;
}

.site-header {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #1f1f1f;
}

.header-wrapper {
  max-width: 100%;
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #d4af37;
  text-decoration: none;
  letter-spacing: 2px;
  font-family: 'Playfair Display', serif;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle .bar {
  width: 28px;
  height: 2px;
  background-color: #d4af37;
  margin: 4px 0;
  transition: 0.3s;
}

.main-nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: #b8b8b8;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: #d4af37;
  border-bottom-color: #d4af37;
}

@media (max-width: 768px) {
  .header-wrapper {
    padding: 1rem 1.5rem;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background-color: rgba(10, 10, 10, 0.98);
    width: 100%;
    height: 100vh;
    text-align: center;
    transition: 0.3s;
    padding-top: 6rem;
    gap: 0;
  }

  .main-nav.open {
    left: 0;
  }

  .nav-link {
    display: block;
    padding: 1.75rem;
    width: 100%;
    font-size: 1.1rem;
  }
}

.main-content {
  width: 100%;
}

.hero-section {
  padding: 8rem 3rem;
  text-align: center;
  background: linear-gradient(to bottom, #0a0a0a, #1a1a1a);
  border-bottom: 1px solid #2a2a2a;
}

.hero-inner h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: #d4af37;
  font-weight: 600;
  line-height: 1.2;
}

.hero-lead {
  font-size: 1.35rem;
  color: #b8b8b8;
  margin-bottom: 3rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.hero-button {
  display: inline-block;
  padding: 1.25rem 3.5rem;
  background-color: #d4af37;
  color: #0a0a0a;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.35s ease;
  letter-spacing: 1px;
}

.hero-button:hover {
  background-color: #b8941f;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
}

.section-container {
  max-width: 100%;
  padding: 0 3rem;
}

.intro-section {
  padding: 6rem 0;
  background-color: #0f0f0f;
}

.intro-content h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #e8e8e8;
}

.intro-content p {
  font-size: 1.15rem;
  color: #b8b8b8;
  margin-bottom: 1.75rem;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pillars-section {
  padding: 6rem 0;
  background-color: #0a0a0a;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 3rem;
  text-align: center;
  color: #d4af37;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.pillar-card {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  padding: 2.5rem;
  border: 1px solid #2a2a2a;
  transition: all 0.35s ease;
}

.pillar-card:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

.pillar-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.pillar-card h3 {
  font-size: 1.65rem;
  margin-bottom: 1.25rem;
  color: #e8e8e8;
}

.pillar-card p {
  color: #b8b8b8;
  line-height: 1.8;
}

.game-showcase {
  padding: 6rem 0;
  background-color: #0f0f0f;
}

.section-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #b8b8b8;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.game-embed {
  max-width: 1300px;
  margin: 0 auto;
  background-color: #000;
  padding: 1.5rem;
  border: 2px solid #d4af37;
}

.game-iframe {
  width: 100%;
  height: 750px;
  border: none;
}

.responsibility-section {
  padding: 6rem 0;
  background-color: #0a0a0a;
  text-align: center;
}

.responsibility-text {
  font-size: 1.15rem;
  color: #b8b8b8;
  max-width: 950px;
  margin: 0 auto 3rem auto;
}

.help-resources {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.help-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  border: 1px solid #2a2a2a;
  color: #b8b8b8;
  text-decoration: none;
  transition: all 0.35s ease;
  font-weight: 500;
}

.help-link:hover {
  border-color: #d4af37;
  color: #e8e8e8;
  transform: translateY(-2px);
}

.help-emoji {
  font-size: 1.75rem;
}

.site-footer {
  background-color: #000;
  border-top: 1px solid #1f1f1f;
  padding: 4rem 3rem;
}

.footer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #d4af37;
  letter-spacing: 2px;
  font-family: 'Playfair Display', serif;
}

.footer-nav,
.footer-resources {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav a,
.footer-resources a {
  color: #888;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-nav a:hover,
.footer-resources a:hover {
  color: #d4af37;
}

.footer-resources-title {
  color: #e8e8e8;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.footer-legal {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-legal p {
  margin-bottom: 0.5rem;
}

.page-header {
  padding: 5rem 3rem;
  text-align: center;
  background: linear-gradient(to bottom, #0a0a0a, #1a1a1a);
  border-bottom: 1px solid #2a2a2a;
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #d4af37;
  font-weight: 600;
}

.page-description {
  font-size: 1.25rem;
  color: #b8b8b8;
  max-width: 800px;
  margin: 0 auto;
}

.legal-updated {
  color: #666;
  font-size: 1rem;
}

.gameplay-section {
  padding: 5rem 0;
  background-color: #0f0f0f;
}

.game-details {
  max-width: 1300px;
  margin: 3rem auto 0 auto;
  padding: 2.5rem;
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  border: 1px solid #2a2a2a;
}

.game-details h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: #e8e8e8;
}

.game-details > p {
  color: #b8b8b8;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.game-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.highlight-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.highlight-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.highlight-text h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: #e8e8e8;
}

.highlight-text p {
  color: #b8b8b8;
  line-height: 1.7;
}

.notice-section {
  padding: 5rem 0;
  background-color: #0a0a0a;
}

.notice-box {
  max-width: 950px;
  margin: 0 auto;
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  padding: 3rem;
  border: 2px solid #d4af37;
}

.notice-box h2 {
  font-size: 2.25rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #d4af37;
}

.notice-list {
  list-style: none;
  padding: 0;
}

.notice-list li {
  color: #b8b8b8;
  padding: 1rem 0;
  padding-left: 2.5rem;
  position: relative;
  line-height: 1.7;
  font-size: 1.05rem;
}

.notice-list li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
  font-size: 1.5rem;
}

.legal-section {
  padding: 5rem 0;
  background-color: #0f0f0f;
}

.legal-content {
  max-width: 950px;
  margin: 0 auto;
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  padding: 3.5rem;
  border: 1px solid #2a2a2a;
}

.legal-content h2 {
  font-size: 1.9rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  color: #d4af37;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: #b8b8b8;
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.legal-content ul {
  list-style: disc;
  margin-left: 2.25rem;
  margin-bottom: 1.25rem;
  color: #b8b8b8;
}

.legal-content li {
  margin-bottom: 0.75rem;
  line-height: 1.75;
}

.legal-content strong {
  color: #e8e8e8;
}

.legal-content a {
  color: #d4af37;
  text-decoration: none;
  transition: all 0.3s ease;
}

.legal-content a:hover {
  color: #b8941f;
}

@media (max-width: 768px) {
  .hero-inner h1 {
    font-size: 2.75rem;
  }

  .hero-lead {
    font-size: 1.15rem;
  }

  .section-container {
    padding: 0 1.5rem;
  }

  .hero-section,
  .page-header {
    padding: 4rem 1.5rem;
  }

  .intro-content h2,
  .section-title {
    font-size: 2.25rem;
  }

  .game-iframe {
    height: 500px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
  }

  .legal-content,
  .notice-box {
    padding: 2rem 1.5rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .site-footer {
    padding: 3rem 1.5rem;
  }
}
