@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;800&family=DM+Sans:wght@400;500;700&display=swap');

:root {
  --mint: #10b981;
  --mint-light: #d1fae5;
  --mint-dark: #059669;
  --bg-white: #fafcfb;
  --bg-card: #ffffff;
  --text-dark: #1a2e28;
  --text-mid: #4a6860;
  --text-light: #7a9990;
  --border: #e2ece8;
  --shadow: rgba(16, 185, 129, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.75;
}

/* TOPBAR */
.q-topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 64px;
}

.q-logo {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--mint-dark);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.q-nav { display: flex; gap: 2rem; }

.q-nav a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.q-nav a:hover { color: var(--mint); }

.q-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.q-burger svg { display: block; }

/* BANNER */
.q-banner {
  padding: 6rem 3rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.q-banner-text h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.q-banner-text h1 span { color: var(--mint); }

.q-banner-text p {
  color: var(--text-mid);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

.q-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 32px;
  background: var(--mint);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}

.q-cta:hover { background: var(--mint-dark); transform: translateY(-1px); }

.q-banner-visual {
  background: var(--mint-light);
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.q-banner-visual .icon-large { font-size: 6rem; }

/* BADGES */
.q-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 3rem;
  flex-wrap: wrap;
}

.q-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
}

.q-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  flex-shrink: 0;
}

/* GAME */
.q-game-area {
  padding: 4rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.q-game-area h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.q-game-sub {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.q-game-container {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow);
}

.q-game-container iframe {
  width: 100%;
  height: 620px;
  border: none;
  display: block;
}

/* COLUMNS */
.q-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.q-col h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.q-col p { color: var(--text-mid); margin-bottom: 1rem; }

/* STATS */
.q-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.q-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.q-stat-num {
  font-family: 'Raleway', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--mint);
}

.q-stat-label { color: var(--text-light); font-size: 0.9rem; margin-top: 0.5rem; }

/* CONTENT PAGE */
.q-content {
  padding: 100px 3rem 60px;
  max-width: 900px;
  margin: 0 auto;
  min-height: 75vh;
}

.q-content h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.q-content h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 2rem 0 0.8rem;
  color: var(--mint-dark);
}

.q-content p { color: var(--text-mid); margin-bottom: 1rem; }

.q-content ul { margin: 0.5rem 0 1rem 1.5rem; color: var(--text-mid); }
.q-content ul li { margin-bottom: 0.4rem; }

/* PLAY */
.q-play {
  padding: 80px 3rem 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.q-play h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.q-play-note {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* FOOTER */
.q-footer {
  background: var(--text-dark);
  color: #fff;
  padding: 3rem;
  margin-top: 4rem;
}

.q-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.q-footer a {
  color: var(--mint-light);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.q-footer a:hover { color: var(--mint); }

.q-footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

.q-footer-copy { font-size: 0.8rem; opacity: 0.6; }

/* AGE GATE */
.q-age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.q-age-box {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.q-age-box h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.q-age-box p { color: var(--text-mid); margin-bottom: 1.5rem; font-size: 0.95rem; }

.q-age-btns { display: flex; gap: 1rem; justify-content: center; }

.q-age-yes {
  padding: 10px 30px;
  background: var(--mint);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.q-age-yes:hover { background: var(--mint-dark); }

.q-age-no {
  padding: 10px 30px;
  background: #f3f4f6;
  color: var(--text-mid);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.q-age-no:hover { background: #e5e7eb; }

/* MOBILE */
@media (max-width: 768px) {
  .q-burger { display: block; }

  .q-nav {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 1.5rem 3rem;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transform: translateY(-120%);
    transition: transform 0.3s;
  }

  .q-nav.open { transform: translateY(0); }

  .q-banner {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2rem;
  }

  .q-banner-text h1 { font-size: 2rem; }

  .q-two-col { grid-template-columns: 1fr; padding: 3rem 1.5rem; }

  .q-stats { grid-template-columns: 1fr 1fr; }

  .q-game-container iframe { height: 400px; }

  .q-topbar { padding: 0 1.5rem; }

  .q-content { padding: 80px 1.5rem 40px; }
  .q-play { padding: 80px 1.5rem 40px; }

  .q-footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .q-banner-text h1 { font-size: 1.6rem; }
  .q-stats { grid-template-columns: 1fr; }
  .q-game-container iframe { height: 300px; }
}
