/* =========================================
           CSS VARIABLES & RESET
           ========================================= */
      :root {
        --primary: #f0b429;
        --accent: #d42b2b;
        --bg: #0a0a0a;
        --surface: #141414;
        --surface-raised: #1e1e1e;
        --text-primary: #f5f5f5;
        --text-secondary: #9a9a9a;
        --success: #22c55e;
        --border: #2a2a2a;
        --gradient-wash: linear-gradient(135deg, #f0b429 0%, #d42b2b 100%);

        --font-display: "Barlow Condensed", sans-serif;
        --font-body: "DM Sans", sans-serif;
        --font-ui: "DM Mono", monospace;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: var(--font-body);
        background-color: var(--bg);
        color: var(--text-primary);
        line-height: 1.5;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
      }

      a {
        text-decoration: none;
        color: inherit;
      }

      ul {
        list-style: none;
      }

      img {
        max-width: 100%;
        height: auto;
        display: block;
      }

      /* =========================================
           TYPOGRAPHY & UTILITIES
           ========================================= */
      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        font-family: var(--font-display);
        text-transform: uppercase;
      }

      .text-gradient {
        background: var(--gradient-wash);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
      }

      .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
      }

      .container-narrow {
        max-width: 800px;
      }

      .section-padding {
        padding: 80px 0;
      }

      .bg-surface {
        background-color: var(--surface);
      }

      .section-header {
        margin-bottom: 48px;
      }

      .section-title {
        font-size: 40px;
        font-weight: 800;
        margin-bottom: 16px;
        position: relative;
      }

      .section-title.centered {
        text-align: center;
      }

      .section-title:not(.centered)::after {
        content: "";
        display: block;
        width: 60px;
        height: 3px;
        background-color: var(--primary);
        margin-top: 12px;
      }

      .section-title.centered::after {
        content: "";
        display: block;
        width: 60px;
        height: 3px;
        background-color: var(--primary);
        margin: 12px auto 0;
      }

      .body-text {
        font-size: 17px;
        color: var(--text-primary);
        margin-bottom: 24px;
        line-height: 1.6;
      }

      /* =========================================
           COMPONENTS
           ========================================= */
      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 18px;
        text-transform: uppercase;
        padding: 14px 32px;
        cursor: pointer;
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
        border: none;
      }

      .btn-type-a {
        background: var(--gradient-wash);
        color: #111;
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(240, 180, 41, 0.2);
      }

      .btn-type-a:hover {
        box-shadow: 0 6px 20px rgba(240, 180, 41, 0.4);
        transform: translateY(-2px);
      }

      .btn-type-b {
        background: transparent;
        color: var(--primary);
        border: 2px solid var(--primary);
        border-radius: 6px;
      }

      .btn-type-b:hover {
        background: rgba(240, 180, 41, 0.1);
      }

      .btn-type-b.capsule {
        border-radius: 50px;
      }

      .center-btn-wrap {
        text-align: center;
        margin-top: 32px;
      }

      .icon-gold {
        fill: none;
        stroke: var(--primary);
        stroke-width: 1.5;
        stroke-linecap: round;
        stroke-linejoin: round;
      }

      /* =========================================
           NAVBAR
           ========================================= */
      .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        background: rgba(30, 30, 30, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 100;
        border-bottom: 1px solid var(--border);
      }

      .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
      }

      .logo {
        font-family: var(--font-display);
        font-size: 28px;
        font-weight: 800;
        color: var(--text-primary);
        letter-spacing: 1px;
      }

      .nav-links {
        display: flex;
        gap: 32px;
      }

      .nav-link {
        font-family: var(--font-body);
        font-weight: 500;
        font-size: 15px;
        color: var(--text-primary);
        transition: color 0.2s;
      }

      .nav-link:hover {
        color: var(--primary);
      }

      .nav-actions {
        display: flex;
        gap: 16px;
      }

      .nav-btn {
        padding: 8px 20px;
        font-size: 16px;
        border-radius: 50px;
      }

      .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
      }

      .hamburger-line {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--text-primary);
        margin: 5px 0;
        transition: 0.3s;
      }

      .mobile-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--surface-raised);
        padding: 24px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 99;
        overflow-y: auto;
      }

      .mobile-menu.active {
        transform: translateX(0);
      }

      .mobile-menu .nav-links {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 32px;
      }

      .mobile-menu .nav-link {
        font-size: 18px;
        display: block;
      }

      .mobile-menu .nav-actions {
        flex-direction: column;
      }

      .mobile-menu .btn {
        width: 100%;
      }

      /* =========================================
           SECTION 1: HERO (BONUS PAGE)
           ========================================= */
      .bonus-hero {
        position: relative;
        padding: 140px 0 80px;
        min-height: 80vh;
        display: flex;
        align-items: center;
        background:
          radial-gradient(
            circle at 30% 50%,
            rgba(240, 180, 41, 0.2) 0%,
            transparent 70%
          ),
          var(--bg);
        overflow: hidden;
      }

      .bonus-hero-container {
        display: flex;
        align-items: center;
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
      }

      .bonus-hero-content {
        width: 55%;
        padding-right: 40px;
      }

      .bonus-hero-title {
        font-size: 60px;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 24px;
      }

      .bonus-hero-image {
        position: absolute;
        right: 0;
        top: 0;
        width: 45%;
        height: 100%;
        z-index: 0;
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
      }

      .bonus-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        mask-image: linear-gradient(to right, transparent 0%, black 30%);
        -webkit-mask-image: linear-gradient(
          to right,
          transparent 0%,
          black 30%
        );
      }

      .stat-pills {
        display: flex;
        gap: 12px;
        margin-bottom: 32px;
        flex-wrap: wrap;
      }

      .stat-pill {
        background: var(--surface-raised);
        border: 1px solid var(--primary);
        border-radius: 24px;
        padding: 8px 20px;
        font-family: var(--font-ui);
        font-size: 14px;
        font-weight: 500;
        color: var(--primary);
      }

      /* =========================================
           SPLIT LAYOUT BASE
           ========================================= */
      .split-row {
        display: flex;
        align-items: center;
        gap: 5%;
      }

      /* =========================================
           SECTION 2: WELCOME BONUS
           ========================================= */
      .welcome-content {
        width: 60%;
      }

      .welcome-callout {
        width: 40%;
        background: var(--surface-raised);
        border-radius: 6px;
        border-top: 3px solid var(--primary);
        padding: 32px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      }

      .callout-val {
        font-family: var(--font-display);
        font-weight: 800;
        font-size: 48px;
        color: var(--primary);
        line-height: 1;
        margin-bottom: 8px;
      }

      .callout-sub {
        font-family: var(--font-body);
        font-size: 15px;
        color: var(--text-secondary);
      }

      .def-list {
        margin: 24px 0 32px;
      }

      .def-item {
        display: flex;
        padding: 16px 0;
        border-bottom: 1px solid var(--border);
      }

      .def-label {
        font-family: var(--font-body);
        font-weight: 500;
        color: var(--text-primary);
        width: 40%;
        flex-shrink: 0;
        padding-right: 16px;
      }

      .def-value {
        font-family: var(--font-body);
        color: var(--text-secondary);
        width: 60%;
      }

      /* Compact Step Pills (Inline) */
      .inline-steps {
        display: flex;
        gap: 16px;
        margin-bottom: 32px;
      }

      .inline-step {
        display: flex;
        align-items: center;
        gap: 12px;
        background: var(--bg);
        padding: 12px 16px;
        border-radius: 6px;
        border-left: 2px solid var(--primary);
        flex: 1;
      }

      .inline-step-num {
        font-family: var(--font-ui);
        font-weight: 800;
        font-size: 24px;
        color: var(--primary);
      }

      .inline-step-text {
        font-size: 14px;
        font-weight: 500;
        color: var(--text-primary);
        line-height: 1.2;
      }

      /* =========================================
           SECTION 3: DAILY BONUS
           ========================================= */
      .stat-block {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin: 32px 0 48px;
        flex-wrap: wrap;
      }

      .stat-block-pill {
        background: var(--surface-raised);
        padding: 12px 24px;
        border-radius: 50px;
        font-family: var(--font-ui);
        font-weight: 500;
        font-size: 16px;
        color: var(--primary);
        border: 1px solid var(--border);
      }

      .conditions-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }

      .condition-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
        background: var(--surface-raised);
        border-radius: 4px;
        border-top: 2px solid var(--primary);
      }

      .condition-item svg {
        width: 32px;
        height: 32px;
        stroke: var(--primary);
        margin-bottom: 12px;
      }

      .condition-label {
        font-weight: 500;
        color: var(--text-primary);
        margin-bottom: 4px;
      }

      .condition-val {
        font-size: 14px;
        color: var(--text-secondary);
      }

      /* =========================================
           SECTION 4: APP DOWNLOAD (PHONE MOCKUP)
           ========================================= */
      .app-content {
        width: 50%;
      }
      .app-visual {
        width: 50%;
        display: flex;
        justify-content: center;
      }

      .phone-mockup {
        width: 280px;
        height: 560px;
        border: 8px solid #2a2a2a;
        border-radius: 40px;
        background: linear-gradient(135deg, #1e1e1e 0%, #0a0a0a 100%);
        box-shadow:
          0 0 40px rgba(240, 180, 41, 0.1),
          inset 0 0 20px rgba(0, 0, 0, 0.8);
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 24px;
        text-align: center;
      }

      .phone-notch {
        position: absolute;
        top: 0;
        width: 120px;
        height: 24px;
        background: #2a2a2a;
        border-radius: 0 0 12px 12px;
      }

      .phone-mockup .brand {
        font-family: var(--font-display);
        font-size: 24px;
        font-weight: 800;
        color: #555;
        margin-bottom: 16px;
        letter-spacing: 1px;
      }

      .phone-mockup .mockup-val {
        font-family: var(--font-display);
        font-size: 64px;
        font-weight: 800;
        color: var(--primary);
        line-height: 1;
        margin-bottom: 8px;
        text-shadow: 0 0 20px rgba(240, 180, 41, 0.4);
      }

      .phone-mockup .mockup-sub {
        font-family: var(--font-ui);
        font-size: 14px;
        color: var(--text-secondary);
        text-transform: uppercase;
      }

      /* =========================================
           SECTION 5: JACKPOT TICKETS
           ========================================= */
      .tickets-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        align-items: stretch;
        margin-bottom: 24px;
      }

      .ticket-card {
        background: var(--surface-raised);
        border-radius: 4px;
        padding: 32px 24px;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;
      }

      .ticket-card:hover {
        transform: translateY(-4px);
      }

      .ticket-silver {
        border-top: 4px solid #a0a0a0;
      }
      .ticket-silver:hover {
        box-shadow: 0 -4px 20px rgba(160, 160, 160, 0.2);
      }
      .ticket-silver .ticket-prize {
        color: #a0a0a0;
      }
      .ticket-silver .ticket-icon {
        stroke: #a0a0a0;
      }

      .ticket-gold {
        border-top: 4px solid var(--primary);
        transform: scale(1.04);
        z-index: 2;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      }
      .ticket-gold:hover {
        transform: scale(1.04) translateY(-4px);
        box-shadow:
          0 -4px 25px rgba(240, 180, 41, 0.25),
          0 10px 30px rgba(0, 0, 0, 0.5);
      }
      .ticket-gold .ticket-prize {
        color: var(--primary);
      }
      .ticket-gold .ticket-icon {
        stroke: var(--primary);
      }

      .ticket-platinum {
        border-top: 4px solid var(--accent);
      }
      .ticket-platinum:hover {
        box-shadow: 0 -4px 20px rgba(212, 43, 43, 0.2);
      }
      .ticket-platinum .ticket-prize {
        color: var(--accent);
      }
      .ticket-platinum .ticket-icon {
        stroke: var(--accent);
      }

      .ticket-icon {
        width: 40px;
        height: 40px;
        fill: none;
        stroke-width: 1.5;
        margin-bottom: 24px;
      }

      .ticket-tier {
        font-family: var(--font-display);
        font-size: 20px;
        color: var(--text-primary);
        margin-bottom: 8px;
      }

      .ticket-prize {
        font-family: var(--font-display);
        font-size: 36px;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 16px;
      }

      .ticket-desc {
        font-size: 14px;
        color: var(--text-secondary);
        margin-bottom: 8px;
      }

      .ticket-footer {
        margin-top: auto;
        padding-top: 16px;
        border-top: 1px solid var(--border);
        font-size: 13px;
        color: var(--text-secondary);
      }

      .footer-note {
        text-align: center;
        font-style: italic;
        font-size: 13px;
        color: var(--text-secondary);
      }

      /* =========================================
           SECTION 6: REFERRAL (DIAGRAM)
           ========================================= */
      .referral-content {
        width: 55%;
      }
      .referral-visual {
        width: 45%;
      }

      .ref-diagram {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: var(--surface-raised);
        padding: 40px 24px;
        border-radius: 8px;
        border: 1px solid var(--border);
      }

      .ref-node {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
      }

      .ref-circle {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        border: 2px solid var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg);
        box-shadow: 0 0 15px rgba(240, 180, 41, 0.15);
      }

      .ref-circle svg {
        width: 32px;
        height: 32px;
        stroke: var(--primary);
      }

      .ref-label {
        font-family: var(--font-display);
        font-size: 18px;
        color: var(--text-primary);
      }

      .ref-arrow-wrap {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 16px;
      }

      .ref-badge {
        background: var(--bg);
        border: 1px solid var(--primary);
        padding: 4px 12px;
        border-radius: 20px;
        font-family: var(--font-ui);
        font-size: 13px;
        color: var(--primary);
        white-space: nowrap;
        margin-bottom: 8px;
      }

      .ref-arrow {
        width: 100%;
        height: 2px;
        background: var(--primary);
        position: relative;
      }

      .ref-arrow::after {
        content: "";
        position: absolute;
        right: 0;
        top: -4px;
        border-left: 8px solid var(--primary);
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
      }

      /* =========================================
           SECTION 7: VIP PROGRAM
           ========================================= */
      .vip-banner {
        width: 100%;
        aspect-ratio: 16/4;
        position: relative;
        margin-bottom: 48px;
      }

      .vip-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .vip-banner::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60%;
        background: linear-gradient(to top, var(--bg), transparent);
      }

      /* VIP Strip */
      .vip-strip-wrap {
        margin: 48px 0 64px;
        padding: 0 24px;
      }

      .vip-strip {
        display: flex;
        justify-content: space-between;
        position: relative;
        max-width: 900px;
        margin: 0 auto;
      }

      .vip-line {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(
          to right,
          #9a9a9a 0%,
          #f0b429 50%,
          #d42b2b 100%
        );
        transform: translateY(-50%);
        z-index: 0;
        border-radius: 2px;
      }

      .vip-tick-wrap {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .vip-tick {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: var(--surface);
        border: 4px solid #9a9a9a;
      }

      /* Color coding the ticks */
      .vip-tick-wrap:nth-child(n + 1) .vip-tick {
        border-color: #9a9a9a;
      }
      .vip-tick-wrap:nth-child(n + 6) .vip-tick {
        border-color: #f0b429;
      }
      .vip-tick-wrap:nth-child(n + 12) .vip-tick {
        border-color: #d42b2b;
      }

      .vip-tick-label {
        position: absolute;
        top: 32px;
        font-family: var(--font-ui);
        font-size: 13px;
        color: var(--text-secondary);
        white-space: nowrap;
      }

      .vip-tick-wrap.milestone .vip-tick-label {
        color: var(--text-primary);
        font-weight: 800;
      }

      /* Benefits Grid (Trust Badge Style) */
      .vip-benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 900px;
        margin: 0 auto 48px;
      }

      .vip-milestone-callout {
        text-align: center;
        padding: 48px 0;
        background: radial-gradient(
          circle,
          rgba(240, 180, 41, 0.1) 0%,
          transparent 60%
        );
      }

      .vip-milestone-val {
        font-family: var(--font-display);
        font-weight: 800;
        font-size: 56px;
        color: var(--primary);
        line-height: 1;
        margin-bottom: 8px;
      }

      /* =========================================
           SECTION 8: SEASONAL PROMOTIONS
           ========================================= */
      .inline-bullets {
        padding-left: 0;
        margin: 32px 0;
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .inline-bullets li {
        position: relative;
        padding-left: 24px;
        font-family: var(--font-body);
        font-weight: 500;
        font-size: 15px;
        color: var(--text-primary);
        line-height: 1.5;
      }

      .inline-bullets li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 8px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--primary);
      }

      /* =========================================
           SECTION 9: HOW TO CLAIM
           ========================================= */
      .steps-container {
        position: relative;
        margin-bottom: 48px;
      }

      .steps-line {
        position: absolute;
        top: 24px;
        left: 0;
        width: 100%;
        height: 2px;
        background-image: linear-gradient(
          to right,
          var(--primary) 50%,
          transparent 50%
        );
        background-size: 12px 2px;
        background-repeat: repeat-x;
        z-index: 0;
        opacity: 0.3;
      }

      .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        position: relative;
        z-index: 1;
      }

      .step-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .step-num {
        font-family: var(--font-ui);
        font-weight: 800;
        font-size: 48px;
        color: var(--primary);
        background: var(--bg);
        padding: 0 16px;
        margin-bottom: 16px;
        line-height: 1;
      }

      .step-title {
        font-size: 22px;
        margin-bottom: 8px;
        font-family: var(--font-display);
        color: var(--text-primary);
      }

      .step-desc {
        font-size: 15px;
        color: var(--text-secondary);
      }

      /* =========================================
           FAQ
           ========================================= */
      .faq-list {
        max-width: 800px;
        margin: 0 auto;
      }

      .faq-item {
        border-bottom: 1px solid var(--border);
      }

      .faq-question {
        width: 100%;
        text-align: left;
        background: none;
        border: none;
        padding: 24px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: var(--font-body);
        font-weight: 500;
        font-size: 16px;
        color: var(--text-primary);
        cursor: pointer;
      }

      .faq-icon {
        width: 20px;
        height: 20px;
        stroke: var(--primary);
        transition: transform 0.3s ease;
      }

      .faq-item.active .faq-icon {
        transform: rotate(180deg);
      }

      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
      }

      .faq-answer-inner {
        padding-bottom: 24px;
        font-size: 16px;
        color: var(--text-secondary);
        padding-right: 40px;
      }

      /* =========================================
           FOOTER
           ========================================= */
      footer {
        background: #050505;
        padding: 64px 0 32px;
        border-top: 1px solid var(--border);
      }

      .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 48px;
        margin-bottom: 48px;
      }

      .footer-logo {
        font-family: var(--font-display);
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 16px;
      }

      .footer-desc {
        font-size: 14px;
        color: var(--text-secondary);
        margin-bottom: 24px;
      }

      .footer-heading {
        font-family: var(--font-display);
        font-size: 18px;
        margin-bottom: 24px;
        color: var(--text-primary);
      }

      .footer-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .footer-link {
        font-size: 14px;
        color: var(--text-secondary);
        transition: color 0.2s;
      }

      .footer-link:hover {
        color: var(--primary);
      }

      .social-links {
        display: flex;
        gap: 16px;
      }

      .social-link {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--surface-raised);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s;
      }

      .social-link:hover {
        background: var(--primary);
      }

      .social-link svg {
        width: 20px;
        height: 20px;
        fill: var(--text-primary);
      }

      .badges-container {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 24px;
      }

      .license-badge {
        background: var(--surface-raised);
        border: 1px solid var(--border);
        border-radius: 50px;
        padding: 6px 12px;
        font-family: var(--font-ui);
        font-size: 12px;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }

      .footer-bottom {
        border-top: 1px solid var(--border);
        padding-top: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 13px;
        color: var(--text-secondary);
      }

      /* =========================================
           RESPONSIVE BREAKPOINTS
           ========================================= */
      @media (max-width: 1023px) {
        /* Tablet */
        .bonus-hero-title {
          font-size: 48px;
        }
        .split-row {
          flex-direction: column;
          gap: 40px;
        }
        .welcome-content,
        .welcome-callout,
        .app-content,
        .app-visual,
        .referral-content,
        .referral-visual {
          width: 100% !important;
        }

        .inline-steps {
          flex-direction: column;
        }
        .conditions-grid {
          grid-template-columns: 1fr;
        }
        .tickets-grid {
          grid-template-columns: 1fr;
        }
        .ticket-gold {
          transform: scale(1);
        }
        .ticket-gold:hover {
          transform: translateY(-4px);
        }

        .vip-benefits-grid {
          grid-template-columns: 1fr;
        }

        .steps-line {
          width: 2px;
          height: 100%;
          top: 0;
          left: 50%;
          transform: translateX(-50%);
          background-image: linear-gradient(
            to bottom,
            var(--primary) 50%,
            transparent 50%
          );
          background-size: 2px 12px;
        }
        .steps-grid {
          grid-template-columns: 1fr;
          gap: 48px;
        }
        .step-item {
          flex-direction: row;
          text-align: left;
          align-items: flex-start;
          gap: 24px;
          background: var(--bg);
          padding: 16px;
          position: relative;
          z-index: 2;
          margin-left: 10%;
          margin-right: 10%;
        }
        .step-num {
          margin-bottom: 0;
        }

        .footer-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 767px) {
        /* Mobile */
        .nav-links,
        .nav-actions {
          display: none;
        }
        .mobile-menu-btn {
          display: block;
        }

        .bonus-hero-image {
          display: none;
        }
        .bonus-hero-content {
          width: 100%;
          padding-right: 0;
          text-align: center;
        }
        .bonus-hero-title {
          font-size: 36px;
        }
        .stat-pills {
          flex-direction: column;
        }
        .bonus-hero-content .btn {
          width: 100%;
        }

        .welcome-callout {
          order: -1;
        } /* Stacks above text */

        .referral-visual {
          display: none;
        }

        /* VIP Strip to Vertical */
        .vip-strip {
          flex-direction: column;
          gap: 16px;
          padding-left: 20px;
          align-items: flex-start;
        }
        .vip-line {
          width: 4px;
          height: 100%;
          left: 8px;
          top: 0;
          transform: none;
          background: linear-gradient(
            to bottom,
            #9a9a9a 0%,
            #f0b429 50%,
            #d42b2b 100%
          );
        }
        .vip-tick-wrap {
          flex-direction: row;
          align-items: center;
          gap: 16px;
        }
        .vip-tick-label {
          position: static;
        }
        /* Hide non-milestone labels on mobile for cleanliness */
        .vip-tick-wrap:not(.milestone) .vip-tick-label {
          display: none;
        }

        .step-item {
          margin-left: 0;
          margin-right: 0;
          flex-direction: column;
          text-align: center;
          align-items: center;
        }
        .steps-line {
          display: none;
        }

        .footer-grid {
          grid-template-columns: 1fr;
          gap: 32px;
        }
        .footer-bottom {
          flex-direction: column;
          gap: 16px;
          text-align: center;
        }
      }
