@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&family=Caveat:wght@700&display=swap');

:root {
  --coral: #ff6b6b;
  --peach: #ffa07a;
  --navy: #1e2d4a;
  --navy-light: #2a3d5f;
  --sky: #87ceeb;
  --white: #ffffff;
  --off-white: #faf7f2;
  --gray: #6b7b8d;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--off-white);
  color: var(--navy);
  line-height: 1.8;
}

.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(30,45,74,0.08);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-logo svg { width: 36px; height: 36px; }

.site-logo span {
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  color: var(--coral);
  font-weight: 700;
}

.desk-nav {
  display: flex;
  gap: 1.6rem;
  list-style: none;
}

.desk-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.25s;
}

.desk-nav a:hover {
  color: var(--coral);
  border-bottom-color: var(--coral);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--coral);
  margin: 4px 0;
  border-radius: 3px;
  transition: 0.3s;
}

.slide-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  z-index: 999;
  padding: 1rem 2rem;
}

.slide-menu.show { display: block; }

.slide-menu a {
  display: block;
  padding: 0.7rem 0;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid #eee;
}

.slide-menu a:hover { color: var(--coral); }

.banner {
  background: linear-gradient(135deg, var(--coral), var(--peach), #ffcc80);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
}

.banner::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--off-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.banner h1 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.banner p {
  color: rgba(255,255,255,0.9);
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.notice-chips {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.chip {
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-size: 0.82rem;
  font-weight: 600;
}

.game-area {
  padding: 4rem 2rem;
  text-align: center;
}

.game-area h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.game-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(255,107,107,0.2);
  border: 3px solid var(--coral);
}

.game-wrapper iframe {
  width: 100%;
  height: 580px;
  border: none;
  display: block;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.fcard {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s;
  text-align: center;
}

.fcard:hover { transform: translateY(-5px); }

.fcard .icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.fcard h3 {
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.fcard p {
  color: var(--gray);
  font-size: 0.9rem;
}

.highlight-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.hl-item {
  text-align: center;
  min-width: 120px;
}

.hl-item .big {
  font-size: 2rem;
  font-weight: 800;
  color: var(--peach);
}

.hl-item .small {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.action-section {
  text-align: center;
  padding: 4rem 2rem;
}

.action-section h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.action-section p {
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.action-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--coral), var(--peach));
  color: var(--white);
  padding: 0.85rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(255,107,107,0.3);
}

.action-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(255,107,107,0.4);
}

.text-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.text-page h1 {
  color: var(--coral);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.text-page h2 {
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
}

.text-page p {
  color: var(--gray);
  margin-bottom: 0.8rem;
}

.text-page ul {
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}

.text-page li {
  color: var(--gray);
  margin-bottom: 0.4rem;
}

.usage-tip {
  max-width: 900px;
  margin: 1.5rem auto 0;
  background: var(--white);
  border-radius: 14px;
  padding: 1.3rem 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.usage-tip p {
  color: var(--gray);
  font-size: 0.88rem;
  margin: 0;
}

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 2rem;
  text-align: center;
}

.f-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.f-links a {
  color: var(--peach);
  text-decoration: none;
  font-size: 0.85rem;
}

.f-links a:hover { text-decoration: underline; }

.site-footer small {
  font-size: 0.75rem;
}

/* Age gate */
.age-wall {
  position: fixed;
  inset: 0;
  background: rgba(30,45,74,0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.age-card h2 {
  color: var(--coral);
  font-weight: 800;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}

.age-card p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.age-choices {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.age-choices button {
  padding: 0.7rem 1.8rem;
  border-radius: 25px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
  transition: transform 0.2s;
}

.age-choices .accept {
  background: linear-gradient(135deg, var(--coral), var(--peach));
  color: white;
}

.age-choices .reject {
  background: #eee;
  color: var(--navy);
}

.age-choices button:hover { transform: scale(1.05); }

@media (max-width: 768px) {
  .desk-nav { display: none; }
  .menu-toggle { display: block; }
  .feature-cards { grid-template-columns: 1fr; }
  .game-wrapper iframe { height: 380px; }
  .banner { padding: 3rem 1.5rem; }
}
