* {
  box-sizing: border-box;
}

:root {
  --navy: #082b63;
  --navy-dark: #041d45;
  --red: #cf1727;
  --gold: #f7c84b;
  --text: #16233a;
  --muted: #667085;
  --bg: #f7f9fc;
  --border: #e5e9f0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
}

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.narrow {
  width: min(760px, calc(100% - 36px));
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.brand {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.brand-star {
  color: var(--red);
  font-size: 44px;
  line-height: 1;
}

.brand-text {
  line-height: .92;
  text-align: left;
}

.brand-americas {
  color: var(--navy);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: .5px;
}

.brand-giveaway {
  color: var(--red);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: .5px;
}

.hero {
  padding: 42px 0 34px;
  text-align: center;
}

.eyebrow {
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.1px;
  margin-bottom: 12px;
}

h1 {
  margin: 0 auto 12px;
  max-width: 880px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.03;
  color: var(--navy-dark);
}

h1 span {
  color: var(--red);
}

.lead {
  margin: 0 auto 26px;
  max-width: 680px;
  font-size: 20px;
  color: var(--muted);
}

.prize-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(4, 29, 69, .15);
  border: 1px solid rgba(8, 43, 99, .08);
  background: #fff;
}

.prize-image {
  display: block;
  width: 100%;
  height: auto;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.trust-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 10px;
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.trust-item span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.entry-section {
  background: var(--bg);
  padding: 42px 0 50px;
}

.entry-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(4, 29, 69, .08);
  padding: 28px;
}

.entry-heading {
  text-align: center;
  margin-bottom: 20px;
}

.entry-heading h2 {
  color: var(--navy-dark);
  margin: 0 0 6px;
  font-size: 30px;
}

.entry-heading p {
  margin: 0;
  color: var(--muted);
}

.gleam-wrap {
  width: 100%;
  min-height: 380px;
}

.entry-note {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin-top: 18px;
}

.reassurance {
  text-align: center;
  padding: 42px 0;
}

.reassurance h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 30px;
}

.reassurance p {
  margin: 0 auto;
  max-width: 650px;
  color: var(--muted);
}

.site-footer {
  background: var(--navy-dark);
  color: #fff;
  padding: 34px 0;
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

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

.disclaimer {
  max-width: 800px;
  margin: 0 auto 12px;
  color: #cbd5e1;
  font-size: 12px;
}

.copyright {
  color: #94a3b8;
  font-size: 12px;
  margin: 0;
}

.placeholder-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
  background: var(--bg);
}

.placeholder-card {
  max-width: 680px;
  width: 100%;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 38px;
  box-shadow: 0 12px 35px rgba(4, 29, 69, .08);
}

.placeholder-card h1 {
  font-size: 42px;
}

.placeholder-card p {
  color: var(--muted);
}

@media (max-width: 700px) {
  .site-header {
    padding: 14px 0;
  }

  .brand-star {
    font-size: 34px;
  }

  .brand-americas,
  .brand-giveaway {
    font-size: 21px;
  }

  .hero {
    padding-top: 30px;
  }

  .lead {
    font-size: 17px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .entry-card {
    padding: 18px 12px;
  }

  .entry-heading h2 {
    font-size: 26px;
  }
}


/* Verification / payment page */
.verification-main {
  min-height: calc(100vh - 86px);
  background:
    radial-gradient(circle at top left, rgba(207,23,39,.06), transparent 30%),
    radial-gradient(circle at top right, rgba(8,43,99,.08), transparent 32%),
    var(--bg);
  padding: 34px 0 50px;
}

.verification-container {
  width: min(660px, calc(100% - 28px));
  margin: 0 auto;
}

.verification-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #98a2b3;
  font-size: 12px;
  font-weight: 700;
}

.progress-step {
  white-space: nowrap;
}

.progress-step.complete {
  color: var(--navy);
}

.progress-step.active {
  color: var(--red);
}

