@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Nunito:wght@300;400;600&display=swap');

:root {
  --bg: #edf2f7;
  --white: #ffffff;
  --navy: #1e3a5f;
  --blue: #2980b9;
  --sky: #3498db;
  --coral: #e67e22;
  --txt: #2c3e50;
  --muted: #7f8c8d;
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Nunito', sans-serif; background: var(--bg); color: var(--txt); line-height: 1.7; }
h1,h2,h3,h4 { font-family: 'Outfit', sans-serif; }
a { color: var(--blue); text-decoration: none; } a:hover { color: var(--coral); }

.site-header {
  position: fixed; width: 100%; top: 0; z-index: 1000;
  background: var(--white); height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4%; box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.sh-logo { display: flex; align-items: center; gap: 8px; }
.sh-logo svg { width: 30px; height: 30px; }
.sh-logo span { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.25rem; color: var(--navy); }

.sh-menu { display: flex; list-style: none; gap: 1.5rem; }
.sh-menu a { color: var(--txt); font-size: 0.85rem; font-weight: 600; }
.sh-menu a:hover { color: var(--blue); }

.sh-ham { display: none; cursor: pointer; flex-direction: column; gap: 4px; }
.sh-ham span { width: 22px; height: 2px; background: var(--navy); transition: all 0.3s; }
.sh-ham.open span:first-child { transform: rotate(45deg) translate(4px,4px); }
.sh-ham.open span:nth-child(2) { opacity: 0; }
.sh-ham.open span:last-child { transform: rotate(-45deg) translate(4px,-4px); }

@media(max-width:768px) {
  .sh-ham { display: flex; }
  .sh-menu {
    position: fixed; top: 0; right: -100%;
    width: 260px; height: 100vh;
    background: var(--white); flex-direction: column;
    padding: 75px 1.5rem; transition: right 0.3s;
    box-shadow: -3px 0 15px rgba(0,0,0,0.08);
  }
  .sh-menu.vis { right: 0; }
}

.hero-area {
  margin-top: 60px;
  background: linear-gradient(135deg, var(--navy), #2c5282);
  padding: 5rem 5%;
  display: flex; flex-wrap: wrap; gap: 3rem;
  align-items: center; justify-content: center;
}
.hero-left { flex: 1; min-width: 300px; max-width: 550px; color: #fff; }
.hero-left h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.hero-left h1 em { color: var(--coral); font-style: normal; }
.hero-left p { opacity: 0.85; margin-bottom: 2rem; font-size: 1.05rem; }

.hero-right { flex: 1; min-width: 300px; max-width: 500px; }
.hero-game {
  aspect-ratio: 750/600; border-radius: var(--radius); overflow: hidden;
  border: 3px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.hero-game iframe { width: 100%; height: 100%; border: none; }

.btn-fill {
  display: inline-block; padding: 12px 36px;
  background: var(--coral); color: #fff;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem;
  border: none; border-radius: 8px; cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.btn-fill:hover { background: #d35400; transform: translateY(-2px); color: #fff; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 4rem 4%; }

.pill-row { display: flex; gap: 1.2rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }
.pill {
  background: var(--white); padding: 1.5rem 2rem; border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04); flex: 1; min-width: 240px; max-width: 340px;
  text-align: center; border-bottom: 3px solid var(--sky);
}
.pill .picon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.pill h3 { color: var(--navy); margin-bottom: 0.4rem; font-size: 1rem; }
.pill p { font-size: 0.9rem; color: var(--muted); }

.stripe { background: var(--white); }

.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
@media(max-width:768px) { .cols-2 { grid-template-columns: 1fr; } }

.blue-callout {
  background: linear-gradient(135deg, #ebf5ff, #dbeafe);
  border-radius: var(--radius); padding: 1.8rem; border-left: 4px solid var(--blue);
}
.blue-callout h4 { color: var(--navy); margin-bottom: 0.6rem; }
.blue-callout ul { margin-left: 1.2rem; font-size: 0.92rem; color: var(--txt); }
.blue-callout li { margin-bottom: 0.3rem; }

.pg-top {
  margin-top: 60px; padding: 3.5rem 5% 2.5rem; text-align: center;
  background: linear-gradient(135deg, var(--navy), #2c5282); color: #fff;
}
.pg-top h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.pg-top p { opacity: 0.75; margin-top: 0.5rem; }

.content { max-width: 850px; margin: 0 auto; padding: 2.5rem 4% 4rem; }
.content h2 { color: var(--navy); margin: 1.8rem 0 0.6rem; font-size: 1.2rem; }
.content p { margin-bottom: 0.9rem; }
.content ul { margin: 0.5rem 0 1rem 1.5rem; } .content li { margin-bottom: 0.3rem; }

.game-embed {
  max-width: 800px; margin: 2rem auto; aspect-ratio: 750/600;
  border-radius: var(--radius); overflow: hidden;
  border: 2px solid var(--sky);
}
.game-embed iframe { width: 100%; height: 100%; border: none; }

.site-foot {
  background: var(--navy); color: #c8d6e5; text-align: center; padding: 2rem 4%;
}
.sf-links { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 0.6rem; }
.sf-links a { color: #c8d6e5; font-size: 0.85rem; } .sf-links a:hover { color: var(--coral); }
.sf-tiny { font-size: 0.75rem; opacity: 0.4; margin-top: 0.6rem; }

.age-modal {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(30,58,95,0.94); z-index: 9999;
  display: flex; justify-content: center; align-items: center;
}
.age-inner {
  background: var(--white); border-radius: 16px; padding: 2.5rem;
  text-align: center; max-width: 400px; width: 88%;
}
.age-inner h2 { color: var(--navy); margin-bottom: 0.8rem; }
.age-inner p { color: var(--muted); margin-bottom: 1.5rem; }
.age-inner .btns { display: flex; gap: 0.8rem; justify-content: center; }
.age-inner button { padding: 10px 28px; border: none; border-radius: 8px; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.95rem; cursor: pointer; }
.age-inner .a-yes { background: var(--blue); color: #fff; }
.age-inner .a-no { background: #ddd; color: #888; }

.play-tip { max-width: 800px; margin: 1rem auto; padding: 1rem; background: #ebf5ff; border-radius: 8px; border: 1px solid #bee3f8; font-size: 0.9rem; color: var(--txt); }
