@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
  --bg-deep: #1a0f0a;
  --bg-card: #2a1a10;
  --bg-warm: #3d2817;
  --gold: #d4a574;
  --gold-light: #e8c9a0;
  --copper: #b87333;
  --text-main: #f0e6dc;
  --text-muted: #a89080;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.75;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(26, 15, 10, 0.97);
  border-bottom: 2px solid var(--copper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 68px;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand svg { width: 34px; height: 34px; }

.main-nav { display: flex; list-style: none; gap: 1.8rem; }

.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.main-nav a:hover { color: var(--gold); }

.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

.menu-toggle.active span:first-child { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:last-child { transform: rotate(-45deg) translate(5px, -6px); }

/* Banner */
.banner {
  padding: 140px 3rem 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-warm) 100%);
  position: relative;
}

.banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-deep), transparent);
}

.banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.banner p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}

.btn-copper {
  display: inline-block;
  padding: 14px 42px;
  background: var(--copper);
  color: var(--bg-deep);
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background 0.3s, transform 0.2s;
  position: relative;
  z-index: 1;
}

.btn-copper:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

/* Cards Row */
.info-cards {
  display: flex;
  gap: 2rem;
  padding: 4rem 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.info-card {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  background: var(--bg-card);
  border: 1px solid rgba(184, 115, 51, 0.25);
  border-top: 4px solid var(--copper);
  padding: 2.5rem 2rem;
  text-align: center;
}

.info-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.info-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Game Area */
.game-area {
  padding: 4rem 2rem;
  text-align: center;
  background: var(--bg-warm);
}

.game-area h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.game-frame {
  max-width: 960px;
  margin: 0 auto;
  border: 3px solid var(--copper);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.game-frame iframe {
  width: 100%;
  height: 620px;
  border: none;
  display: block;
}

/* Two Column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 5rem 3rem;
}

.two-col .col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--copper);
  padding-bottom: 0.5rem;
}

.two-col .col p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* About Section */
.about-section {
  padding: 5rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(184, 115, 51, 0.2);
}

.about-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.about-section p {
  margin-bottom: 1.2rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Footer */
.bottom-bar {
  background: var(--bg-card);
  border-top: 2px solid var(--copper);
  padding: 2.5rem 2rem;
  text-align: center;
}

.bottom-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.bottom-links a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
}

.bottom-links a:hover { color: var(--gold-light); }

.bottom-bar p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* Age Overlay */
.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.age-dialog {
  background: var(--bg-card);
  border: 2px solid var(--copper);
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 420px;
  width: 90%;
  border-radius: 8px;
}

.age-dialog h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.age-dialog p { color: var(--text-muted); margin-bottom: 2rem; }

.age-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.age-actions button {
  padding: 12px 32px;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.age-actions .confirm {
  background: var(--copper);
  color: var(--bg-deep);
}

.age-actions .deny {
  background: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-muted);
}

.age-actions button:hover { opacity: 0.85; }

/* Inner pages */
.inner-wrap {
  padding: 120px 3rem 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.inner-wrap h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: var(--gold-light);
  margin-bottom: 2rem;
}

.inner-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 2rem 0 0.8rem;
}

.inner-wrap p, .inner-wrap li {
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  font-size: 1.02rem;
}

.inner-wrap ul { padding-left: 1.5rem; margin-bottom: 1.5rem; }

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: var(--bg-deep);
    flex-direction: column;
    padding: 90px 2rem 2rem;
    transition: left 0.4s;
    border-right: 2px solid var(--copper);
  }

  .main-nav.open { left: 0; }

  .banner h1 { font-size: 2.2rem; }
  .info-cards { flex-direction: column; padding: 3rem 1.5rem; }
  .two-col { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .game-frame iframe { height: 400px; }
  .inner-wrap { padding: 100px 1.5rem 60px; }
}
