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

    :root {
      --green: #15eab3;
      --green-dark: #1cc096;
      --green-bright: #00ffbe;
      --black: #000;
      --white: #fff;
      --gray: #716c6c;
      --navy: #1b2542;
    }

    body {
      background: #0a0a0a;
      color: var(--white);
      font-family: 'Inter', sans-serif;
      display: flex;
      justify-content: center;
      min-height: 100vh;
    }

    /* ── FIXED-WIDTH BOX ── */
    .page {
      width: 960px;
      background: var(--black);
      position: relative;
      overflow: hidden;
    }

    /* ── NAV ── */
    .nav {
      position: absolute;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      padding: 22px 48px;
    }
    .nav-logo { flex-shrink: 0; }
    .nav-logo img { height: 31px; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 40px;
      margin-left: auto;
    }
    .nav-links a {
      font-size: 16px;
      letter-spacing: 0.8px;
      color: var(--white);
      text-decoration: none;
    }
    .nav-links a:hover { color: var(--green); }
    .btn-sm {
      background: var(--green);
      color: var(--white);
      font-weight: 700;
      font-size: 16px;
      padding: 5px 22px;
      border-radius: 2px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
    }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; margin-left: auto; }
    .hamburger span { display: block; width: 29px; height: 2.76px; background: var(--white); border-radius: 5px; }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 700px;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      top: -328px;
      left: 50%;
      transform: translateX(-50%);
      width: 1456px;
      height: 1371px;
      object-fit: cover;
    }
    /* Top gradient — subtle fade from black */
    .hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 81px;
      background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
      z-index: 2;
    }
    /* Bottom gradient — strong fade to black */
    .hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 480px;
      background: linear-gradient(to top, var(--black) 10%, transparent);
      z-index: 2;
    }
    .hero-overlay {
      position: absolute;
      bottom: 60px;
      left: 0; right: 0;
      z-index: 3;
      text-align: center;
    }
    .hero-title {
      font-family: 'Anton', sans-serif;
      font-size: 102px;
      text-transform: uppercase;
      line-height: 0.96;
      letter-spacing: 1px;
    }
    .green { color: var(--green); }

    /* ── CONTENT AREA ── */
    .content {
      padding: 20px 117px 0;
      position: relative;
      z-index: 3;
    }
    .description {
      font-size: 29px;
      line-height: 1.4;
      letter-spacing: 0.29px;
      margin-bottom: 12px;
    }
    .description .hl { color: var(--green); font-weight: 800; }
    .description .hl-b { color: var(--green); font-weight: 700; }
    .tagline {
      font-size: 27px;
      letter-spacing: 0.27px;
      background: linear-gradient(to left, var(--green-dark), var(--white));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 40px;
    }

    /* ── STEPS ── */
    .step {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 30px;
      padding-left: 38px;
    }
    .step-circle {
      flex-shrink: 0;
      width: 129px; height: 129px;
      border-radius: 50%;
      background: url('../images/golf-ball.png') center/cover;
      position: relative;
    }
    .step-circle span {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 56px;
      color: var(--navy);
      mix-blend-mode: multiply;
    }
    .step-heading {
      font-family: 'Anton', sans-serif;
      font-size: 80px;
      text-transform: uppercase;
      line-height: 1;
      letter-spacing: 0.8px;
    }
    .step-desc {
      font-size: 20px;
      line-height: 1.15;
      letter-spacing: 0.2px;
      margin-top: 4px;
    }
    .step-desc .hl { color: var(--green); font-weight: 800; }

    /* ── CTA ── */
    .cta-wrap {
      text-align: center;
      padding: 20px 0 50px;
    }
    .cta-btn {
      display: inline-block;
      background: linear-gradient(to right, var(--green-dark), var(--green-bright));
      border: 1.71px solid var(--green);
      border-radius: 17px;
      color: var(--white);
      font-weight: 900;
      font-size: 25.6px;
      letter-spacing: 0.26px;
      padding: 24px 120px;
      cursor: pointer;
      text-transform: uppercase;
      text-decoration: none;
    }
    .cta-btn:hover { opacity: 0.9; }

    /* ── PRIZES SECTION ── */
    .prizes {
      text-align: center;
      padding: 30px 42px 0;
    }
    .prizes-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 10px;
    }
    .prizes-header h2 {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 150px;
      text-transform: uppercase;
      line-height: 1;
      letter-spacing: 1.5px;
    }
    .prizes-badge {
      width: 181px; height: 183px;
      object-fit: contain;
    }
    .prizes-subtitle {
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      font-size: 30px;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      margin-bottom: 24px;
    }
    .prizes-subtitle .green { font-weight: 700; }

    /* Prize cards grid */
    .prizes-image-wrap {
      position: relative;
      width: 880px;
      margin: 0 auto;
    }
    .prizes-banner {
      width: 100%;
      height: 519px;
      object-fit: cover;
      display: block;
    }
    .prize-crown {
      position: absolute;
      top: 0;
      width: 73px; height: 73px;
    }
    .prize-crown-1 { left: 75px; }
    .prize-crown-2 { left: 380px; }
    .prize-crown-3 { left: 676px; }
    .prophetx-rotated {
      position: absolute;
      top: 170px;
      right: 28px;
      width: 142px;
      transform: rotate(-30deg);
      transform-origin: center;
    }

    .prize-labels {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      width: 880px;
      margin: 12px auto 0;
      text-align: center;
    }
    .prize-title {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 35px;
      text-transform: uppercase;
      letter-spacing: 0.35px;
      line-height: 1.13;
    }
    .prize-value {
      font-size: 15px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.15px;
      margin-top: 2px;
    }
    .prize-value .green { font-weight: 900; }
    .prize-detail {
      font-size: 15px;
      font-weight: 500;
      color: var(--green);
      margin-top: 1px;
    }

    /* ── ELIGIBILITY ── */
    .eligibility {
      padding: 60px 117px 0;
    }
    .eligibility h2 {
      font-weight: 900;
      font-size: 40px;
      text-transform: uppercase;
      margin-bottom: 24px;
    }
    .eligibility ul {
      list-style: disc;
      padding-left: 24px;
    }
    .eligibility li {
      font-size: 28px;
      line-height: 1.4;
      margin-bottom: 20px;
    }

    /* ── READY ── */
    .ready {
      padding: 50px 117px 0;
    }
    .ready h2 {
      font-weight: 900;
      font-size: 40px;
      text-transform: uppercase;
      margin-bottom: 20px;
      line-height: 0.7;
    }
    .ready p {
      font-size: 30px;
      line-height: 1.4;
    }
    .ready .hl { color: var(--green); font-weight: 800; }

    /* ── FOOTER ── */
    .footer {
      text-align: center;
      padding: 50px 117px 40px;
    }
    .footer-tc {
      font-size: 25px;
      font-weight: 300;
      color: var(--gray);
      margin-bottom: 24px;
      line-height: 1.3;
    }
    .footer-logo img { height: 31px; }


    /* ═══════════════════════════════════════
       MOBILE — max 428px (iPhone 14 Plus)
       ═══════════════════════════════════════ */
    @media (max-width: 600px) {
      .page { width: 100%; }

      /* Nav */
      .nav { padding: 16px 24px; }
      .nav-logo img { height: 23px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }

      /* Hero */
      .hero { height: 400px; }
      .hero-bg {
        width: 722px;
        height: 680px;
        top: -99px;
      }
      .hero::after { height: 200px; }
      .hero-overlay { bottom: 30px; }
      .hero-title { font-size: 62px; }

      /* Content */
      .content { padding: 12px 26px 0; }
      .description { font-size: 15px; margin-bottom: 6px; }
      .tagline { font-size: 14.5px; margin-bottom: 24px; }

      /* Steps */
      .step { gap: 12px; margin-bottom: 16px; padding-left: 6px; }
      .step-circle { width: 73px; height: 73px; }
      .step-circle span { font-size: 31px; }
      .step-heading { font-size: 45px; }
      .step-desc { font-size: 11.3px; }

      /* CTA */
      .cta-wrap { padding: 8px 0 30px; }
      .cta-btn {
        font-size: 13px;
        padding: 12px 80px;
        border-radius: 9px;
      }

      /* Prizes */
      .prizes { padding: 10px 24px 0; }
      .prizes-header h2 { font-size: 65px; }
      .prizes-badge { width: 96px; height: 96px; }
      .prizes-subtitle { font-size: 13px; margin-bottom: 14px; }
      .prizes-image-wrap { width: 100%; }
      .prizes-banner { height: 224px; }
      .prize-crown { width: 31px; height: 31px; }
      .prize-crown-1 { left: 38px; }
      .prize-crown-2 { left: 170px; }
      .prize-crown-3 { left: 298px; }
      .prophetx-rotated { width: 61px; top: 74px; right: 12px; }
      .prize-labels { width: 100%; margin-top: 6px; }
      .prize-title { font-size: 15px; }
      .prize-value { font-size: 6.5px; }
      .prize-detail { font-size: 6.5px; }

      /* Eligibility */
      .eligibility { padding: 30px 30px 0; }
      .eligibility h2 { font-size: 20px; margin-bottom: 14px; }
      .eligibility li { font-size: 14.2px; margin-bottom: 12px; }

      /* Ready */
      .ready { padding: 24px 30px 0; }
      .ready h2 { font-size: 20px; margin-bottom: 12px; }
      .ready p { font-size: 15.2px; }

      /* Footer */
      .footer { padding: 30px 30px 24px; }
      .footer-tc { font-size: 12.7px; }
      .footer-logo img { height: 16px; }
    }
