@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;900&family=Roboto:wght@300;400;500&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --emerald: #00c853;
  --emerald-dim: #009e3d;
  --teal: #00897b;
  --bg: #0a1a0f;
  --bg-sec: #0f2516;
  --surface: #132e1a;
  --text: #dceee0;
  --muted: #7fa888;
  --glow: rgba(0, 200, 83, 0.12);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; }
a { color: var(--emerald); text-decoration: none; transition: 0.25s; }
a:hover { color: #fff; }

/* HEADER - Centered layout */
.header {
  position: fixed; top: 0; width: 100%; z-index: 900;
  background: rgba(10, 26, 15, 0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glow);
  height: 68px;
  display: flex; align-items: center;
  padding: 0 2rem;
}
.header-inner {
  width: 100%; max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.site-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 1.6rem;
  color: var(--emerald);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.nav-list { display: flex; gap: 2rem; list-style: none; }
.nav-list a { color: var(--muted); font-weight: 500; font-size: 0.92rem; }
.nav-list a:hover { color: var(--emerald); }

.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
}
.mobile-toggle span {
  display: block; width: 28px; height: 3px; background: var(--emerald);
  margin: 5px 0; border-radius: 3px; transition: 0.3s;
}

/* HERO - Left aligned with side accent */
.splash {
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(160deg, var(--bg) 0%, #0a2818 60%, var(--bg) 100%);
  padding: 100px 2rem 60px;
}
.splash-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.splash-text h1 {
  font-size: 3.2rem; font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem;
}
.splash-text h1 em { font-style: normal; color: var(--emerald); }
.splash-text p { font-size: 1.1rem; color: var(--muted); margin-bottom: 2rem; max-width: 500px; }
.play-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 38px;
  background: var(--emerald); color: var(--bg);
  font-weight: 700; border-radius: 6px; font-size: 1rem;
  transition: 0.3s;
}
.play-btn:hover { background: #fff; color: var(--bg); transform: translateY(-2px); }

.splash-visual {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--glow);
  padding: 3rem;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.splash-visual .badge { font-size: 3rem; margin-bottom: 1rem; }
.splash-visual h3 { color: var(--emerald); margin-bottom: 0.5rem; }
.splash-visual p { color: var(--muted); font-size: 0.9rem; }

/* RULES STRIP */
.rules-strip {
  display: flex; gap: 0; flex-wrap: wrap;
  border-top: 1px solid var(--glow);
  border-bottom: 1px solid var(--glow);
}
.rule-item {
  flex: 1; min-width: 250px;
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--bg-sec);
  border-right: 1px solid var(--glow);
}
.rule-item:last-child { border-right: none; }
.rule-item .num { font-family: 'Montserrat'; font-size: 2rem; font-weight: 900; color: var(--emerald); }
.rule-item h3 { margin: 0.5rem 0; font-size: 1.05rem; }
.rule-item p { color: var(--muted); font-size: 0.9rem; }

/* GAME SECTION */
.game-section {
  padding: 80px 2rem;
  background: var(--bg);
}
.game-section h2 { text-align: center; font-size: 2.2rem; margin-bottom: 0.6rem; font-weight: 900; }
.game-section .lead { text-align: center; color: var(--muted); max-width: 560px; margin: 0 auto 2.5rem; }
.game-container {
  max-width: 940px; margin: 0 auto;
  border: 2px solid rgba(0,200,83,0.15);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 0 50px rgba(0,200,83,0.06);
}
.game-container iframe { width: 100%; height: 580px; border: none; background: #000; }

/* WHY US */
.why-section {
  padding: 80px 2rem;
  background: var(--bg-sec);
}
.why-section h2 { text-align: center; font-size: 2rem; margin-bottom: 2.5rem; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  max-width: 1100px; margin: 0 auto;
}
.why-card {
  background: var(--surface);
  padding: 2rem; border-radius: 12px;
  border-top: 3px solid var(--emerald);
}
.why-card h3 { color: var(--emerald); margin-bottom: 0.5rem; font-size: 1.1rem; }
.why-card p { color: var(--muted); font-size: 0.93rem; }

/* FOOTER */
.page-footer {
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 1px solid var(--glow);
  background: var(--bg);
}
.gambling-links { margin-bottom: 1rem; }
.gambling-links a { color: var(--muted); margin: 0 1rem; font-size: 0.88rem; }
.gambling-links a:hover { color: var(--emerald); }
.copyright { color: var(--muted); font-size: 0.82rem; }

/* AGE CHECK */
.age-screen {
  position: fixed; inset: 0; background: rgba(0,0,0,0.93);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
}
.age-card {
  background: var(--surface);
  border: 2px solid var(--emerald);
  border-radius: 18px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 430px; width: 92%;
}
.age-card h2 { color: var(--emerald); margin-bottom: 0.6rem; }
.age-card p { color: var(--muted); margin-bottom: 2rem; }
.age-btns { display: flex; gap: 1rem; justify-content: center; }
.age-btns button {
  padding: 12px 32px; border-radius: 6px; font-weight: 700;
  cursor: pointer; border: 2px solid var(--emerald); font-size: 0.95rem;
  transition: 0.3s;
}
.accept-btn { background: var(--emerald); color: var(--bg); }
.accept-btn:hover { background: #fff; }
.reject-btn { background: transparent; color: var(--emerald); }
.reject-btn:hover { background: rgba(0,200,83,0.08); }
.vanish { display: none !important; }

/* TEXT PAGES */
.content-area {
  max-width: 880px; margin: 0 auto; padding: 110px 2rem 80px;
}
.content-area h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 1.5rem; color: var(--emerald); }
.content-area h2 { font-size: 1.4rem; margin: 2rem 0 0.8rem; color: var(--teal); }
.content-area p { color: var(--muted); margin-bottom: 1rem; }
.content-area ul { color: var(--muted); margin: 1rem 0 1rem 1.5rem; }
.content-area li { margin-bottom: 0.5rem; }

@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .nav-list {
    position: fixed; top: 68px; left: 0; width: 100%;
    background: rgba(10, 26, 15, 0.98);
    flex-direction: column; padding: 2rem; gap: 1rem;
    transform: translateY(-120%); transition: 0.3s;
  }
  .nav-list.show { transform: translateY(0); }
  .splash-inner { grid-template-columns: 1fr; gap: 2rem; }
  .splash-text h1 { font-size: 2rem; }
  .why-grid { grid-template-columns: 1fr; }
  .rules-strip { flex-direction: column; }
  .game-container iframe { height: 380px; }
}
