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

body {
  background-color: #fff;
  font-family: "Barlow", sans-serif;
  color: #fff;
}

/* ── Banner ── */
.banner {
  position: relative;
  margin: -2.5rem -2.5rem 0;
}
@media (max-width: 640px) {
  .banner {
    margin: -1.5rem -1rem 0;
  }
}
.banner img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 1.5rem 1.5rem 0 0;
}
.banner-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 112px;
  background: linear-gradient(to bottom, transparent, #0a1f6e);
  pointer-events: none;
}

/* ── Divider ── */
.divider {
  width: 80%;
  height: 1px;
  margin: 0 auto 2rem;
  background: linear-gradient(
    to right,
    transparent,
    #94a3b8 10%,
    #cbd5e1 50%,
    #94a3b8 90%,
    transparent
  );
}

/* ── Page wrapper ── */
.page-wrapper {
  padding: 2rem 2rem 3rem;
}
@media (max-width: 640px) {
  .page-wrapper {
    padding: 1.25rem 1rem 2rem;
  }
}
.content-box {
  background: #0a1f6e;
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 2.5rem 2.5rem 3rem;
}
@media (max-width: 640px) {
  .content-box {
    padding: 1.5rem 1rem 2rem;
  }
}

/* ── Section heading ── */
.section-heading {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 1.25rem;
}
.mechanics-card h3 {
  font-family: "Barlow", sans-serif;
}

/* ── Subscribe section ── */
.subscribe {
  background: transparent;
  padding: 0 0 2.5rem;
  text-align: center;
}
.subscribe h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.875rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.subscribe p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 36rem;
  margin: 0 auto 2rem;
}

/* ── Prize cards ── */
.prizes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 48rem;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .prizes {
    grid-template-columns: 1fr;
    max-width: 22rem;
  }
}
.prize-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem 1rem 1.5rem;
  text-align: center;
  color: #0a1f6e;
}
.prize-card .place-label {
  font-family: "Barlow", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: #475569;
  margin-bottom: 0.25rem;
}
.prize-card .amount {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: #0a1f6e;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.prize-card .winner-pill {
  display: inline-block;
  background: #dc2626;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}
.prize-card .label {
  font-family: "Barlow", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0a1f6e;
  line-height: 1.5;
}

/* ── Promo Mechanics ── */
.mechanics-section {
  background: transparent;
  padding: 0 0 2.5rem;
}
.mechanics-card {
  background: #fff;
  color: #111;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 56rem;
  margin: 0 auto;
  font-size: 0.85rem;
  line-height: 1.7;
}
.mechanics-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-align: center;
}
.mechanics-header {
  margin-bottom: 1.25rem;
}
.mechanics-header p {
  margin-bottom: 0.4rem;
}
.mechanics-card ul {
  list-style: disc;
  padding-left: 1.25rem;
}
.mechanics-card ul li {
  margin-bottom: 0.5rem;
}
.mechanics-card ul ul {
  margin-top: 0.4rem;
}
.prizes-summary {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}
.prizes-summary p {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* ── Join Now button ── */
.join-wrap {
  text-align: center;
  padding: 1.5rem 0 0;
  background: transparent;
}
.join-wrap p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}
.btn-join {
  display: inline-block;
  background: #dc2626;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 3rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-join:hover {
  background: #b91c1c;
}

/* ── FAQ ── */
.faq-section {
  background: transparent;
  padding: 2.5rem 0 0;
}
.faq-inner {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 768px) {
  .faq-inner {
    grid-template-columns: 1fr;
  }
}
.faq-heading {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.faq-question,
.faq-answer-inner,
.mechanics-card,
.mechanics-card ul,
.join-wrap p,
.subscribe p {
  font-family: "Barlow", sans-serif;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  padding: 1rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question:hover {
  background: rgba(255, 255, 255, 0.04);
}
.faq-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.25s;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 1.25rem 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}
.faq-answer-inner ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-top: 0.5rem;
}
.faq-answer-inner ul li {
  margin-bottom: 0.25rem;
}
.faq-answer-inner .note {
  display: block;
  margin-top: 0.5rem;
}
