@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Work+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --slate: #1b2838;
  --slate-light: #263545;
  --orange: #ff7043;
  --orange-light: #ffab91;
  --sky: #4fc3f7;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --text: #333;
  --text-muted: #6b7c8d;
  --border: #e2e8f0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Work Sans', sans-serif;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.75;
}

h1, h2, h3 { font-family: 'Archivo Black', sans-serif; }

a { color: var(--orange); text-decoration: none; transition: color 0.3s; }
a:hover { color: #e64a19; }

.top-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 60px;
  background: var(--slate);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.m-logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.3rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.top-links { display: flex; gap: 1.5rem; list-style: none; }
.top-links a { color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.top-links a:hover { color: var(--orange); }

.m-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.m-burger span { width: 26px; height: 2px; background: var(--orange); display: block; }

.m-mobile-nav {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: var(--slate);
  z-index: 999;
  flex-direction: column;
  padding: 1rem 2rem;
}
.m-mobile-nav.open { display: flex; }
.m-mobile-nav a { color: #fff; padding: 0.7rem 0; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.05); }

@media (max-width: 768px) {
  .top-links { display: none; }
  .m-burger { display: flex; }
}

.hero-wide {
  margin-top: 60px;
  background: linear-gradient(135deg, var(--slate), var(--slate-light));
  padding: 5rem 2rem;
  text-align: center;
  color: var(--white);
}

.hero-wide h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  color: var(--orange);
}

.hero-wide p { max-width: 660px; margin: 0 auto 2rem; opacity: 0.85; font-size: 1.05rem; }

.btn-bold {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}
.btn-bold:hover { background: #e64a19; transform: translateY(-2px); color: var(--white); }

.status-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  flex-wrap: wrap;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--slate);
}

.status-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.s-red { background: #e53935; }
.s-green { background: #43a047; }
.s-amber { background: #fb8c00; }

.game-zone {
  padding: 3rem 2rem;
  text-align: center;
  background: var(--off-white);
}

.game-zone h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1.5rem; color: var(--slate); }

.game-player {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  background: var(--white);
}

.game-player iframe { width: 100%; height: 580px; border: none; display: block; }

@media (max-width: 768px) { .game-player iframe { height: 380px; } }

.card-row {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.m-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.m-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.08); transform: translateY(-3px); }

.m-card .ic { font-size: 2.5rem; margin-bottom: 0.8rem; }
.m-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--slate); }
.m-card p { color: var(--text-muted); font-size: 0.92rem; }

.story-section {
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.story-section h2 { font-size: 1.6rem; margin-bottom: 1.2rem; color: var(--slate); text-align: center; }
.story-section p { color: var(--text-muted); margin-bottom: 1rem; font-size: 1rem; }

.pg-body {
  margin-top: 60px;
  padding: 3rem 2rem;
  max-width: 880px;
  margin-left: auto; margin-right: auto;
  min-height: calc(100vh - 60px - 140px);
}
.pg-body h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: 1rem; color: var(--slate); }
.pg-body h2 { font-size: 1.15rem; margin: 1.8rem 0 0.6rem; color: var(--orange); }
.pg-body p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.97rem; }
.pg-body ul, .pg-body ol { margin: 0.5rem 0 1rem 1.5rem; color: var(--text-muted); }
.pg-body li { margin-bottom: 0.3rem; }

.game-tip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 1000px;
}
.game-tip h3 { color: var(--slate); margin-bottom: 0.3rem; font-size: 0.95rem; }
.game-tip p { color: var(--text-muted); font-size: 0.9rem; }

.bot-footer {
  background: var(--slate);
  color: rgba(255,255,255,0.6);
  padding: 2rem;
  text-align: center;
}
.bot-footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 1.2rem; }
.bot-footer-links a { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.bot-footer-links a:hover { color: var(--orange); }
.bot-footer-resp { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1rem; }
.bot-footer-resp p { font-size: 0.75rem; opacity: 0.5; margin-bottom: 0.4rem; }
.bot-footer-resp a { color: var(--orange); margin: 0 0.4rem; font-size: 0.78rem; }

.age-shield {
  position: fixed; inset: 0;
  background: rgba(27,40,56,0.96);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-box {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
  color: var(--text);
}
.age-box h2 { color: var(--slate); font-size: 1.3rem; margin-bottom: 0.7rem; }
.age-box p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.9rem; }

.age-opts { display: flex; gap: 0.8rem; justify-content: center; }
.age-opts button {
  padding: 0.6rem 1.8rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}
.age-ok { background: var(--orange); color: var(--white); }
.age-ok:hover { background: #e64a19; }
.age-nope { background: var(--border); color: var(--text); }
.age-nope:hover { background: #ccc; }

.no-entry {
  position: fixed; inset: 0;
  background: var(--slate);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 2rem;
}
.no-entry h2 { color: var(--orange); font-size: 1.8rem; margin-bottom: 0.8rem; }
