/* ========== FUN EXCHANGE — minimal mobile prelander ========== */

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

body {
  background: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

.page {
  width: 100%;
  max-width: 500px;
  background: #000;
  display: flex;
  flex-direction: column;
}

/* ===== HERO IMAGE ===== */
.hero {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== PLAY NOW BUTTON ===== */
.play-btn {
  display: block;
  margin: 20px 24px 24px;
  padding: 18px 24px;
  background: #ffcf3d;
  color: #1a0e00;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow:
    0 8px 22px rgba(255, 207, 61, 0.4),
    inset 0 -3px 0 rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.4);
  transition: filter .15s, transform .15s;
  animation: pulse 2.2s ease-in-out infinite;
}
.play-btn:hover  { filter: brightness(1.05); transform: translateY(-1px); }
.play-btn:active { transform: translateY(0); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 22px rgba(255, 207, 61, 0.4),  inset 0 -3px 0 rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.4); }
  50%      { box-shadow: 0 10px 36px rgba(255, 207, 61, 0.7), inset 0 -3px 0 rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.4); }
}

/* ===== FOOTER ===== */
.footer {
  background: #000;
  padding: 24px 20px 20px;
  border-top: 1px solid #222;
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.footer-nav a:hover { color: #ffcf3d; }
.footer-nav .sep { color: #555; }

.footer-notice {
  color: #bbb;
  font-size: 13px;
  line-height: 1.55;
  max-width: 420px;
  margin: 0 auto 18px;
}
.footer-notice strong { color: #fff; }

/* ===== TRUST BADGE — pinned bottom-right ===== */
.trust-badge {
  position: fixed;
  bottom: 12px;
  right: 12px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  color: #333;
  border-radius: 4px;
  padding: 5px 9px;
  font-size: 12px;
  line-height: 1.1;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.trust-tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px; height: 14px;
  background: #2b8a3e;
  color: #fff;
  border-radius: 3px;
  font-weight: 900;
  font-size: 10px;
}
.trust-text strong { color: #111; font-weight: 700; }
.trust-text sup { font-size: 8px; }

/* ===== DOC PAGES (Privacy & Responsible Gaming) ===== */
.doc-head {
  padding: 22px 22px 8px;
  text-align: center;
  border-bottom: 1px solid #222;
}
.doc-back {
  display: inline-block;
  color: #ffcf3d;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 12px;
  font-weight: 600;
}
.doc-back:hover { text-decoration: underline; }
.doc-title {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.doc-meta { color: #999; font-size: 12px; }

.doc {
  padding: 24px 22px 8px;
  color: #d5d5d5;
  font-size: 15px;
  line-height: 1.65;
}
.doc .lede {
  color: #fff;
  font-size: 16px;
  padding: 14px 16px;
  background: rgba(255, 207, 61, 0.06);
  border-left: 3px solid #ffcf3d;
  border-radius: 4px;
  margin-bottom: 24px;
}
.doc h2 {
  color: #ffcf3d;
  font-size: 18px;
  font-weight: 800;
  margin: 26px 0 10px;
  letter-spacing: -0.01em;
}
.doc p  { margin-bottom: 12px; }
.doc ul { margin: 8px 0 16px; padding-left: 20px; }
.doc li { margin-bottom: 8px; }
.doc a  { color: #ffcf3d; text-decoration: underline; text-underline-offset: 2px; }
.doc a:hover { color: #ffe07a; }
.doc strong { color: #fff; font-weight: 700; }
.doc code {
  background: #1a1a1a;
  color: #ffcf3d;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
  font-family: 'SF Mono', Monaco, Consolas, monospace;
}

.doc .rules { list-style: none; padding-left: 0; }
.doc .rules li { padding: 12px 14px; background: #141414; border: 1px solid #222; border-radius: 8px; }

.doc .helplines { list-style: none; padding-left: 0; }
.doc .helplines li {
  padding: 14px 16px;
  background: #141414;
  border: 1px solid #222;
  border-left: 3px solid #ffcf3d;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* ===== DESKTOP FRAME ===== */
@media (min-width: 501px) {
  body { background: #111; padding: 20px 0; }
  .page {
    box-shadow: 0 0 80px rgba(200, 20, 20, 0.2);
    border-radius: 8px;
    overflow: hidden;
  }
}
