      :root {
        --bg-1: #061727;
        --bg-2: #0d2b47;
        --card: rgba(255, 255, 255, 0.1);
        --card-2: rgba(255, 255, 255, 0.18);
        --text: #fff;
        --gold: #ffd166;
        --mint: #25f4c7;
        --cta: #00d084;
        --cta-2: #00a86b;
        --danger: #ff5d7a;
        --viewport-top-offset: 0px;
        --viewport-bottom-offset: 0px;
      }

      * {
        box-sizing: border-box;
      }

      html,
      body {
        margin: 0;
        padding: 0;
        font-family: "Poppins", "Avenir Next", "Segoe UI", sans-serif;
        color: var(--text);
        min-height: 100%;
        background:
          radial-gradient(circle at 12% 20%, rgba(37, 244, 199, 0.2), transparent 45%),
          radial-gradient(circle at 82% 0%, rgba(255, 209, 102, 0.22), transparent 40%),
          linear-gradient(155deg, var(--bg-1), var(--bg-2));
        overflow-x: hidden;
      }

      body::before,
      body::after {
        content: "";
        position: fixed;
        pointer-events: none;
        z-index: 0;
        border-radius: 50%;
        filter: blur(60px);
        opacity: 0.35;
      }

      body::before {
        width: 260px;
        height: 260px;
        background: #34d1ff;
        left: -80px;
        bottom: 8%;
      }

      body::after {
        width: 220px;
        height: 220px;
        background: #ff9f4a;
        right: -70px;
        top: 10%;
      }

      .wrap {
        position: relative;
        z-index: 1;
        width: min(100%, 460px);
        background-repeat: no-repeat;
        margin: 0 auto;
        background-image: url(/image/wheel-bg.png);
        background-size: 100% auto;
        padding:
          calc(env(safe-area-inset-top, 0px) + var(--viewport-top-offset) + 14px)
          calc(env(safe-area-inset-right, 0px) + 12px)
          calc(env(safe-area-inset-bottom, 0px) + var(--viewport-bottom-offset) + 60px)
          calc(env(safe-area-inset-left, 0px) + 12px);
          padding-top: 19vh;
      }

      .hero {
        text-align: center;
        margin: 4px 0 10px;
        animation: fade-up 0.8s ease both;
      }

      .badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 12px;
        border-radius: 999px;
        background: linear-gradient(90deg, rgba(255, 209, 102, 0.24), rgba(37, 244, 199, 0.2));
        border: 1px solid rgba(255, 255, 255, 0.24);
        font-size: 12px;
        letter-spacing: 0.8px;
        text-transform: uppercase;
      }

      h1 {
        margin: 10px 0 6px;
        font-size: clamp(28px, 8vw, 40px);
        line-height: 1.1;
        text-shadow: 0 8px 30px rgba(0, 0, 0, 0.38);
      }

      .sub {
        margin: 0 auto;
        max-width: 320px;
        font-size: 11px;
        font-weight: 400;
        line-height: 1.6;
      }

      .wheel-zone {
        margin: 10px auto 12px;
        --wheel-size: min(82vw, 68dvh, 330px);
        width: var(--wheel-size);
        height: var(--wheel-size);
        aspect-ratio: 1 / 1;
        position: relative;
        animation: fade-up 1s 0.18s ease both;
      }

      .wheel-zone.is-idle {
        cursor: pointer;
      }

      .pointer {
        position: absolute;
        left: 50%;
        top: -8px;
        transform: translateX(-50%);
        width: 31px;
        height: 33px;
        background-image: url('/image/arrow.png');
        background-size: cover;
        z-index: 3;
      }

      .wheel-zone.is-idle .pointer {
        animation: idle-pointer-bob 1.85s ease-in-out infinite;
      }

      .wheel-shell {
        position: relative;
        width: 100%;
        height: 100%;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        overflow: hidden;

        padding: 12px;
        /* background-image: url('/image/round-bg.png'); */
            background:
          url('/image/round-bg.png') center / 100% 100% no-repeat,
          radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 62%);

        background-size: 100% 100%;
        box-shadow:
          0 16px 40px rgba(0, 0, 0, 0.35),
          inset 0 2px 0 rgba(255, 255, 255, 0.75);
        /* background: linear-gradient(130deg, #ffe69b, #ffb84d);
      
        box-shadow:
          0 16px 40px rgba(0, 0, 0, 0.35),
          inset 0 2px 0 rgba(255, 255, 255, 0.75); */
      }

      .wheel-zone.is-idle .wheel-shell {
        animation: idle-wheel-float 3.4s ease-in-out infinite;
      }

        .wheel-shell::before {
        content: "";
        position: absolute;
        inset: 14px;
        border-radius: 50%;
        z-index: 2;
        pointer-events: none;
        background:
          conic-gradient(
            from 0deg,
            rgba(255, 255, 255, 0) 0deg,
            rgba(255, 251, 214, 0.28) 42deg,
            rgba(255, 255, 255, 0.06) 74deg,
            rgba(255, 255, 255, 0) 116deg,
            rgba(255, 255, 255, 0) 360deg
          );
        mix-blend-mode: screen;
        opacity: 0.34;
        animation: wheel-sheen 7.2s linear infinite;
      }

      .wheel-shell::after {
        content: "";
        position: absolute;
        inset: 18px;
        border-radius: 50%;
        z-index: 2;
        pointer-events: none;
        background:
          radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0) 0 56%, rgba(255, 255, 255, 0.05) 64%, rgba(255, 255, 255, 0) 76%),
          conic-gradient(
            from 20deg,
            rgba(255, 255, 255, 0) 0deg,
            rgba(255, 245, 188, 0.2) 18deg,
            rgba(255, 255, 255, 0) 36deg,
            rgba(255, 255, 255, 0) 174deg,
            rgba(162, 198, 255, 0.12) 194deg,
            rgba(255, 255, 255, 0) 214deg,
            rgba(255, 255, 255, 0) 360deg
          );
        mix-blend-mode: screen;
        opacity: 0.16;
        animation: sector-glimmer 5.8s ease-in-out infinite;
      }

      .wheel-shell.is-loading .wheel {
        opacity: 0.34;
      }

      .wheel-shell.is-loading .spin-btn {
        opacity: 0.92;
        filter: saturate(0.9) brightness(0.95);
        pointer-events: none;
      }

      .wheel-loading {
        position: absolute;
        inset: 12px;
        border-radius: 50%;
        z-index: 7;
        display: none;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: radial-gradient(circle at 50% 38%, rgba(8, 29, 47, 0.66), rgba(4, 15, 24, 0.8));
        pointer-events: none;
      }

      .wheel-shell.is-loading .wheel-loading {
        display: flex;
      }

      .wheel-loading-inner {
        width: min(72%, 190px);
      }

      .wheel-loading-title {
        margin: 0;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 0.4px;
      }

      .wheel-loading-text {
        margin-top: 6px;
        font-size: 12px;
        opacity: 0.9;
      }

      .wheel-loading-bar {
        margin-top: 10px;
        height: 6px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.18);
        overflow: hidden;
      }

      .wheel-loading-bar > span {
        display: block;
        width: 0%;
        height: 100%;
        border-radius: inherit;
        background: linear-gradient(90deg, #72efff, #33d9ad);
        transition: width 0.2s ease;
      }

      .wheel {
        --spin-duration: 5.1s;
        --spin-easing: cubic-bezier(0.16, 0.84, 0.22, 1);
        width: 100%;
        height: 100%;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        transition:
          transform var(--spin-duration) var(--spin-easing),
          filter 0.35s ease;
        transform: rotate(0deg);
        background-image: url(/image/wheel.png);
        background-size: 100% 100%;
        /* background: conic-gradient(
          #ffc84f 0deg 60deg,
          #ff8ea2 60deg 120deg,
          #9be7ff 120deg 180deg,
          #98f3cd 180deg 240deg,
          #b6a8ff 240deg 300deg,
          #ffd89d 300deg 360deg
        ); */
        position: relative;
        will-change: transform;
      }

      .wheel::after {
        /* content: "";
        position: absolute;
        inset: 16%;
        border-radius: 50%;
        background: radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.05));
        border: 1px solid rgba(255, 255, 255, 0.55); */
      }

      .wheel-label {
        position: absolute;
        left: 50%;
        top: 14%;
        width: 55px;
        transform: translateX(-50%);
        text-align: center;
        font-size: 12px;
        font-weight: 700;
        color: rgba(108, 72, 36, 1);
        line-height: 1.15;
        pointer-events: none;
      }
      .wheel-item:nth-child(2n -1) span {
        color: rgba(249, 229, 163, 1);
      }
      .wheel-item {
        position: absolute;
        inset: 0;
      }

      .spin-btn {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 162px;
        height: 180px;
        border-radius: 50%;
        border: none;
        cursor: pointer;
        color: #fff;
        font-size: 19px;
        font-weight: 800;
        letter-spacing: 1px;
        background-image: url('/image/go.png');
        background-size: 100% 100%;
        background-color: transparent;
        z-index: 5;
        opacity: 1;
        filter: drop-shadow(0 10px 18px rgba(7, 15, 33, 0.28));
        transition: transform 0.22s ease, filter 0.22s ease, opacity 0.22s ease;
        will-change: transform, filter;
      }

      .wheel-zone.is-idle .spin-btn {
        animation: idle-spin-btn-breathe 1.9s ease-in-out infinite;
      }

      .spin-btn:active {
        transform: translate(-50%, -50%) scale(0.96);
        filter: drop-shadow(0 6px 12px rgba(7, 15, 33, 0.22)) brightness(0.98);
      }

      .spin-btn[disabled] {
        opacity: 1;
        cursor: not-allowed;
      }

      .wheel-shell.is-spinning .wheel {
        filter: saturate(1.03) brightness(1.02);
      }

      .wheel-shell.is-spinning .spin-btn {
        opacity: 0.96;
        transform: translate(-50%, -50%) scale(0.985);
        filter: drop-shadow(0 8px 14px rgba(7, 15, 33, 0.2)) saturate(0.92) brightness(0.96);
        pointer-events: none;
      }

      .wheel-shell.is-settling .spin-btn {
        opacity: 0.98;
        filter: drop-shadow(0 9px 16px rgba(7, 15, 33, 0.24));
      }

      .panel {
       
        /* border-radius: 18px; */
        padding: 20px 22px;
        /* height: 223px; */
        background-image: url(/image/sec-bg.png);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        animation: fade-up 1s 0.32s ease both;

      }

      .panel h2 {
        padding-left: 8px;
        margin: 0 0 10px;
        font-size: 12px;
        box-shadow: 0px 0.98px 0.88px 0px rgba(0, 0, 0, 0.25);
        line-height: 20px;
        font-weight: 400;
      }

      .steps {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 2fr));
        gap: 10px;
      }

      .step {
        background: rgba(1, 15, 42, 1);
        backdrop-filter: blur(4px);

        border: 1px solid rgba(189, 204, 255, .2);
        border-radius: 6px;
        padding: 8px 8px;
        text-align: center;
      }
      .step span {
        font-weight: 600;
        line-height: 18px;
        font-size: 14px;
        background: linear-gradient(180deg, #FFE575 3.85%, #FFEBB6 44.06%, #FFB327 92.31%);
        box-shadow: 0px 0.98px 0.88px 0px rgba(0, 0, 0, 0.25);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-fill-color: transparent; 
      }
      .step b {
        display: block;
        margin-top: 3px;
        font-size: 13px;
        line-height: 18px;
        font-weight: 400;
      }

      .cta-bar {
        margin-top: 12px;
        display: flex;
        gap: 10px;
      }

      .btn {
        flex: 1;
        border: none;
        height: 42px;
        border-radius: 9px;
        padding: 6px 12px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.18s ease, opacity 0.18s ease, filter 0.18s ease;
      }

      .btn[disabled] {
        cursor: not-allowed;
      }

      .btn.is-busy {
        opacity: 0.92;
        filter: saturate(0.9) brightness(0.97);
      }

      .btn-main {
        background: linear-gradient(160deg, var(--cta), var(--cta-2));
        color: #fff;
      }

      #contactBtn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        line-height: 1.1;
        background: linear-gradient(180deg, #FFE99E 9.46%, #C9800A 78.94%, #DBA44A 99.82%);
        /* border: 1px solid rgba(255, 255, 255, 0.15); */
        backdrop-filter: blur(3.576488733291626px);
        color: rgba(78, 41, 5, 1);

      }

      .contact-main {
        /* font-size: 18px;
        font-weight: 800;
        letter-spacing: 0.2px; */
      }

      .contact-sub {
        font-size: 11px;
        font-weight: 400;
      }
      .modal-btn-wrap {
        display: flex;
        align-items: center;
        margin-top: 12px;
      }
      .modal-btn-wrap .btn-main,
      .modal-btn-wrap .btn-ghost {
        margin-top: 0 !important;
      }
      .modal-btn-wrap .btn-main {
        margin-right: 10px;
        background: linear-gradient(180deg, #FFE99E 9.46%, #C9800A 78.94%, #DBA44A 99.82%);
        /* border: 1px solid rgba(255, 255, 255, 0.15); */
        backdrop-filter: blur(3.576488733291626px);
        color: rgba(78, 41, 5, 1);
      }
      .btn-ghost {
        background: linear-gradient(180deg, #3EBAFF 9.46%, #002FEB 82.18%, #006FAC 100%);
/* border: 1px solid rgba(255, 255, 255, 0.15); */
        color: var(--text);
        backdrop-filter: blur(3.576488733291626px);
        
      }

      .note {
        margin: 7px 0 0;
        box-shadow: 0px 0.98px 0.88px 0px rgba(0, 0, 0, 0.25);
        font-size: 11px;
        line-height: 18px;
        color: #fff;
      }

      .sticky {
        position: fixed;
        left: 50%;
        bottom: calc(env(safe-area-inset-bottom, 0px) + var(--viewport-bottom-offset) + 10px);
        transform: translateX(-50%);
        width: min(92vw, 420px);
        z-index: 12;
        background: rgba(1, 15, 42, 1);
        border: 1px solid rgba(233, 244, 255, 0.34);


        border-radius: 6px;
        backdrop-filter: blur(4px);
        padding: 7px 12px;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .sticky p {
        margin: 0;
        font-size: 12px;
        line-height: 1.35;
        font-weight: 400;
        flex: 1;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        color: #fff;
      }

      .sticky .btn-main {
        flex: 0 0 auto;
        padding: 0px 8px;
        font-size: 12px;
        font-weight: 600;
        height: 21px;
        line-height: 18px;
        border-radius: 5px;
        animation: glow 1.35s ease-in-out infinite;
        background: linear-gradient(180deg, #FFE99E 9.46%, #C9800A 78.94%, #DBA44A 99.82%);
        backdrop-filter: blur(2.6739048957824707px);
        color: rgba(78, 41, 5, 1);
        
      }

      .contact-opening-overlay {
        position: fixed;
        inset: 0;
        z-index: 18;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px;
        background: rgba(3, 10, 22, 0.58);
        backdrop-filter: blur(7px);
      }

      .contact-opening-overlay.show {
        display: flex;
      }

      .contact-opening-card {
        width: min(100%, 320px);
        padding: 22px 18px 18px;
        border-radius: 18px;
        text-align: center;
        background:
          radial-gradient(circle at top, rgba(255, 230, 128, 0.2), rgba(255, 230, 128, 0) 45%),
          linear-gradient(180deg, rgba(17, 35, 62, 0.96), rgba(7, 19, 38, 0.96));
        border: 1px solid rgba(255, 243, 196, 0.22);
        box-shadow:
          0 24px 50px rgba(0, 0, 0, 0.34),
          inset 0 1px 0 rgba(255, 255, 255, 0.1);
      }

      .contact-opening-spinner {
        width: 52px;
        height: 52px;
        margin: 0 auto 14px;
        border-radius: 50%;
        border: 4px solid rgba(255, 255, 255, 0.16);
        border-top-color: #ffd86a;
        border-right-color: #5eead4;
        animation: contact-opening-spin 0.88s linear infinite;
      }

      .contact-opening-title {
        margin: 0;
        font-size: 20px;
        font-weight: 800;
        color: #fff4c4;
        letter-spacing: 0.3px;
      }

      .contact-opening-desc {
        margin: 8px 0 0;
        font-size: 13px;
        line-height: 1.6;
        color: rgba(234, 243, 255, 0.9);
      }

      .overlay {
        position: fixed;
        inset: 0;
        background: rgba(2, 13, 22, 0.7);
        backdrop-filter: blur(4px);
        display: none;
        align-items: center;
        justify-content: center;
        padding: 18px;
        z-index: 20;
      }

      .overlay.show {
        display: flex;
      }

      .modal {
        width: min(100%, 360px);
        background: rgba(27, 40, 66, 1);
        border: 1px solid rgba(233, 244, 255, .2);
        backdrop-filter: blur(4px);

        border-radius: 12px;
        padding: 0 14px 16px;
        text-align: center;
        animation: pop 0.36s ease;
      }

      .gift {
        font-size: 32px;
      }

      .modal h3 {
        margin: 20px auto 8px;
        font-size: 16px;
        
      }
      .rule-modal h3 {
        margin-top: 0;
        width: 164px;
        height: 64px;
        background-image: url('/image/rule-bg.png');
        background-size: 100% auto;
        background-repeat: no-repeat;
        color: rgba(6, 4, 2, 1);
      }
      .modal .btn {
        font-size: 15px;
      }
      .modal p {
        
        margin: 0;
        font-size: 14px;
        line-height: 1.6;
        opacity: 0.94;
      }

      .prize-focus {
        margin: 8px 0 10px;
        padding: 10px 12px;
        border-radius: 12px;
        background: linear-gradient(120deg, rgba(255, 209, 102, 0.22), rgba(37, 244, 199, 0.2));
        border: 1px solid rgba(255, 255, 255, 0.34);
      }

      .prize-focus-label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.8px;
        opacity: 0.9;
        text-transform: uppercase;
      }

      #prizeName {
        margin-top: 2px;
        font-size: 24px;
        font-weight: 900;
        line-height: 1.2;
        color: #ffe89f;
        text-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
        word-break: break-word;
      }

      #deadlineText {
        margin-top: 8px;
        font-size: 13px;
        color: var(--gold);
      }

      .lock-box {
        margin-top: 10px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: 12px;
        padding: 10px;
        text-align: left;
      }

      .lock-title {
        font-size: 12px;
        opacity: 0.9;
      }

      .lock-box strong {
        display: block;
        margin-top: 2px;
        font-size: 18px;
        color: var(--gold);
      }

      .helper {
        margin-top: 6px;
        font-size: 12px;
        opacity: 0.9;
      }

      .code-row {
        margin-top: 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
      }

      #claimCode {
        display: inline-block;
        padding: 6px 10px;
        border-radius: 8px;
        background: rgba(0, 0, 0, 0.22);
        letter-spacing: 0.8px;
        font-size: 12px;
      }

      #copyCode {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: #fff;
        border-radius: 8px;
        font-size: 12px;
        padding: 6px 10px;
        cursor: pointer;
      }

      .progress {
        height: 7px;
        margin-top: 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.15);
        overflow: hidden;
      }

      #progressFill {
        display: block;
        width: 80%;
        height: 100%;
        background: linear-gradient(90deg, #f5d46a, #22e3ad);
      }

      .progress-text {
        margin-top: 6px;
        font-size: 12px;
        opacity: 0.9;
      }

      .modal .btn-main {
        width: 100%;
        margin-top: 14px;
      }

      .modal .btn-ghost {
        width: 100%;
        margin-top: 8px;
      }

      .quit-modal h3 {
        font-size: 20px;
      }

      .quit-modal p {
        margin-top: 8px;
      }

      .limit-note {
        margin-top: 10px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 10px;
        font-size: 13px;
        line-height: 1.45;
      }

      .limit-tip {
        margin-top: 8px;
        font-size: 12px;
        opacity: 0.88;
      }

      .rules-list {
        margin-top: 10px;
        text-align: left;
        background: rgba(48, 61, 85, 1);
        border-radius: 12px;
        padding: 10px 12px;
      }

      .rules-item {
        font-size: 12px;
        line-height: 1.5;
        font-weight: 400;
      }

      .rules-item + .rules-item {
        margin-top: 8px;
      }

      .rules-section {
        margin-top: 10px;
        text-align: left;
      }

      .rules-section h4 {
        margin: 0 0 6px;
        font-size: 14px;
        color: var(--gold);
      }

      .rules-section p {
        margin: 0;
        font-size: 13px;
        line-height: 1.5;
      }

      .rules-table-wrap {
        margin-top: 8px;
        border-radius: 10px;
        overflow: hidden;
        background-color:rgba(48, 61, 85, 1) ;
      }

      .rules-table {
        width: 100%;
        border-collapse: collapse;
      }

      .rules-table th,
      .rules-table td {
        padding: 8px;
        font-size: 12px;
        text-align: center;
      }

      .rules-table th {
        background: rgba(85, 104, 141, 1);
        font-weight: 400;
        text-align: center;
      }
      .rules-table tr:nth-child(2n) {
        background-color:rgba(63, 77, 103, 1) ;
      }
      .rules-table td:first-child {
        font-weight: 400;
        color: rgba(255, 253, 218, 1);
      }

      .rules-table td:last-child {
        font-weight: 400;
        color: rgba(255, 187, 0, 1);
      }

      .rules-table tr:last-child td {
        border-bottom: none;
      }

      #rulesOverlay .modal {
        max-height: min(86vh, 720px);
        display: flex;
        flex-direction: column;
      }

      .rules-body {
        margin-top: 8px;
        padding-bottom: 10px;
        overflow: auto;
        padding-right: 2px;
      }

      .rules-highlights {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
      }

      .rules-pill {
        /* background: rgba(255, 255, 255, 0.1); */
        /* border: 1px solid rgba(255, 255, 255, 0.2); */
        padding: 8px;
      }

      .rules-pill b {
        display: block;
        font-size: 13px;
        color: #fff;
        font-weight: 500;
        line-height: 1.35;
      }

      .rules-pill span {
        display: block;
        margin-top: 2px;
        line-height: 1.35;
        font-size: 11px;
        color: rgba(105, 111, 133, 1);
      }

      .rules-collapse {
        margin-top: 10px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 8px 10px;
        text-align: left;
      }

      .rules-collapse summary {
        cursor: pointer;
        font-size: 12px;
        font-weight: 400;
        color: rgba(255, 187, 0, 1);
      }

      .rules-collapse p {
        margin: 8px 0 0;
        font-size: 12px;
        line-height: 1.5;
      }

      @keyframes fade-up {
        from {
          opacity: 0;
          transform: translateY(14px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes pop {
        from {
          transform: scale(0.88);
          opacity: 0;
        }

        to {
          transform: scale(1);
          opacity: 1;
        }
      }

      @keyframes glow {
        0% {
          box-shadow: 0 0 0 0 rgba(0, 208, 132, 0.45);
        }

        70% {
          box-shadow: 0 0 0 12px rgba(0, 208, 132, 0);
        }

        100% {
          box-shadow: 0 0 0 0 rgba(0, 208, 132, 0);
        }
      }

      @keyframes contact-opening-spin {
        from {
          transform: rotate(0deg);
        }

        to {
          transform: rotate(360deg);
        }
      }

      @keyframes idle-wheel-float {
        0%,
        100% {
          transform: translateY(0) scale(1);
        }

        50% {
          transform: translateY(-6px) scale(1.012);
        }
      }

      @keyframes idle-spin-btn-breathe {
        0%,
        100% {
          transform: translate(-50%, -50%) scale(1);
          filter: drop-shadow(0 10px 18px rgba(7, 15, 33, 0.28));
        }

        55% {
          transform: translate(-50%, -50%) scale(1.045);
          filter: drop-shadow(0 14px 24px rgba(255, 195, 74, 0.24)) brightness(1.06);
        }
      }

      @keyframes idle-pointer-bob {
        0%,
        100% {
          transform: translateX(-50%) translateY(0) rotate(0deg);
        }

        50% {
          transform: translateX(-50%) translateY(-3px) rotate(-6deg);
        }
      }

      @media (max-width: 380px) {
        .steps {
          /* grid-template-columns: 1fr; */
        }

        .cta-bar {
          /* flex-direction: column; */
        }
      }

      @media (max-height: 760px) {
        .wrap {
          padding-top: calc(env(safe-area-inset-top, 0px) + 22vh);
        }

        .sub {
          line-height: 15px;
        }

        .wheel-zone {
          margin-top: 8px;
          margin-bottom: 10px;
        }
      }
      @media (min-width: 760px) {
        .wrap {
          padding-top: 16vh;
        }
        .sub {
          font-size: 14px;
        }
        .panel h2 {
          font-size: 14px;
          line-height: 35px;
          padding-left: 15px;
        }
        .note {
          line-height: 35px;
          font-size: 14px;
        }
      }
