:root {
  --navy: #10233f;
  --blue: #1f5f99;
  --gold: #f4b942;
  --white: #ffffff;
  --off-white: #f6f8fb;
  --text: #223047;
  --muted: #61708a;
  --shadow: 0 20px 60px rgba(16, 35, 63, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
}

.page-shell {
  width: 100%;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background-image: url('assets/background.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 35, 63, 0.92), rgba(16, 35, 63, 0.68), rgba(16, 35, 63, 0.35));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-right: auto;
  margin-left: clamp(0px, 7vw, 110px);
  color: var(--white);
}

.corner-logo {
  position: absolute;
  top: clamp(18px, 4vw, 42px);
  right: clamp(18px, 5vw, 70px);
  z-index: 2;
  width: clamp(120px, 16vw, 220px);
  height: auto;
  display: block;
}

.hero-photo {
  width: min(100%, 420px);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 34px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.98;
  margin: 0 0 24px;
  letter-spacing: -0.04em;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  max-width: 620px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.92);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  font-size: 1.03rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.cta-button.secondary {
  margin-top: 26px;
  background: var(--blue);
  color: var(--white);
}

.small-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.content-section {
  padding: 64px 24px;
}

.intro-section {
  margin-top: -90px;
  position: relative;
  z-index: 2;
}

.content-card {
  max-width: 980px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 58px);
  box-shadow: var(--shadow);
}

.content-card h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -0.035em;
  color: var(--navy);
}

.content-card p {
  font-size: 1.08rem;
  color: var(--text);
  margin: 0 0 18px;
}

.prize-section {
  padding-top: 24px;
  padding-bottom: 90px;
}

.prize-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 34px 0;
}

.prize-card {
  border: 1px solid #dfe6ef;
  border-radius: 22px;
  padding: 28px;
  background: #fbfcfe;
}

.prize-card.featured {
  border-color: rgba(244, 185, 66, 0.8);
  background: #fff9ec;
}

.prize-icon {
  font-size: 2.3rem;
  margin-bottom: 12px;
}

.prize-card h3,
.gift-card-options h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 1.35rem;
}

.winner-count {
  color: var(--muted) !important;
  font-weight: 700;
  margin-bottom: 12px !important;
}

.prize-value {
  font-size: 1.45rem !important;
  font-weight: 800;
  color: var(--blue) !important;
  margin-bottom: 0 !important;
}

.gift-card-options {
  margin-top: 18px;
  padding: 26px;
  background: var(--off-white);
  border-radius: 20px;
}

.gift-card-options ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin: 16px 0 0;
  padding-left: 22px;
  font-size: 1.05rem;
}

.privacy-note {
  margin-top: 28px !important;
  color: var(--muted) !important;
  font-size: 1rem !important;
}

@media (max-width: 760px) {
  .hero {
    min-height: 650px;
    justify-content: flex-start;
    background-position: center;
  }

  .hero-overlay {
    background: rgba(16, 35, 63, 0.82);
  }

  .hero-content {
    padding-top: 86px;
    margin-left: 0;
  }

  .corner-logo {
    width: 120px;
    top: 16px;
    right: 16px;
  }

  .hero-photo {
    width: min(100%, 320px);
    margin-bottom: 28px;
  }

  .intro-section {
    margin-top: -52px;
  }

  .content-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .content-card {
    border-radius: 22px;
  }

  .prize-grid,
  .gift-card-options ul {
    grid-template-columns: 1fr;
  }
}
