* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #e0e0e0;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.main-nav {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #d4af37;
  text-decoration: none;
}

.logo-icon {
  font-size: 2rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #d4af37;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 3px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: #d4af37;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Age Verification Modal */
.age-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.age-modal.show {
  display: flex;
}

.age-modal-content {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  max-width: 500px;
  border: 3px solid #d4af37;
  box-shadow: 0 10px 50px rgba(212, 175, 55, 0.5);
}

.age-modal-content h2 {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.age-modal-content p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn-yes, .btn-no {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-yes {
  background: #d4af37;
  color: #1a1a1a;
}

.btn-yes:hover {
  background: #f0c544;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.btn-no {
  background: #666;
  color: #fff;
}

.btn-no:hover {
  background: #888;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  padding: 6rem 20px;
  text-align: center;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #d4af37;
  margin-bottom: 1rem;
  font-weight: 900;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: #b0b0b0;
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: #d4af37;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
  background: #f0c544;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

/* Content Sections */
section {
  padding: 4rem 0;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-intro {
  text-align: center;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #b0b0b0;
}

.intro-section {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* Notice Cards */
.notice-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.notice-card {
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid #d4af37;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.notice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.notice-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.notice-card h3 {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Game Section */
.game-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border: 3px solid #d4af37;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.game-frame {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

.play-link {
  display: inline-block;
  margin-top: 2rem;
  color: #d4af37;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.play-link:hover {
  color: #f0c544;
  transform: translateX(5px);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* Community Section */
.community-section {
  background: rgba(212, 175, 55, 0.05);
  text-align: center;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #d4af37;
  font-weight: 900;
}

.stat-label {
  font-size: 1.1rem;
  color: #b0b0b0;
  margin-top: 0.5rem;
}

/* Play Page */
.play-page {
  padding: 4rem 0;
  min-height: calc(100vh - 400px);
}

.page-intro {
  text-align: center;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #b0b0b0;
}

.game-info {
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid #d4af37;
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 1000px;
  border-radius: 8px;
}

.game-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto;
  border: 3px solid #d4af37;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.game-iframe {
  width: 100%;
  height: 700px;
  border: none;
  display: block;
}

.play-notice {
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid #d4af37;
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 1000px;
  border-radius: 8px;
  text-align: center;
  font-size: 1.1rem;
}

/* Content Pages */
.content-page {
  padding: 4rem 0;
  min-height: calc(100vh - 400px);
}

.content-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 1rem;
  text-align: center;
}

.last-updated {
  text-align: center;
  color: #888;
  font-style: italic;
  margin-bottom: 3rem;
}

.terms-section {
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.terms-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #d4af37;
  margin-bottom: 1rem;
  text-align: left;
}

.terms-section ul {
  margin-left: 2rem;
  margin-top: 1rem;
}

.terms-section li {
  margin-bottom: 0.5rem;
}

.disclaimer-highlight {
  background: rgba(212, 175, 55, 0.1);
  border: 3px solid #d4af37;
  padding: 2rem;
  margin-bottom: 3rem;
  border-radius: 12px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer-highlight h2 {
  text-align: left;
  margin-bottom: 1rem;
}

.disclaimer-highlight ul {
  margin-left: 2rem;
  margin-top: 1rem;
}

/* Footer */
.main-footer {
  background: rgba(0, 0, 0, 0.9);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
  border-top: 3px solid #d4af37;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #d4af37;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  color: #888;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
    gap: 0;
    border-top: 2px solid #d4af37;
  }

  .nav-menu li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  h2 {
    font-size: 2rem;
  }

  .notice-cards {
    grid-template-columns: 1fr;
  }

  .game-frame, .game-iframe {
    height: 400px;
  }

  .stats {
    gap: 2rem;
  }

  .age-modal-content {
    margin: 20px;
    padding: 2rem;
  }

  .age-buttons {
    flex-direction: column;
  }

  .content-page h1 {
    font-size: 2rem;
  }
}
