@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --pharaoh: #1a120b;
  --sand-dark: #2c1e10;
  --amber: #daa520;
  --amber-light: #f0d060;
  --papyrus: #fdf6e3;
  --stone: #d4c5a9;
  --text: #3d2b1f;
  --muted: #7a6652;
  --border: rgba(218,165,32,0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--papyrus);
  color: var(--text);
  line-height: 1.75;
}

h1, h2, h3 { font-family: 'Merriweather', serif; }

a { color: var(--amber); text-decoration: none; }
a:hover { color: #b8860b; }

.z-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: 62px;
  background: var(--pharaoh);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  border-bottom: 2px solid var(--amber);
}

.z-logo {
  font-family: 'Merriweather', serif;
  font-weight: 900; font-size: 1.3rem;
  color: var(--amber);
  letter-spacing: 2px;
}

.z-nav { display: flex; gap: 1.5rem; list-style: none; }
.z-nav a { color: rgba(255,255,255,0.6); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.z-nav a:hover { color: var(--amber); }

.z-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 4px; }
.z-burger span { width: 24px; height: 2px; background: var(--amber); display: block; }

.z-mobile { display: none; position: fixed; top: 62px; left: 0; right: 0; background: var(--pharaoh); z-index: 999; flex-direction: column; padding: 0.5rem 2rem 1rem; }
.z-mobile.vis { display: flex; }
.z-mobile a { color: #fff; padding: 0.6rem 0; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.05); }

@media (max-width: 768px) { .z-nav { display: none; } .z-burger { display: flex; } }

.z-hero {
  margin-top: 62px;
  background: linear-gradient(135deg, var(--pharaoh), var(--sand-dark));
  color: var(--stone);
  text-align: center;
  padding: 5rem 2rem;
}

.z-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); color: var(--amber); margin-bottom: 1rem; }
.z-hero p { max-width: 640px; margin: 0 auto 2rem; font-size: 1.05rem; opacity: 0.85; }

.btn-amber {
  display: inline-block; padding: 0.8rem 2.2rem;
  background: var(--amber); color: var(--pharaoh);
  font-weight: 700; border-radius: 4px; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 1px;
  transition: all 0.3s; border: none; cursor: pointer;
}
.btn-amber:hover { background: var(--amber-light); color: var(--pharaoh); }

.z-notices {
  display: flex; justify-content: center; gap: 2rem; padding: 1.5rem;
  background: var(--stone); flex-wrap: wrap;
}
.z-notice { font-weight: 700; font-size: 0.85rem; color: var(--pharaoh); }

.z-game { padding: 3.5rem 2rem; text-align: center; }
.z-game h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1.5rem; color: var(--text); }
.z-game-wrap {
  max-width: 960px; margin: 0 auto; border-radius: 8px; overflow: hidden;
  border: 2px solid var(--border); box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.z-game-wrap iframe { width: 100%; height: 580px; border: none; display: block; }
@media (max-width: 768px) { .z-game-wrap iframe { height: 370px; } }

.z-cards {
  padding: 3.5rem 2rem; max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem;
}
.z-card {
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  padding: 1.8rem; text-align: center;
}
.z-card .zi { font-size: 2rem; margin-bottom: 0.8rem; }
.z-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text); }
.z-card p { color: var(--muted); font-size: 0.9rem; }

.z-story {
  padding: 3.5rem 2rem; background: var(--sand-dark); color: var(--stone); text-align: center;
}
.z-story .inner { max-width: 780px; margin: 0 auto; }
.z-story h2 { color: var(--amber); font-size: 1.8rem; margin-bottom: 1.2rem; }
.z-story p { opacity: 0.8; margin-bottom: 1rem; }

.z-page {
  margin-top: 62px; padding: 3rem 2rem; max-width: 860px;
  margin-left: auto; margin-right: auto; min-height: calc(100vh - 62px - 140px);
}
.z-page h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: 1rem; color: var(--text); }
.z-page h2 { font-size: 1.2rem; margin: 1.8rem 0 0.6rem; color: var(--amber); }
.z-page p { color: var(--muted); margin-bottom: 1rem; }
.z-page ul { margin: 0.5rem 0 1rem 1.5rem; color: var(--muted); }
.z-page li { margin-bottom: 0.3rem; }

.z-tip { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem; margin: 2rem auto; max-width: 960px; }
.z-tip h3 { color: var(--text); margin-bottom: 0.3rem; }
.z-tip p { color: var(--muted); font-size: 0.9rem; }

.z-footer {
  background: var(--pharaoh); color: rgba(255,255,255,0.5); padding: 2rem; text-align: center;
}
.z-footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; }
.z-footer-links a { color: rgba(255,255,255,0.45); font-size: 0.85rem; }
.z-footer-links a:hover { color: var(--amber); }
.z-footer-resp { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1rem; }
.z-footer-resp p { font-size: 0.75rem; opacity: 0.45; margin-bottom: 0.4rem; }
.z-footer-resp a { color: var(--amber); margin: 0 0.4rem; font-size: 0.78rem; }

.z-age { position: fixed; inset: 0; background: rgba(26,18,11,0.96); z-index: 10000; display: flex; align-items: center; justify-content: center; }
.z-age-box { background: var(--papyrus); border: 2px solid var(--amber); border-radius: 12px; padding: 2.5rem; text-align: center; max-width: 400px; width: 90%; }
.z-age-box h2 { color: var(--text); font-size: 1.3rem; margin-bottom: 0.7rem; }
.z-age-box p { color: var(--muted); margin-bottom: 1.5rem; font-size: 0.9rem; }
.z-age-btns { display: flex; gap: 0.8rem; justify-content: center; }
.z-age-btns button { padding: 0.6rem 1.8rem; border-radius: 4px; font-weight: 700; font-size: 0.9rem; cursor: pointer; border: none; transition: all 0.3s; }
.z-yes { background: var(--amber); color: var(--pharaoh); }
.z-yes:hover { background: var(--amber-light); }
.z-no { background: #e2d8c8; color: var(--text); }
.z-no:hover { background: #d4c5a9; }

.z-blocked { position: fixed; inset: 0; background: var(--pharaoh); z-index: 10001; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--stone); padding: 2rem; }
.z-blocked h2 { color: #c0392b; font-size: 1.8rem; margin-bottom: 0.8rem; }
