@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700;900&family=Outfit:wght@500;700;900&display=swap");

:root {
  --ink: #17253f;
  --navy: #17253f;
  --cream: #fff8e9;
  --paper: #fffdf7;
  --lime: #d7ef68;
  --coral: #ff6b58;
  --yellow: #ffc844;
  --blue: #54b7d2;
  --line: #17253f26;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
}
button {
  font: inherit;
}
.confetti {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    radial-gradient(var(--coral) 1.5px, transparent 1.5px),
    radial-gradient(var(--blue) 1px, transparent 1px),
    radial-gradient(var(--yellow) 1.5px, transparent 1.5px);
  background-position:
    12px 20px,
    90px 70px,
    55px 140px;
  background-size:
    180px 180px,
    140px 140px,
    220px 220px;
}
.promo-header {
  width: min(1200px, calc(100% - 40px));
  margin: 1rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.8rem 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffdf7dd;
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 10;
}
.promo-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: Outfit, sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
}
.promo-brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 2px solid var(--lime);
  border-radius: 13px;
}
.promo-header nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.83rem;
  font-weight: 700;
}
.promo-header nav a {
  padding: 0.65rem 0.85rem;
  border-radius: 99px;
  transition:
    background 0.25s,
    transform 0.25s;
}
.promo-header nav a:hover {
  background: var(--lime);
  transform: translateY(-2px);
}
.promo-header .promo-back {
  background: var(--navy);
  color: white;
}
.promo-hero {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}
.hero-copy {
  padding: 3rem 0;
}
.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.eyebrow.dark {
  color: #28768d;
}
h1,
h2,
h3 {
  font-family: Outfit, sans-serif;
}
h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.hero-lede {
  max-width: 520px;
  margin: 1.6rem 0 2rem;
  font-size: 1.15rem;
  color: #516176;
}
.hero-cta,
.dark-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.15rem 0.95rem 1.35rem;
  border-radius: 999px;
  background: var(--coral);
  color: white;
  font-weight: 900;
  box-shadow: 0 12px 25px #ff6b5845;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.hero-cta:hover,
.dark-cta:hover {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 0 18px 32px #ff6b5859;
}
.hero-cta span,
.dark-cta span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff4;
}
.hero-collage {
  position: relative;
  min-height: 450px;
  transform: rotate(2deg);
}
.collage-main {
  position: absolute;
  inset: 7% 2% auto auto;
  width: 86%;
  height: 390px;
  object-fit: cover;
  border: 9px solid white;
  border-radius: 42px 10px 42px 10px;
  box-shadow:
    20px 24px 0 var(--blue),
    0 24px 50px #17253f3b;
}
.sticker {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  font-family: Outfit, sans-serif;
  font-weight: 900;
  box-shadow: 0 10px 25px #17253f35;
  animation: stickerFloat 4s ease-in-out infinite;
}
.sticker-yellow {
  left: 0;
  top: 13%;
  background: var(--yellow);
  transform: rotate(-12deg);
}
.sticker-coral {
  right: -1%;
  bottom: 11%;
  background: var(--coral);
  color: white;
  font-size: 1.45rem;
  animation-delay: -1.5s;
}
.ticket {
  position: absolute;
  left: 7%;
  bottom: 7%;
  z-index: 3;
  padding: 0.9rem 1.1rem;
  background: white;
  border: 2px dashed var(--navy);
  transform: rotate(-8deg);
  font-size: 0.7rem;
  line-height: 1.1;
}
.ticket strong {
  font-size: 1.25rem;
}
.prize-section {
  padding: 7rem max(20px, 5vw);
  background: var(--paper);
}
.section-heading {
  width: min(1200px, 100%);
  margin: 0 auto 2.5rem;
}
.winner-frame {
  width: min(1050px, 100%);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 3px solid var(--navy);
  border-radius: 30px;
  background: #fff;
  box-shadow: 14px 14px 0 var(--lime);
}
.winner-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.winner-image img {
  height: 320px;
  object-fit: cover;
  filter: saturate(1.12);
}
.winner-ribbon {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.8rem;
  background: var(--yellow);
  font-weight: 900;
  transform: rotate(-3deg);
}
.winner-copy h3 {
  margin: 0.4rem 0 0.7rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
}
.winner-copy > p:not(.eyebrow) {
  color: #516176;
}
.fake-prize {
  margin: 1rem 0;
  font-family: Outfit, sans-serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 900;
  color: var(--coral);
  line-height: 0.85;
}
.fake-prize span {
  display: block;
  margin-top: 0.5rem;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}
