* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.7;
  color: #2c2c2c;
  background: linear-gradient(to bottom, #f8f6f0, #e8e3d6);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.age-gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.4s ease;
}

.age-gate-overlay.show {
  display: flex;
}

@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

.age-gate-box {
  background: linear-gradient(135deg, #ffffff, #f5f1e8);
  padding: 3.5rem 3rem;
  border-radius: 10px;
  max-width: 550px;
  width: 90%;
  text-align: center;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
  border: 3px solid #d4af37;
  animation: slideInBox 0.5s ease;
}

@keyframes slideInBox {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.age-gate-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.age-gate-box h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 1.2rem;
}

.age-gate-box p {
  font-size: 1.05rem;
  color: #4a4a4a;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.age-gate-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-confirm, .btn-deny {
  padding: 1rem 2.8rem;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Lato', sans-serif;
}

.btn-confirm {
  background: #d4af37;
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-confirm:hover {
  background: #c19b2b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-deny {
  background: #6c757d;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-deny:hover {
  background: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 117, 125, 0.5);
}

.site-header {
  background: #1a1a1a;
  padding: 1.2rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container-header {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #d4af37;
  letter-spacing: 1px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
}

.mobile-toggle .bar {
  width: 28px;
  height: 3px;
  background: #d4af37;
  border-radius: 2px;
  transition: 0.3s;
}

.main-nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: #e8e3d6;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #d4af37;
}

.nav-link:hover::before {
  width: 100%;
}

.banner-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #3d3224 100%);
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15), transparent);
}

.banner-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.banner-title {
  font-size: 4rem;
  color: #d4af37;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.banner-tagline {
  font-size: 1.5rem;
  color: #e8e3d6;
  margin-bottom: 2.5rem;
  font-style: italic;
}

.btn-banner {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: #d4af37;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-banner:hover {
  background: #c19b2b;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-section {
  padding: 6rem 2rem;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-heading {
  font-size: 2.8rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.section-heading.centered {
  text-align: center;
}

.about-text p {
  font-size: 1.1rem;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.highlight-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f5f1e8, #e8e3d6);
  border-radius: 8px;
  border-left: 5px solid #d4af37;
}

.highlight-number {
  font-size: 3rem;
  font-weight: 900;
  color: #d4af37;
  font-family: 'Playfair Display', serif;
}

.highlight-text {
  font-size: 1.1rem;
  color: #4a4a4a;
  font-weight: 600;
}

.features-section {
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, #f8f6f0, #e8e3d6);
}

.features-layout {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.feature-box {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #d4af37;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-emblem {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
}

.feature-title {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.feature-desc {
  font-size: 1.05rem;
  color: #5a5a5a;
  line-height: 1.7;
}

.game-showcase {
  padding: 6rem 2rem;
  background: #ffffff;
}

.showcase-intro {
  text-align: center;
  font-size: 1.15rem;
  color: #5a5a5a;
  margin: 1rem auto 3rem;
  max-width: 700px;
}

.game-frame {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  border: 4px solid #d4af37;
}

.game-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.notices-section {
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, #f8f6f0, #e8e3d6);
}

.notices-wrapper {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.notice-card {
  padding: 2.5rem 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 6px solid;
}

.notice-card.red-accent {
  border-color: #dc3545;
}

.notice-card.blue-accent {
  border-color: #007bff;
}

.notice-card.gold-accent {
  border-color: #d4af37;
}

.notice-title {
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.notice-card p {
  font-size: 1.05rem;
  color: #4a4a4a;
  line-height: 1.7;
}

.content-area {
  padding: 6rem 2rem;
  background: #ffffff;
}

.content-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
}

.content-subheading {
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.split-half p {
  font-size: 1.08rem;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.divider-section {
  padding: 4rem 2rem;
  background: #1a1a1a;
}

.divider-content {
  text-align: center;
}

.divider-text {
  font-size: 1.15rem;
  color: #d4af37;
  font-style: italic;
  line-height: 1.8;
}

.play-header, .legal-header {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #3d3224 100%);
  text-align: center;
}

.page-title {
  font-size: 3.5rem;
  color: #d4af37;
  margin-bottom: 0.8rem;
}

.page-subtitle {
  font-size: 1.3rem;
  color: #e8e3d6;
  font-style: italic;
}

.legal-date {
  font-size: 1rem;
  color: #c0b8a0;
  font-style: italic;
}

.play-info {
  padding: 4rem 2rem;
  background: #ffffff;
}

.info-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem;
  background: linear-gradient(135deg, #f5f1e8, #e8e3d6);
  border-radius: 8px;
  border-left: 6px solid #d4af37;
}

.info-heading {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 1.2rem;
}

.info-box p {
  font-size: 1.08rem;
  color: #4a4a4a;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.play-game {
  padding: 3rem 2rem 6rem;
  background: #ffffff;
}

.game-frame-large {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  border: 4px solid #d4af37;
}

.game-frame-large iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.legal-body {
  padding: 4rem 2rem 6rem;
  background: #ffffff;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  font-size: 1.9rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.legal-section p {
  font-size: 1.08rem;
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.disclaimer-callout {
  padding: 2.5rem 2rem;
  margin: 2.5rem 0;
  border-radius: 8px;
  border-left: 6px solid;
}

.disclaimer-callout.gold-box {
  background: linear-gradient(135deg, #fffbf0, #f5f1e8);
  border-color: #d4af37;
}

.disclaimer-callout.red-box {
  background: linear-gradient(135deg, #fff5f5, #ffe5e5);
  border-color: #dc3545;
}

.disclaimer-callout.blue-box {
  background: linear-gradient(135deg, #f0f8ff, #e5f2ff);
  border-color: #007bff;
}

.disclaimer-callout h2 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.site-footer {
  background: #1a1a1a;
  color: #b0a992;
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-heading {
  color: #d4af37;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

.footer-text {
  font-size: 1.05rem;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #b0a992;
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d4af37;
}

.footer-legal {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #3a3a3a;
  color: #8a8a8a;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: #1a1a1a;
    flex-direction: column;
    padding: 2.5rem 2rem;
    gap: 2rem;
    transition: right 0.3s ease;
    border-left: 3px solid #d4af37;
    align-items: flex-start;
  }

  .main-nav.active {
    right: 0;
  }

  .banner-title {
    font-size: 2.8rem;
  }

  .banner-tagline {
    font-size: 1.2rem;
  }

  .section-heading {
    font-size: 2.2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .content-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .game-frame, .game-frame-large {
    aspect-ratio: 4 / 3;
  }
}
