@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Lato:wght@300;400;700&display=swap');

:root {
  --gold: #c9a84c;
  --gold-light: #f0d78c;
  --cream: #faf6ed;
  --dark: #1a1510;
  --card-bg: #ffffff;
  --text-body: #4a4238;
  --text-light: #8a7e6f;
  --border: #e8dcc8;
  --hero-gradient: linear-gradient(180deg, #1a1510 0%, #2d2518 60%, #3a2f20 100%);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--text-body); line-height: 1.8; }
h1,h2,h3 { font-family: 'Playfair Display', serif; }
a { color: var(--gold); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--dark); }

/* TOP BAR */
.topbar {
  position: fixed; top:0; left:0; width:100%; z-index:1000;
  background: rgba(26,21,16,0.95); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 72px; border-bottom: 2px solid var(--gold);
}
.topbar-brand {
  font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.5rem;
  color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
}
.topbar-nav { display: flex; gap: 2rem; list-style: none; }
.topbar-nav a { color: #ccc; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; }
.topbar-nav a:hover { color: var(--gold); }
.burger-btn { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.burger-btn span { width: 28px; height: 2px; background: var(--gold); display: block; transition: 0.3s; }

/* HERO BANNER */
.hero-banner {
  min-height: 100vh; background: var(--hero-gradient); display: flex;
  align-items: center; justify-content: center; text-align: center;
  padding: 100px 2rem 80px; position: relative;
}
.hero-banner::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 120px;
  background: linear-gradient(transparent, var(--cream));
}
.hero-inner { position: relative; z-index: 2; max-width: 700px; }
.hero-inner h1 { font-size: 3.5rem; color: var(--gold-light); margin-bottom: 1.2rem; line-height: 1.2; }
.hero-inner p { color: #b8a88a; font-size: 1.1rem; margin-bottom: 2.5rem; }
.btn-gold {
  display: inline-block; padding: 16px 48px; background: var(--gold);
  color: var(--dark); font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; font-size: 0.85rem; border-radius: 4px;
  transition: 0.3s; border: 2px solid var(--gold);
}
.btn-gold:hover { background: transparent; color: var(--gold); }

/* DISCLAIMER STRIP */
.disclaimer-strip {
  background: var(--dark); color: var(--gold-light); text-align: center;
  padding: 2rem; display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.disclaimer-strip .strip-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; }
.disclaimer-strip .strip-icon { font-size: 1.4rem; }

/* CONTENT WRAPPER */
.content-wrap { max-width: 1140px; margin: 0 auto; padding: 60px 2rem; }

/* ABOUT COLUMNS */
.about-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.about-cols h2 { font-size: 2rem; margin-bottom: 1rem; color: var(--dark); }
.about-cols p { color: var(--text-light); font-size: 0.95rem; }
.about-image {
  background: linear-gradient(135deg, var(--gold) 0%, #8a6d20 100%);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 5rem; min-height: 300px;
}

/* GAME AREA */
.game-area {
  background: var(--dark); border-radius: 12px; padding: 3rem;
  margin-bottom: 4rem; text-align: center;
}
.game-area h2 { color: var(--gold-light); font-size: 2rem; margin-bottom: 1rem; }
.game-area p { color: #b8a88a; margin-bottom: 2rem; }
.game-frame {
  width: 100%; max-width: 900px; margin: 0 auto;
  border: 3px solid var(--gold); border-radius: 8px; overflow: hidden;
}
.game-frame iframe { width: 100%; height: 580px; border: none; display: block; }

/* FEATURES BOXES */
.features-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-bottom: 4rem; }
.feat-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 8px;
  padding: 2rem; text-align: center; transition: 0.3s;
}
.feat-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.feat-card .fc-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.feat-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--dark); }
.feat-card p { font-size: 0.85rem; color: var(--text-light); }

/* FOOTER */
.site-footer {
  background: var(--dark); border-top: 3px solid var(--gold);
  padding: 3rem 2rem; text-align: center;
}
.ft-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.ft-links a { color: #b8a88a; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.ft-links a:hover { color: var(--gold); }
.ft-copy { color: #6b5f4f; font-size: 0.8rem; }

/* AGE GATE */
.age-gate { position: fixed; inset:0; background: rgba(0,0,0,0.9); display: flex; align-items: center; justify-content: center; z-index: 9999; }
.age-gate.hidden { display: none; }
.age-dialog {
  background: var(--dark); border: 2px solid var(--gold); border-radius: 12px;
  padding: 3rem; text-align: center; max-width: 440px; width: 90%;
}
.age-dialog h2 { color: var(--gold); font-size: 1.6rem; margin-bottom: 1rem; }
.age-dialog p { color: #b8a88a; margin-bottom: 2rem; font-size: 0.95rem; }
.age-dialog .btns { display: flex; gap: 1rem; justify-content: center; }
.age-dialog .btn-confirm {
  padding: 12px 36px; background: var(--gold); color: var(--dark);
  border: none; cursor: pointer; font-weight: 700; font-size: 0.95rem; border-radius: 4px;
  font-family: 'Playfair Display', serif; transition: 0.3s;
}
.age-dialog .btn-confirm:hover { background: var(--gold-light); }
.age-dialog .btn-deny {
  padding: 12px 36px; background: transparent; color: #888;
  border: 1px solid #555; cursor: pointer; font-size: 0.95rem; border-radius: 4px;
  font-family: 'Playfair Display', serif; transition: 0.3s;
}
.age-dialog .btn-deny:hover { border-color: #c44; color: #c44; }

/* INNER PAGES */
.inner-page { max-width: 880px; margin: 0 auto; padding: 120px 2rem 80px; }
.inner-page h1 { font-size: 2.6rem; margin-bottom: 1.5rem; color: var(--dark); }
.inner-page h2 { font-size: 1.3rem; margin: 2rem 0 0.8rem; color: var(--dark); }
.inner-page p { color: var(--text-light); margin-bottom: 1rem; }
.inner-page ul { margin: 1rem 0 1rem 1.5rem; color: var(--text-light); }
.inner-page li { margin-bottom: 0.5rem; }

/* MOBILE */
@media (max-width: 768px) {
  .burger-btn { display: flex; }
  .topbar-nav {
    position: fixed; top: 72px; left: -100%; width: 75%; height: calc(100vh - 72px);
    background: rgba(26,21,16,0.98); flex-direction: column; padding: 2rem;
    transition: left 0.3s;
  }
  .topbar-nav.open { left: 0; }
  .topbar { padding: 0 1.5rem; }
  .hero-inner h1 { font-size: 2.2rem; }
  .about-cols { grid-template-columns: 1fr; }
  .features-row { grid-template-columns: 1fr 1fr; }
  .game-frame iframe { height: 380px; }
  .disclaimer-strip { flex-direction: column; gap: 1rem; align-items: center; }
}
@media (max-width: 480px) {
  .features-row { grid-template-columns: 1fr; }
}
