:root {
  --primary: #0a6c7d;
  --primary-dark: #064b58;
  --secondary: #f7b731;
  --bg: #f5f8fb;
  --text: #1f2937;
  --muted: #667085;
  --white: #ffffff;
  --border: #d9e2ec;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-disclosure {
  background: #102a43;
  color: #ffffff;
  text-align: center;
  font-size: 13px;
  padding: 8px 12px;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--primary-dark);
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.brand-text {
  font-size: 18px;
}

.header-link {
  background: #eef7f9;
  color: var(--primary-dark);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid #c6e4ea;
  transition: 0.25s ease;
}

.header-link:hover {
  background: var(--primary);
  color: var(--white);
}

.hero {
  padding: 78px 0 70px;
  background:
    radial-gradient(circle at top left, rgba(247, 183, 49, 0.22), transparent 34%),
    linear-gradient(135deg, #e9f6f8, #ffffff 52%, #f3f8fb);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 42px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  background: #fff7e1;
  color: #7a4b00;
  border: 1px solid #f5d27a;
  font-weight: 700;
  font-size: 14px;
  padding: 9px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.04;
  letter-spacing: -1.5px;
  color: #102a43;
  margin-bottom: 22px;
}

.hero-subtitle {
  font-size: 20px;
  color: #344054;
  max-width: 650px;
  margin-bottom: 22px;
}

.notice-box {
  background: #ffffff;
  border: 1px solid #cfe8ed;
  border-left: 5px solid var(--primary);
  padding: 16px 18px;
  border-radius: 14px;
  margin-bottom: 24px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.primary-btn {
  border: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  padding: 17px 28px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(10, 108, 125, 0.28);
  transition: 0.25s ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(10, 108, 125, 0.34);
}

.primary-btn:active {
  transform: translateY(0);
}

.micro-copy {
  max-width: 680px;
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(10, 108, 125, 0.08);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.card-top {
  position: relative;
  font-weight: 800;
  color: var(--primary-dark);
  font-size: 18px;
  margin-bottom: 22px;
}

.prize-box {
  position: relative;
  background: linear-gradient(135deg, #f9fafb, #eef7f9);
  border: 1px solid #d7ecef;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  margin-bottom: 24px;
}

.prize-label {
  display: block;
  color: var(--muted);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}

.prize-amount {
  display: block;
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
  color: var(--primary-dark);
}

.check-list {
  list-style: none;
  display: grid;
  gap: 13px;
  margin-bottom: 22px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #344054;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #e7f7ec;
  color: #16803c;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
}

.card-disclaimer {
  background: #fff7f0;
  border: 1px solid #ffd7b5;
  color: #7a3e00;
  padding: 13px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
}

.info-section,
.faq-section {
  padding: 72px 0;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-heading h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  color: #102a43;
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.step-card h3 {
  font-size: 20px;
  color: #102a43;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--muted);
}

.disclosure-section {
  padding: 70px 0;
  background: #102a43;
}

.disclosure-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 34px;
  color: var(--white);
}

.disclosure-box h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.disclosure-box p {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 14px;
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.faq-question {
  width: 100%;
  border: 0;
  background: var(--white);
  color: #102a43;
  padding: 20px 22px;
  text-align: left;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 24px;
  color: var(--primary);
  transition: 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  max-height: 260px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.final-cta {
  padding: 76px 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(30px, 5vw, 48px);
  margin-bottom: 12px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  max-width: 650px;
  margin: 0 auto 24px;
}

.final-cta .primary-btn {
  background: var(--white);
  color: var(--primary-dark);
}

.final-cta .light {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  background: #ffffff;
  padding: 36px 0 90px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}

.footer-links a {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.site-footer p {
  color: var(--muted);
  font-size: 14px;
}

.footer-disclaimer {
  max-width: 920px;
  margin: 14px auto 0;
}

.mobile-sticky-cta {
  display: none;
}

/* Legal Pages */

.legal-hero {
  background: linear-gradient(135deg, #e9f6f8, #ffffff);
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
}

.legal-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  color: #102a43;
  margin-bottom: 14px;
}

.legal-hero p {
  color: var(--muted);
  max-width: 760px;
  font-size: 18px;
}

.legal-content {
  padding: 56px 0 76px;
}

.legal-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.legal-card h2 {
  color: #102a43;
  font-size: 26px;
  margin: 30px 0 12px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: #475467;
  margin-bottom: 14px;
}

.legal-card ul {
  margin: 10px 0 18px 22px;
  color: #475467;
}

.legal-card li {
  margin-bottom: 8px;
}

.legal-card a {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: underline;
}

.legal-note {
  background: #fff7e1;
  border: 1px solid #f5d27a;
  border-radius: 14px;
  padding: 16px;
  color: #7a4b00;
  font-weight: 700;
  margin-bottom: 22px;
}

.back-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--primary-dark);
  font-weight: 800;
}

.contact-box {
  background: #f7fbfc;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  margin: 20px 0;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card {
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  .top-disclosure {
    font-size: 12px;
  }

  .header-inner {
    min-height: 62px;
  }

  .brand-text {
    font-size: 15px;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .header-link {
    padding: 8px 13px;
    font-size: 13px;
  }

  .hero {
    padding: 52px 0 52px;
  }

  .badge {
    font-size: 12px;
    padding: 8px 11px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .primary-btn {
    width: 100%;
    font-size: 16px;
    padding: 16px 20px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .prize-amount {
    font-size: 54px;
  }

  .disclosure-box {
    padding: 24px;
  }

  .disclosure-box h2 {
    font-size: 26px;
  }

  .legal-card {
    padding: 24px;
  }

  .site-footer {
    padding-bottom: 100px;
  }

  .mobile-sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    border-top: 1px solid var(--border);
    padding: 12px;
    z-index: 200;
    box-shadow: 0 -10px 28px rgba(15, 23, 42, 0.12);
  }

  .mobile-sticky-cta .primary-btn {
    width: 100%;
  }
}