.winner-copy > small {
  color: #687488;
}
.winner-copy {
  position: relative;
}
.winner-logo {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  width: 78px;
  height: 78px;
  object-fit: cover;
  border: 3px solid var(--coral);
  border-radius: 20px;
  background: white;
  box-shadow: 0 8px 0 var(--yellow);
  animation: logoOrbit 5s ease-in-out infinite;
}
.winner-copy .winner-logo:hover {
  animation-play-state: paused;
  transform: rotate(-6deg) scale(1.12);
}
.prize-grid {
  width: min(1200px, 100%);
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.prize-card {
  min-height: 220px;
  padding: 1.25rem;
  border: 2px solid var(--ink);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 7px 7px 0 #17253f;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.prize-card:hover {
  transform: translateY(-9px) rotate(-1deg);
  box-shadow: 11px 14px 0 #17253f;
}
.prize-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: Outfit, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
}
.prize-card p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.prize-card h3 {
  margin: 0.4rem 0;
  font-size: 1.45rem;
  line-height: 1;
}
.prize-card > span:last-child {
  font-size: 0.82rem;
  font-weight: 700;
}
.prize-lime {
  background: var(--lime);
}
.prize-blue {
  background: var(--blue);
}
.prize-coral {
  background: var(--coral);
  color: white;
}
.prize-yellow {
  background: var(--yellow);
}
.participation {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 7rem 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
}
.participation-image {
  position: relative;
}
.participation-image img {
  height: 470px;
  object-fit: cover;
  border-radius: 20px 60px 20px 60px;
  border: 8px solid var(--blue);
  box-shadow: 17px 17px 0 var(--yellow);
}
.image-caption {
  position: absolute;
  right: -1rem;
  bottom: 1.5rem;
  padding: 0.8rem 1rem;
  background: var(--coral);
  color: white;
  font-weight: 900;
  transform: rotate(3deg);
}
.steps-copy h2 {
  max-width: 630px;
}
.promo-steps {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  gap: 0.8rem;
}
.promo-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.9rem;
  border-top: 1px solid var(--line);
}
.promo-steps b {
  flex: none;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--yellow);
}
.promo-steps strong {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: 1.1rem;
}
.fine-print {
  max-width: 570px;
  color: #687488;
  font-size: 0.82rem;
}
.dark-cta {
  margin-top: 0.8rem;
  background: var(--navy);
  box-shadow: 0 12px 25px #17253f45;
}
.facebook-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.promo-footer-cta {
  padding: 6rem 20px;
  text-align: center;
  background: var(--yellow);
}
.promo-footer-cta h2 {
  max-width: 820px;
  margin: 0 auto 2rem;
}
.promo-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem max(20px, 5vw);
  background: var(--navy);
  color: white;
  font-size: 0.85rem;
}
.promo-footer a {
  color: var(--lime);
  font-weight: 900;
}
@keyframes stickerFloat {
  50% {
    transform: translateY(-10px) rotate(4deg);
  }
}
@keyframes logoOrbit {
  0%,
  100% {
    transform: rotate(-4deg) translateY(0);
  }
  50% {
    transform: rotate(4deg) translateY(-8px);
  }
}
@media (max-width: 850px) {
  .promo-header nav a:not(.promo-back) {
    display: none;
  }
  .promo-hero {
    min-height: auto;
    padding: 4rem 0 5rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .hero-copy {
    padding: 0;
  }
  .hero-collage {
    min-height: 390px;
  }
  .collage-main {
    height: 340px;
  }
  .prize-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .participation {
    grid-template-columns: 1fr;
    padding: 5rem 0;
  }
  .participation-image img {
    height: 340px;
  }
}
@media (max-width: 560px) {
  .promo-header {
    width: calc(100% - 24px);
    margin-top: 0.6rem;
  }
  .promo-header nav {
    font-size: 0.75rem;
  }
  .promo-header .promo-back {
    padding: 0.55rem 0.7rem;
  }
  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }
  .hero-collage {
    min-height: 310px;
  }
  .collage-main {
    inset: 5% 0 auto auto;
    width: 88%;
    height: 270px;
    border-width: 6px;
  }
  .sticker {
    width: 82px;
    height: 82px;
    font-size: 0.8rem;
  }
  .sticker-coral {
    font-size: 1.05rem;
  }
  .ticket {
    font-size: 0.58rem;
    left: 3%;
    bottom: 4%;
  }
  .winner-frame {
    grid-template-columns: 1fr;
    box-shadow: 8px 8px 0 var(--lime);
  }
  .winner-image img {
    height: 230px;
  }
  .winner-logo {
    position: relative;
    right: auto;
    bottom: auto;
    display: block;
    margin-top: 1rem;
  }
  .prize-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }
  .prize-card {
    min-height: 190px;
    padding: 0.9rem;
  }
  .prize-card h3 {
    font-size: 1.15rem;
  }
  .participation-image img {
    height: 290px;
  }
  .image-caption {
    right: 0.5rem;
    font-size: 0.8rem;
  }
  .promo-footer {
    flex-direction: column;
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
