@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Nunito+Sans:wght@300;400;600;700&display=swap');

:root {
  --sand: #e8c97a;
  --sand-dark: #c49b3e;
  --midnight: #0e1628;
  --navy: #152040;
  --teal: #1abc9c;
  --ruby: #c0392b;
  --text-cream: #f2e8d0;
  --text-faded: #a89b80;
  --overlay-bg: rgba(14, 22, 40, 0.95);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--midnight);
  color: var(--text-cream);
  line-height: 1.75;
}

h1, h2, h3, h4 { font-family: 'Cinzel', serif; }

a { color: var(--teal); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--sand); }

.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 64px;
  background: rgba(14, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  border-bottom: 1px solid rgba(232, 201, 122, 0.2);
}

.site-brand {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--sand);
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-brand svg { width: 32px; height: 32px; }

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

.nav-list a {
  color: var(--text-faded);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-list a:hover, .nav-list a.here { color: var(--sand); }

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.burger-btn span {
  width: 24px; height: 2.5px;
  background: var(--sand);
  border-radius: 2px;
  transition: 0.3s;
}

.burger-btn.on span:first-child { transform: rotate(45deg) translate(4px, 5px); }
.burger-btn.on span:nth-child(2) { opacity: 0; }
.burger-btn.on span:last-child { transform: rotate(-45deg) translate(4px, -5px); }

main { padding-top: 64px; }

/* Full-width stacked hero */
.desert-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 4%;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(232, 201, 122, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(26, 188, 156, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy), var(--midnight));
}

.desert-hero h1 {
  font-size: 3.4rem;
  color: var(--sand);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(232, 201, 122, 0.2);
}

.desert-hero p {
  font-size: 1.15rem;
  color: var(--text-faded);
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.sand-btn {
  display: inline-block;
  padding: 14px 48px;
  background: linear-gradient(135deg, var(--sand-dark), var(--sand));
  color: var(--midnight);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: 0.3s;
}

.sand-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232, 201, 122, 0.25);
  color: var(--midnight);
}

.alert-strip {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 4%;
  background: rgba(232, 201, 122, 0.04);
  border-top: 1px solid rgba(232, 201, 122, 0.12);
  border-bottom: 1px solid rgba(232, 201, 122, 0.12);
}

.alert-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--teal);
}

.alert-item .ai { font-size: 1.3rem; }

.play-zone {
  padding: 4rem 4%;
  text-align: center;
}

.play-zone h2 {
  font-size: 2rem;
  color: var(--sand);
  margin-bottom: 1.5rem;
}

.game-container {
  max-width: 980px;
  margin: 0 auto;
  border: 2px solid rgba(232, 201, 122, 0.25);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}

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

/* Two-column info */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 4rem 4%;
  max-width: 1200px;
  margin: 0 auto;
}

.col-box {
  background: rgba(232, 201, 122, 0.04);
  border: 1px solid rgba(232, 201, 122, 0.12);
  border-radius: 10px;
  padding: 2.5rem;
}

.col-box h3 {
  font-size: 1.3rem;
  color: var(--sand);
  margin-bottom: 1rem;
}

.col-box p { color: var(--text-faded); }

/* Single-column prose */
.article-block {
  max-width: 880px;
  margin: 0 auto;
  padding: 3rem 4%;
}

.article-block h2 {
  font-size: 1.8rem;
  color: var(--sand);
  text-align: center;
  margin-bottom: 1.5rem;
}

.article-block p { color: var(--text-faded); margin-bottom: 1rem; }

/* Content pages */
.pg-header {
  padding: 6rem 4% 3rem;
  text-align: center;
  background: linear-gradient(180deg, var(--navy), var(--midnight));
}

.pg-header h1 { font-size: 2.5rem; color: var(--sand); }

.pg-body {
  max-width: 880px;
  margin: 0 auto;
  padding: 3rem 4%;
}

.pg-body h2 {
  font-size: 1.4rem;
  color: var(--sand);
  margin: 2rem 0 0.8rem;
}

.pg-body p, .pg-body li {
  color: var(--text-faded);
  margin-bottom: 0.7rem;
}

.pg-body ul { padding-left: 1.5rem; margin-bottom: 1rem; }

/* Footer */
.bottom-bar {
  background: #080d1a;
  border-top: 1px solid rgba(232, 201, 122, 0.15);
  padding: 3rem 4% 1.5rem;
  text-align: center;
}

.bottom-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.bottom-links a { color: var(--text-faded); font-size: 0.9rem; }
.bottom-links a:hover { color: var(--sand); }

.resp-gambling {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(232, 201, 122, 0.1);
}

.resp-gambling p { font-size: 0.8rem; color: var(--text-faded); margin-bottom: 0.5rem; }
.resp-gambling a { margin: 0 0.5rem; }

/* Age gate */
.age-wall {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--overlay-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-panel {
  background: var(--navy);
  border: 2px solid var(--sand-dark);
  border-radius: 14px;
  padding: 3rem;
  text-align: center;
  max-width: 430px;
  width: 92%;
}

.age-panel h2 { font-size: 1.5rem; color: var(--sand); margin-bottom: 1rem; }
.age-panel p { color: var(--text-faded); margin-bottom: 2rem; }

.age-btns { display: flex; gap: 1rem; justify-content: center; }

.age-btns button {
  padding: 11px 32px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.age-ok {
  background: linear-gradient(135deg, var(--sand-dark), var(--sand));
  color: var(--midnight);
}

.age-nope {
  background: transparent;
  border: 2px solid var(--text-faded) !important;
  color: var(--text-faded);
}

.age-btns button:hover { transform: scale(1.05); }

.block-notice {
  color: var(--ruby);
  font-weight: 700;
  margin-top: 1rem;
  display: none;
}

@media (max-width: 768px) {
  .burger-btn { display: flex; }
  .nav-list {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(14, 22, 40, 0.98);
    padding: 1.5rem 4%;
    gap: 1rem;
    border-bottom: 1px solid rgba(232, 201, 122, 0.2);
  }
  .nav-list.show { display: flex; }
  .desert-hero h1 { font-size: 2.2rem; }
  .two-col { grid-template-columns: 1fr; }
  .game-container iframe { height: 380px; }
  .alert-strip { flex-direction: column; align-items: center; gap: 0.8rem; }
}
