@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;800&family=Lato:wght@300;400;700&display=swap');

:root {
  --bg-deep: #0a1628;
  --bg-card: #12243d;
  --gold: #d4a843;
  --gold-light: #f0d078;
  --cream: #faf5e8;
  --text-main: #e8e0d0;
  --text-dim: #9a9080;
  --border-gold: rgba(212,168,67,0.3);
  --navy: #162d50;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.75;
}

header {
  background: linear-gradient(180deg, #0d1e38 0%, var(--bg-deep) 100%);
  border-bottom: 2px solid var(--border-gold);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 2px;
}

.logo svg {
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin-right: 8px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

nav ul li a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--gold-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

main { margin-top: 68px; }

.banner {
  position: relative;
  padding: 6rem 3rem 5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--bg-deep) 50%, #1a0f2e 100%);
  overflow: hidden;
}

.banner::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212,168,67,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.banner p {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-btn {
  display: inline-block;
  padding: 14px 50px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.cta-btn:hover {
  background: var(--gold);
  color: var(--bg-deep);
}

.info-strip {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--navy);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.info-strip .strip-item {
  flex: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border-gold);
}

.info-strip .strip-item:last-child { border-right: none; }

.info-strip .strip-item .icon { font-size: 1.8rem; margin-bottom: 0.5rem; }

.info-strip .strip-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.info-strip .strip-item p {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.game-area {
  padding: 4rem 2rem;
  text-align: center;
  background: var(--bg-deep);
}

.game-area h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 2rem;
}

.game-frame {
  max-width: 900px;
  margin: 0 auto;
  border: 2px solid var(--border-gold);
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.game-frame iframe {
  width: 100%;
  height: 580px;
  border: none;
  display: block;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 100%;
}

.two-col .col-block {
  padding: 4rem 3rem;
}

.two-col .col-block:first-child {
  background: var(--bg-card);
  border-right: 1px solid var(--border-gold);
}

.two-col .col-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.two-col .col-block p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

.content-page {
  padding: 4rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.content-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-gold);
  padding-bottom: 1rem;
}

.content-page h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 2.5rem 0 0.8rem;
}

.content-page p {
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.elegant-list {
  list-style: none;
  padding: 0;
}

.elegant-list li {
  padding: 0.7rem 0;
  color: var(--text-dim);
  border-bottom: 1px solid rgba(212,168,67,0.15);
  padding-left: 1.5rem;
  position: relative;
}

.elegant-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.play-info {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.play-info h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.play-info p {
  color: var(--text-dim);
  font-size: 0.9rem;
}

footer {
  background: #08111f;
  border-top: 2px solid var(--border-gold);
  padding: 3rem 2rem 1.5rem;
  text-align: center;
}

footer .resp-links {
  margin-bottom: 1.5rem;
}

footer .resp-links h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
}

footer .resp-links a {
  color: var(--text-dim);
  text-decoration: none;
  margin: 0 1.2rem;
  font-size: 0.85rem;
  transition: color 0.3s;
}

footer .resp-links a:hover { color: var(--gold-light); }

footer .copy-text {
  color: var(--text-dim);
  font-size: 0.75rem;
  opacity: 0.7;
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-gate.hidden { display: none; }

.age-dialog {
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 440px;
  width: 90%;
}

.age-dialog h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.age-dialog p {
  color: var(--text-dim);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.age-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.age-actions button {
  padding: 10px 34px;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s;
}

.age-actions .yes-btn {
  background: var(--gold);
  color: var(--bg-deep);
}

.age-actions .no-btn {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border-gold);
}

.age-actions button:hover { transform: scale(1.05); }

.denied-text {
  color: #e04040;
  font-family: 'Playfair Display', serif;
  margin-top: 1rem;
  display: none;
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  nav {
    position: fixed;
    top: 0; right: -100%;
    width: 260px;
    height: 100vh;
    background: #0d1e38;
    padding: 80px 2rem 2rem;
    transition: right 0.3s;
    z-index: 1050;
    border-left: 1px solid var(--border-gold);
  }

  nav.open { right: 0; }
  nav ul { flex-direction: column; gap: 1.5rem; }

  .banner { padding: 4rem 1.5rem 3rem; }
  .banner h1 { font-size: 2rem; }

  .info-strip { flex-direction: column; }
  .info-strip .strip-item { border-right: none; border-bottom: 1px solid var(--border-gold); }
  .info-strip .strip-item:last-child { border-bottom: none; }

  .two-col { grid-template-columns: 1fr; }
  .two-col .col-block:first-child { border-right: none; border-bottom: 1px solid var(--border-gold); }

  .game-frame iframe { height: 380px; }
  .content-page { padding: 2rem 1.5rem; }
}
