/* ============================================================
   BAD MOON CLUB — style.css
   erpg.games/BMC
   ============================================================ */

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── BASE ─────────────────────────────────────────────────── */
html {
  font-size: 16px;
}

body {
  background-color: transparent;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  width: 100%;
  display: block;
}

.hero-img {
  width: 100%;
  display: block;
}

/* ── INTRO ────────────────────────────────────────────────── */
.intro {
  padding: 2.5rem 1.5rem;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.5);
}

.intro p {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1.25rem;
}

.intro p:last-child {
  margin-bottom: 0;
}

.intro-noprep {
  color: #fff;
  line-height: 1.8;
}

/* ── CTA BLOCK ────────────────────────────────────────────── */
.cta-block {
  padding: 1.5rem 1.5rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-block--bottom {
  padding-bottom: 3rem;
}

.btn-join {
  display: inline-block;
  background: #4cca2a;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.btn-join:hover {
  background: #5de033;
  transform: translateY(-2px);
}

.btn-join:active {
  transform: translateY(0);
}

.cta-sub {
  font-size: 0.8rem;
  color: #aaa;
  line-height: 1.5;
}

/* ── FAQ SECTIONS ─────────────────────────────────────────── */
.faqs {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 1.5rem;
  background: rgba(0, 0, 0, 0.5);
}

.faq {
  margin-bottom: 2rem;
  text-align: center;
  padding-top: 1.5rem;
}

.faq:last-child {
  padding-bottom: 1.5rem;
}

.faq h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #4cca2a;
  margin-bottom: 0.75rem;
}

.faq p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
}

.faq strong {
  font-weight: 700;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  position: relative;
  width: 100%;
  display: block;
  margin-top: 1rem;
}

.footer-fade-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, #000, transparent);
  z-index: 1;
  pointer-events: none;
}

/* ── PAGE BACKGROUND ──────────────────────────────────────── */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url('assets/bad-moon-club-footer.jpg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

/* ── MAIN CONTENT ─────────────────────────────────────────── */
main {
  position: relative;
  z-index: 1;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 1;
}

.footer-legal {
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 0.85rem 1rem;
  border-top: 1px solid #111;
}

.footer-legal p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

/* ── RESPONSIVE — wider screens ───────────────────────────── */
@media (min-width: 600px) {
  .intro {
    max-width: 540px;
    padding: 3rem 2rem;
    font-size: 1.05rem;
  }

  .faqs {
    max-width: 540px;
  }

  .btn-join {
    font-size: 1.2rem;
    padding: 1rem 3rem;
  }
}

@media (min-width: 900px) {
  .intro {
    max-width: 600px;
    font-size: 1.1rem;
  }

  .faqs {
    max-width: 600px;
  }
}