.progress-line {
  width: 44px;
  height: 1px;
  background: #d9dee7;
  margin: 0 9px;
}

.verification-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 18px 55px rgba(4,29,69,.10);
  text-align: center;
}

.verify-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 13px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ecfdf3;
  color: #15803d;
  font-size: 27px;
  font-weight: 900;
}

.verify-eyebrow {
  margin: 0 0 5px;
  color: var(--red);
  font-weight: 900;
  letter-spacing: 1.2px;
  font-size: 12px;
}

.verify-title {
  font-size: clamp(31px, 7vw, 46px);
  margin: 0 0 12px;
  color: var(--navy-dark);
  line-height: 1.06;
}

.verify-lead {
  max-width: 535px;
  margin: 0 auto 22px;
  color: var(--muted);
  font-size: 17px;
}

.zero-charge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ecfdf3;
  border: 1px solid #b7ebc8;
  border-radius: 14px;
  padding: 16px;
  text-align: left;
  margin: 0 0 18px;
}

.zero-amount {
  flex: 0 0 auto;
  background: #fff;
  color: #15803d;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 23px;
  font-weight: 900;
  border: 1px solid #ccefd8;
}

.zero-charge strong,
.zero-charge span {
  display: block;
}

.zero-charge strong {
  color: #166534;
  font-size: 16px;
}

.zero-charge span {
  color: #477154;
  font-size: 13px;
}

.why-card {
  background: #f8faff;
  border: 1px solid #e3e9f5;
  border-radius: 14px;
  padding: 16px 18px;
  text-align: left;
  margin-bottom: 20px;
}

.why-card h2 {
  color: var(--navy);
  font-size: 16px;
  margin: 0 0 5px;
}

.why-card p {
  color: #5e6b7e;
  font-size: 13px;
  margin: 0;
}

.payment-widget-placeholder {
  min-height: 260px;
  border: 2px dashed #ced6e3;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: #fbfcfe;
  margin: 18px 0;
}

.widget-placeholder-inner strong,
.widget-placeholder-inner span {
  display: block;
}

.widget-placeholder-inner strong {
  color: var(--navy);
  margin-bottom: 5px;
}

.widget-placeholder-inner span {
  color: var(--muted);
  font-size: 13px;
}

.security-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.security-points div {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 7px;
}

.security-points span,
.security-points strong {
  display: block;
}

.security-points span {
  font-size: 20px;
  margin-bottom: 3px;
}

.security-points strong {
  color: var(--navy);
  font-size: 11px;
}

.verify-smallprint {
  max-width: 570px;
  margin: 18px auto 0;
  color: #8690a1;
  font-size: 11px;
}

.verification-footer-links {
  display: flex;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-size: 12px;
  color: #98a2b3;
}

.verification-footer-links a {
  color: #667085;
  text-decoration: none;
}

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

@media (max-width: 600px) {
  .verification-main {
    padding-top: 20px;
  }

  .verification-card {
    padding: 25px 17px;
    border-radius: 17px;
  }

  .progress-line {
    width: 23px;
    margin: 0 5px;
  }

  .verification-progress {
    font-size: 11px;
  }

  .zero-charge {
    gap: 10px;
    padding: 13px;
  }

  .zero-amount {
    font-size: 19px;
  }

  .security-points {
    grid-template-columns: repeat(3, 1fr);
  }
}


.paysight-container {
  width: 100%;
  min-height: 260px;
  margin: 18px 0;
  border-radius: 15px;
  overflow: hidden;
  background: #fbfcfe;
}

.paysight-container .widget-placeholder-inner {
  min-height: 260px;
  display: grid;
  place-content: center;
  gap: 5px;
  text-align: center;
  border: 2px dashed #ced6e3;
  border-radius: 15px;
}

.payment-error {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #9f1239;
  padding: 12px 14px;
  border-radius: 10px;
  margin: 12px 0;
  font-size: 13px;
  text-align: left;
}
