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

body {
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at top, #07204f 0%, #010510 70%);
  color: white;
  overflow-x: hidden;
}

.bg-lines {
  position: fixed;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(90deg, rgba(32,85,185,.4) 1px, transparent 1px),
    linear-gradient(rgba(32,85,185,.4) 1px, transparent 1px);
  background-size: 40px 40px;
}

.container {
  max-width: 430px;
  margin: 0 auto;
  padding: 28px 22px 50px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 64px;
  line-height: .92;
  font-weight: 900;
  margin-bottom: 24px;
}

.gold {
  color: #f0b52f;
}

.subtext {
  font-size: 21px;
  line-height: 1.45;
  margin-bottom: 26px;
}

.cta {
  display: block;
  width: 100%;
  border: none;
  border-radius: 18px;
  padding: 24px;
  font-size: 28px;
  font-weight: bold;
  color: white;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(180deg, #45b50d 0%, #1d6f05 100%);
  margin-bottom: 12px;
}

.cancel {
  text-align: center;
  margin-bottom: 34px;
  color: rgba(255,255,255,.8);
  font-size: 18px;
}

.section-title,
.winner-heading {
  color: #f0b52f;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 22px;
}

.feature {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  border: 2px solid #f0b52f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.feature h3 {
  font-size: 21px;
  margin-bottom: 6px;
}

.feature p {
  color: rgba(255,255,255,.75);
  line-height: 1.4;
}

.winner-card {
  border: 2px solid #d69c18;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 22px;
  background: #08111f;
}

.winner-image {
  width: 100%;
  display: block;
}

.bottom-cta {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 36px;
}

.bottom-cta span {
  color: #f0b52f;
}
