@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@400;700;900&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --noir: #0e0a0d;
  --burgundy: #5c1a2a;
  --crimson: #c0392b;
  --gold: #d4af37;
  --ivory: #f5f0e8;
  --text: #e8ddd0;
  --muted: #9a8c7e;
  --card-bg: rgba(92,26,42,0.12);
  --line: rgba(212,175,55,0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--noir);
  color: var(--text);
  line-height: 1.75;
}

h1, h2, h3 { font-family: 'Bodoni Moda', serif; }

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--crimson); }

/* HEADER */
.main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 62px;
  background: linear-gradient(180deg, rgba(14,10,13,0.98), rgba(14,10,13,0.9));
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  border-bottom: 1px solid var(--line);
}

.logo-text {
  font-family: 'Bodoni Moda', serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
}

.logo-text span {
  color: var(--crimson);
}

.desk-nav { display: flex; gap: 1.8rem; list-style: none; }
.desk-nav a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.desk-nav a:hover { color: var(--gold); }

.nav-burger {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 5px 9px;
  cursor: pointer;
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}

.overlay-nav {
  display: none;
  position: fixed;
  top: 62px; left: 0; right: 0; bottom: 0;
  background: rgba(14,10,13,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.overlay-nav.open { display: flex; }
.overlay-nav a {
  color: var(--ivory);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .desk-nav { display: none; }
  .nav-burger { display: block; }
}

/* HERO - asymmetric */
.hero-split {
  margin-top: 62px;
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 85vh;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  color: var(--ivory);
}

.hero-content h1 span { color: var(--crimson); }

.hero-content p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero-aside {
  background: linear-gradient(180deg, var(--burgundy), var(--noir));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-circle {
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
}

@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-content { padding: 3rem 1.5rem; }
  .hero-aside { min-height: 180px; }
}

.btn-luxe {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
}
.btn-luxe:hover {
  background: var(--gold);
  color: var(--noir);
}

/* BADGES */
.badge-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem;
  background: var(--burgundy);
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ivory);
  font-weight: 600;
  font-size: 0.88rem;
}

.badge-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* GAME */
.roulette-section {
  padding: 4rem 2rem;
  text-align: center;
}

.roulette-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.roulette-section .tagline { color: var(--muted); margin-bottom: 2rem; }

.game-panel {
  max-width: 960px;
  margin: 0 auto;
  border: 2px solid var(--line);
  overflow: hidden;
  background: rgba(14,10,13,0.5);
  box-shadow: 0 0 40px rgba(192,57,43,0.1);
}

.game-panel iframe { width: 100%; height: 600px; border: none; display: block; }

@media (max-width: 768px) {
  .game-panel iframe { height: 380px; }
}

/* PILLARS */
.pillars {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .pillars { grid-template-columns: 1fr; }
}

.pillar {
  background: var(--card-bg);
  border: 1px solid var(--line);
  padding: 2rem;
  text-align: center;
}

.pillar .p-icon { font-size: 2rem; margin-bottom: 1rem; }
.pillar h3 { font-size: 1.1rem; margin-bottom: 0.7rem; color: var(--gold); }
.pillar p { color: var(--muted); font-size: 0.92rem; }

/* NARRATIVE */
.narrative {
  padding: 4rem 2rem;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.narrative h2 { font-size: 1.8rem; margin-bottom: 1.5rem; color: var(--crimson); }
.narrative p { color: var(--muted); margin-bottom: 1.2rem; font-size: 1rem; }

/* PAGES */
.page-main {
  margin-top: 62px;
  padding: 3rem 2rem;
  max-width: 880px;
  margin-left: auto; margin-right: auto;
  min-height: calc(100vh - 62px - 160px);
}

.page-main h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; color: var(--ivory); }
.page-main h2 { font-size: 1.2rem; margin: 2rem 0 0.7rem; color: var(--gold); }
.page-main p { color: var(--muted); margin-bottom: 1rem; font-size: 0.98rem; }
.page-main ul, .page-main ol { margin: 0.5rem 0 1.2rem 1.5rem; color: var(--muted); }
.page-main li { margin-bottom: 0.4rem; }

.play-tip {
  background: var(--card-bg);
  border: 1px solid var(--line);
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 960px;
}
.play-tip h3 { color: var(--gold); margin-bottom: 0.4rem; font-size: 0.95rem; }
.play-tip p { color: var(--muted); font-size: 0.9rem; }

/* FOOTER */
.site-bottom {
  background: rgba(92,26,42,0.15);
  border-top: 1px solid var(--line);
  padding: 2.5rem 2rem;
  text-align: center;
}

.bottom-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.bottom-nav a { color: var(--muted); font-size: 0.85rem; }
.bottom-nav a:hover { color: var(--gold); }

.bottom-resp {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.2rem;
}
.bottom-resp p { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin-bottom: 0.5rem; }
.bottom-resp a { color: var(--gold); margin: 0 0.4rem; font-size: 0.8rem; }

/* AGE */
.age-curtain {
  position: fixed; inset: 0;
  background: rgba(14,10,13,0.97);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-prompt {
  background: var(--burgundy);
  border: 2px solid var(--gold);
  padding: 2.5rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.age-prompt h2 { font-size: 1.4rem; color: var(--gold); margin-bottom: 0.7rem; }
.age-prompt p { color: var(--text); margin-bottom: 1.5rem; font-size: 0.9rem; opacity: 0.8; }

.age-act { display: flex; gap: 0.8rem; justify-content: center; }
.age-act button {
  padding: 0.6rem 1.8rem;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  border: 2px solid var(--gold);
  transition: all 0.3s;
  font-family: 'Manrope', sans-serif;
}

.btn-enter { background: var(--gold); color: var(--noir); }
.btn-enter:hover { background: #e6c445; }
.btn-leave { background: transparent; color: var(--gold); }
.btn-leave:hover { background: rgba(212,175,55,0.1); }

.denied-screen {
  position: fixed; inset: 0;
  background: var(--noir);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.denied-screen h2 { color: var(--crimson); font-size: 1.8rem; margin-bottom: 1rem; }
.denied-screen p { color: var(--muted); }
