    :root {
      --bg: #0b0f19;
      --card: #141b2d;
      --card-border: #1e293b;
      --text: #e2e8f0;
      --muted: #94a3b8;
      --line: #1e293b;
      --field: #0f172a;
      --primary: #10b981;
      --primary-2: #34d399;
      --success: #10b981;
      --danger: #ef4444;
      --shadow: 0 1px 3px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.04);
      --radius: 8px;
      --font: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: var(--font);
      -webkit-tap-highlight-color: transparent;
    }

    body {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      padding: 22px 14px 40px;
      color: var(--text);
      background: #0b0f19;
    }

    .bg-noise {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      background-image: none;
      background-size: 22px 22px;
      opacity: .6;
    }

    .offer-bar {
      position: fixed;
      top: 14px;
      left: 50%;
      transform: translateX(-50%);
      width: min(980px, calc(100% - 24px));
      background: #141b2d;
      border: 1px solid #1e293b;
      box-shadow: 0 1px 4px rgba(0,0,0,0.08);
      border-radius: 10px;
      padding: 10px 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      z-index: 50;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }

    .offer-left {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }

    .gift {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #10b981, #059669);
      color: #ffffff;
      box-shadow: 0 2px 6px rgba(16, 185, 129, 0.2);
      flex: 0 0 auto;
      animation: giftPulse 2.2s ease-in-out infinite;
    }

    @keyframes giftPulse {

      0%,
      100% {
        transform: translateY(0) scale(1);
      }

      50% {
        transform: translateY(-1px) scale(1.04);
      }
    }

    .offer-text {
      font-size: 13px;
      color: #cbd5e1;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .code {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 2px 8px;
      border-radius: 8px;
      background: rgba(16, 185, 129, 0.08);
      color: var(--primary);
      font-weight: 800;
      letter-spacing: .4px;
    }

    .offer-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      flex: 0 0 auto;
    }

    .btn-pill {
      border: none;
      cursor: pointer;
      border-radius: 6px;
      padding: 8px 12px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .2px;
    }

    .btn-applybar {
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      color: #fff;
      box-shadow: 0 2px 6px rgba(16, 185, 129, 0.2);
    }

    .btn-closebar {
      background: transparent;
      color: #7c8699;
      padding: 8px 10px;
    }

    .btn-closebar:hover {
      background: #1a2332;
    }

    .wrap {
      width: min(980px, 100%); max-width: 100%;
      margin-top: 72px;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 16px;
      align-items: start;
    }

    .card {
      background: var(--card);
      border: 1px solid var(--card-border);
      border-radius: 10px;
      box-shadow: var(--shadow);
      padding: 22px;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      overflow: hidden;
      animation: in .55s cubic-bezier(.16, 1, .3, 1) both;
    }

    @keyframes in {
      from {
        opacity: 0;
        transform: translateY(18px) scale(.985);
      }

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


    /* Game Logo in Form */
    .game-logo-wrap {
      display: flex;
      justify-content: center;
      margin-bottom: 8px;
    }
    .game-logo {
      width: 72px;
      height: 72px;
      border-radius: 16px;
      object-fit: cover;
      border: 2px solid var(--line);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }

    .header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
    }

    .title {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .title h1 {
      font-size: 24px;
      line-height: 1.1;
      letter-spacing: -0.2px;
    }

    .title p {
      font-size: 14px;
      color: var(--muted);
    }

    .trust {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
      color: #cbd5e1;
      font-size: 12px;
      font-weight: 700;
      opacity: .9;
    }

    .trust .dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--success);
      box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
    }

    .progress {
      margin-top: 4px;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .progress small {
      color: var(--muted);
      font-weight: 700;
      font-size: 12px;
    }

    .track {
      flex: 1;
      height: 8px;
      background: #1e293b;
      border-radius: 999px;
      overflow: hidden;
    }

    .fill {
      height: 100%;
      width: 25%;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      border-radius: 999px;
      transition: width .35s ease;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .field {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    label {
      font-size: 12px;
      font-weight: 800;
      color: #7c8699;
      letter-spacing: .2px;
    }

    .input {
      width: 100%;
      padding: 14px 14px;
      border-radius: 8px;
      border: 1.5px solid #1e293b;
      background: var(--field);
      outline: none;
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .input:focus {
      background: #141b2d;
      border-color: #10b981;
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    }

    .hint {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.2;
      min-height: 14px;
    }

    .state {
      position: absolute;
      right: 12px;
      top: 39px;
      font-size: 18px;
      transform: scale(0);
      transition: transform .18s ease;
    }

    .field.ok .state {
      transform: scale(1);
      color: var(--success);
    }

    .field.bad .state {
      transform: scale(1);
      color: var(--danger);
    }

    .field.bad .input {
      border-color: rgba(239, 68, 68, .65);
      background: rgba(239, 68, 68, 0.06);
      box-shadow: none;
    }

    .choice {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 6px;
    }

    .opt {
      position: relative;
    }

    .opt input {
      display: none;
    }

    .pill {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 10px;
      border-radius: 8px;
      border: 1.5px solid #1e293b;
      background: #141b2d;
      cursor: pointer;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
      user-select: none;
      min-height: 52px;
    }

    .pill img {
      height: 20px;
      width: auto;
      opacity: .9;
    }

    .pill span {
      font-size: 13px;
      font-weight: 800;
      color: #cbd5e1;
    }

    .opt:hover .pill {
      transform: translateY(-1px);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .opt input:checked+.pill {
      border-color: rgba(16, 185, 129, .7);
      background: rgba(16, 185, 129, 0.08);
      box-shadow: 0 12px 24px rgba(16, 185, 129, .16);
      transform: translateY(-1px);
    }

    /* Promo Banner */
    .promo-banner {
      background: rgba(16, 185, 129, 0.08);
      border: 1.5px solid rgba(16, 185, 129, 0.2);
      border-radius: 8px;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      grid-column: 1 / -1;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.3s ease;
      animation: bannerSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .promo-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      animation: bannerShimmer 3s 1s ease-in-out infinite;
    }

    @keyframes bannerSlideIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }

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

    @keyframes bannerShimmer {
      0% {
        left: -100%;
      }

      30% {
        left: 100%;
      }

      100% {
        left: 100%;
      }
    }

    .promo-banner:hover {
      border-color: #10b981;
      box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
      transform: translateY(-1px);
    }

    .promo-banner-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      background: linear-gradient(135deg, #10b981, #059669);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: white;
      box-shadow: 0 2px 6px rgba(16, 185, 129, 0.2);
    }

    .promo-banner-text {
      flex: 1;
      line-height: 1.3;
    }

    .promo-banner-title {
      font-size: 13px;
      font-weight: 800;
      color: #10b981;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .promo-banner-title .code {
      background: rgba(16, 185, 129, 0.15);
      color: #6ee7b7;
      padding: 1px 7px;
      border-radius: 5px;
      font-size: 12px;
      letter-spacing: 0.5px;
    }

    .promo-banner-sub {
      font-size: 11.5px;
      color: #7c8699;
      margin-top: 1px;
    }

    .promo-banner-close {
      background: none;
      border: none;
      color: #7c8699;
      font-size: 18px;
      cursor: pointer;
      padding: 4px;
      line-height: 1;
      opacity: 0.5;
      transition: opacity 0.2s;
    }

    .promo-banner-close:hover {
      opacity: 1;
    }

    .promo-banner.hidden {
      display: none;
    }

    .coupon-area {
      position: relative;
      height: 60px;
      perspective: 1000px;
      margin-bottom: 5px;
    }

    .modern-coupon-wrapper {
      display: flex;
      align-items: center;
      background: #141b2d;
      border: 1.5px dashed #a7f3d0;
      border-radius: 8px;
      padding: 5px;
      transition: all 0.3s ease;
      height: 100%;
      position: absolute;
      width: 100%;
      z-index: 2;
      backface-visibility: hidden;
    }

    .modern-coupon-wrapper:focus-within {
      border-color: #10b981;
      border-style: solid;
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
      background: #141b2d;
    }

    .modern-coupon-wrapper.shake {
      animation: shake 0.4s ease-in-out;
      border-color: var(--danger);
      border-style: solid;
    }

    .coupon-icon-box {
      padding: 0 14px;
      color: var(--muted);
      font-size: 20px;
      display: flex;
      align-items: center;
    }

    .coupon-input {
      flex: 1;
      border: none;
      background: transparent;
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      text-transform: uppercase;
      outline: none;
      letter-spacing: 1px;
    }

    .coupon-input::placeholder {
      text-transform: none;
      letter-spacing: normal;
      font-weight: 500;
      color: var(--muted);
    }

    .modern-apply-btn {
      background: #1a2332;
      color: var(--muted);
      border: none;
      padding: 0 20px;
      height: 46px;
      border-radius: 8px;
      font-weight: 700;
      cursor: not-allowed;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 80px;
    }

    .modern-apply-btn.is-ready {
      background: var(--primary);
      color: #fff;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .modern-apply-btn.is-ready:hover {
      transform: scale(1.05);
      background: #059669;
    }

    .btn-loader {
      width: 16px;
      height: 16px;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-top: 2px solid white;
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
      display: none;
    }

    .modern-apply-btn.loading .btn-text {
      display: none;
    }

    .modern-apply-btn.loading .btn-loader {
      display: block;
    }

    .success-ticket {
      position: absolute;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #d4a017 0%, #f5d76e 30%, #c8982c 60%, #e8c547 100%);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      color: #4a3000;
      z-index: 1;
      transform: rotateX(-90deg);
      transform-origin: top;
      transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      opacity: 0;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(253, 185, 49, 0);
    }

    .success-ticket.active {
      transform: rotateX(0deg);
      opacity: 1;
      z-index: 3;
      box-shadow: 0 4px 24px rgba(212, 160, 23, 0.5), 0 0 40px rgba(245, 215, 110, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    }

    .ticket-shimmer {
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      z-index: 4;
      pointer-events: none;
    }

    .success-ticket.active .ticket-shimmer {
      animation: ticketShimmer 1.2s 0.4s ease-out forwards;
    }

    @keyframes ticketShimmer {
      0% {
        left: -100%;
      }

      100% {
        left: 100%;
      }
    }

    .ticket-left {
      display: flex;
      flex-direction: column;
    }

    .ticket-amount {
      font-size: 24px;
      font-weight: 900;
      color: #3d2600;
      line-height: 1;
    }

    .ticket-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
      opacity: 0.8;
    }

    .ticket-right {
      display: flex;
      align-items: center;
      gap: 6px;
      font-weight: 700;
      font-size: 14px;
      background: rgba(74, 48, 0, 0.25);
      padding: 6px 12px;
      border-radius: 20px;
    }

    .ticket-punch-top,
    .ticket-punch-bottom {
      position: absolute;
      width: 16px;
      height: 16px;
      background: var(--card);
      border-radius: 50%;
      left: 70%;
    }

    .ticket-punch-top {
      top: -8px;
    }

    .ticket-punch-bottom {
      bottom: -8px;
    }

    .modern-coupon-wrapper.folded {
      transform: rotateX(90deg);
      opacity: 0;
    }

    @keyframes shake {

      0%,
      100% {
        transform: translateX(0);
      }

      20%,
      60% {
        transform: translateX(-5px);
      }

      40%,
      80% {
        transform: translateX(5px);
      }
    }

    .cta {
      margin-top: 2px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .submit {
      width: 100%;
      border: none;
      cursor: pointer;
      border-radius: 8px;
      padding: 16px 14px;
      color: #fff;
      font-size: 15px;
      font-weight: 900;
      letter-spacing: .2px;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
      transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .submit:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
      filter: brightness(1.03);
    }

    .submit:active {
      transform: translateY(0);
    }

    .legal {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.35;
    }

    .legal a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 800;
    }

    .legal a:hover {
      text-decoration: underline;
    }

    .side {
      position: sticky;
      top: 86px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .benefit {
      padding: 18px;
      border-radius: 22px;
      background: #141b2d;
      border: 1px solid #1e293b;
      color: #e2e8f0;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }

    .benefit h3 {
      font-size: 15px;
      margin-bottom: 10px;
      letter-spacing: -0.1px;
    }

    .list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      font-size: 13px;
      color: #94a3b8;
    }

    .li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .tick {
      width: 22px;
      height: 22px;
      border-radius: 4px;
      background: rgba(16, 185, 129, .12);
      color: var(--primary);
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      margin-top: 1px;
    }

    .mini {
      padding: 16px 18px;
      border-radius: 22px;
      background: #141b2d;
      border: 1px solid #1e293b;
      color: #94a3b8;
      font-size: 13px;
      line-height: 1.35;
    }

    .modal-overlay {
      position: fixed;
      inset: 0;
      background: #059669;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      z-index: 2000;
      opacity: 0;
      pointer-events: none;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 18px;
    }

    .modal-overlay.active {
      opacity: 1;
      pointer-events: all;
    }

    .process-card {
      width: min(400px, 100%);
      background: #141b2d;
      border-radius: 10px;
      padding: 32px 28px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
      transform: translateY(20px) scale(.95);
      transition: transform .4s cubic-bezier(.16, 1, .3, 1);
      text-align: center;
    }

    .modal-overlay.active .process-card {
      transform: translateY(0) scale(1);
    }

    /* Modern Processing Animation */
    .proc-anim {
      position: relative;
      width: 100px;
      height: 100px;
      margin: 0 auto 24px;
    }
    .proc-orbit {
      position: absolute;
      inset: 0;
      animation: procSpin 2s linear infinite;
    }
    .proc-dot {
      position: absolute;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #10b981;
    }
    .proc-dot.d1 { top: 0; left: 50%; transform: translateX(-50%); }
    .proc-dot.d2 { bottom: 8px; left: 8px; opacity: 0.5; background: #34d399; }
    .proc-dot.d3 { bottom: 8px; right: 8px; opacity: 0.3; background: #6ee7b7; }
    @keyframes procSpin {
      to { transform: rotate(360deg); }
    }
    @keyframes spin {
      to { transform: rotate(360deg); }
    }
    .proc-center-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: rgba(16, 185, 129, 0.1);
      border: 2px solid rgba(16, 185, 129, 0.3);
      display: grid;
      place-items: center;
      font-size: 24px;
      color: #10b981;
    }
    .proc-text {
      text-align: center;
      margin-bottom: 20px;
    }
    .proc-text h2 {
      font-size: 20px;
      font-weight: 700;
      color: #e2e8f0;
      margin: 0 0 6px;
      transition: opacity 0.3s;
    }
    .proc-text p {
      font-size: 13px;
      color: #94a3b8;
      margin: 0;
      transition: opacity 0.3s;
    }
    .proc-bar-wrap {
      height: 4px;
      background: #1e293b;
      border-radius: 4px;
      overflow: hidden;
      margin-bottom: 16px;
    }
    .proc-bar {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, #10b981, #34d399);
      border-radius: 4px;
      transition: width 0.6s ease;
    }

    .process-card .success-state-enter {
      animation: successFadeIn 0.4s ease;
    }

    @keyframes successFadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

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

    @media (max-width: 900px) {
      .wrap {
        grid-template-columns: 1fr;
      }

      .side {
        position: static;
        top: auto;
      }
    }

    @media (max-width: 520px) {
      .row {
        grid-template-columns: 1fr;
      }

      .choice {
        grid-template-columns: 1fr;
      }

      .offer-text {
        white-space: normal;
      }
    }


    @media (max-width: 420px) {
      .offer-bar {
        border-radius: 8px;
        padding: 8px 10px;
        top: 8px;
        width: calc(100% - 16px);
      }
      .gift { width: 28px; height: 28px; }
      .gift ion-icon { font-size: 14px; }
      .offer-text { font-size: 11px; }
      .btn-pill { padding: 6px 10px; font-size: 11px; }
      .wrap { margin-top: 58px; }
      .card { padding: 16px; border-radius: 8px; }
      .title h1 { font-size: 20px; }
      .title p { font-size: 12px; }
      .input { padding: 12px; font-size: 14px; border-radius: 8px; }
      label { font-size: 11px; }
      .submit { padding: 14px; font-size: 14px; border-radius: 8px; }
      .benefit { padding: 14px; border-radius: 8px; }
      .benefit h3 { font-size: 13px; }
      .list { font-size: 12px; gap: 8px; }
      .mini { padding: 12px 14px; font-size: 12px; border-radius: 8px; }
      .promo-banner { padding: 10px 12px; border-radius: 8px; }
      .promo-banner-icon { width: 32px; height: 32px; min-width: 32px; font-size: 16px; border-radius: 8px; }
      .promo-banner-title { font-size: 12px; }
      .promo-banner-sub { font-size: 10.5px; }
      .pill { padding: 10px 8px; min-height: 44px; border-radius: 8px; }
      .pill span { font-size: 12px; }
      .tick { width: 18px; height: 18px; border-radius: 4px; }
      .legal { font-size: 11px; }
      .modern-coupon-wrapper { padding: 12px; border-radius: 8px; }
      .pc-head { font-size: 15px; }
      .pc-sub { font-size: 12px; }
      .success-modal-content { padding: 24px 20px; border-radius: 8px; }
      .success-badge { width: 56px; height: 56px; }
    }

    /* Success Modal */
    .success-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #059669;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2001;
      opacity: 0;
      visibility: hidden;
    }

    .success-modal.active {
      opacity: 1;
      visibility: visible;
    }

    .success-modal-content {
      background: #141b2d;
      border-radius: 10px;
      padding: 36px 28px;
      max-width: 400px;
      width: 90%;
      text-align: center;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
      animation: successPopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
      position: relative;
      overflow: hidden;
    }

    .success-modal-content::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #10b981, #34d399, #6ee7b7, #34d399, #10b981);
      background-size: 200% 100%;
      animation: shimmerBar 2s linear infinite;
    }

    @keyframes shimmerBar {
      0% {
        background-position: 200% 0;
      }

      100% {
        background-position: -200% 0;
      }
    }

    @keyframes successPopIn {
      0% {
        transform: scale(0.8) translateY(20px);
        opacity: 0;
      }

      100% {
        transform: scale(1) translateY(0);
        opacity: 1;
      }
    }

    .success-badge {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: linear-gradient(135deg, #ecfdf5, #d1fae5);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      animation: successBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .success-badge ion-icon {
      font-size: 36px;
      color: #10b981;
    }

    @keyframes successBounce {
      0% {
        transform: scale(0);
      }

      60% {
        transform: scale(1.15);
      }

      100% {
        transform: scale(1);
      }
    }

    .success-modal-content h2 {
      color: #e2e8f0;
      font-size: 22px;
      margin: 0 0 6px 0;
      font-weight: 700;
    }

    .success-modal-content .success-subtitle {
      color: #94a3b8;
      font-size: 14px;
      margin: 0 0 24px 0;
      line-height: 1.5;
    }

    .success-details {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 20px;
    }

    .detail-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 14px;
      border-radius: 6px;
      background: #0b0f19;
      border: 1px solid #1e293b;
      font-size: 14px;
      font-weight: 500;
      color: #7c8699;
      text-align: left;
    }

    .detail-item .detail-check {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: #10b981;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .detail-item .detail-check ion-icon {
      font-size: 13px;
      color: white;
    }

    .success-bonus {
      background: linear-gradient(135deg, #ecfdf5, #d1fae5);
      border: 1px solid #a7f3d0;
      border-radius: 8px;
      padding: 14px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .success-bonus .bonus-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: linear-gradient(135deg, #d4a017 0%, #f5d76e 30%, #c8982c 60%, #e8c547 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .success-bonus .bonus-icon ion-icon {
      font-size: 20px;
      color: white;
    }

    .success-bonus .bonus-text {
      text-align: left;
    }

    .success-bonus .bonus-text strong {
      display: block;
      font-size: 15px;
      color: #6ee7b7;
      font-weight: 700;
    }

    .success-bonus .bonus-text span {
      font-size: 12px;
      color: #34d399;
    }

    .success-cta {
      background: linear-gradient(135deg, #10b981, #059669);
      color: white;
      border: none;
      padding: 14px 32px;
      font-size: 15px;
      font-weight: 700;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.2s ease;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
      animation: ctaPulse 2s ease infinite;
    }

    @keyframes ctaPulse {

      0%,
      100% {
        box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
      }

      50% {
        box-shadow: 0 4px 24px rgba(16, 185, 129, 0.6);
      }
    }

    .success-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
    }

    .success-cta ion-icon {
      font-size: 18px;
    }

    .success-footer-note {
      margin-top: 14px;
      font-size: 11px;
      color: #94a3b8;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
    }

    .success-footer-note ion-icon {
      font-size: 13px;
      color: #10b981;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.7;
      }
    }

    /* Toast Notification */
    .toast-container {
      position: fixed;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3000;
      pointer-events: none;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .toast {
      background: #141b2d;
      color: #e2e8f0;
      padding: 14px 20px;
      border-radius: 8px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 0 0 1px #1e293b;
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 10px;
      animation: toastSlideDown 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
      pointer-events: auto;
      min-width: 320px;
      max-width: 420px;
      position: relative;
      overflow: hidden;
    }

    .toast::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      background: linear-gradient(90deg, #10b981, #34d399);
      animation: toastProgress 5s linear forwards;
      border-radius: 0 0 14px 14px;
    }

    @keyframes toastProgress {
      from {
        width: 100%;
      }

      to {
        width: 0%;
      }
    }

    @keyframes toastSlideDown {
      from {
        transform: translateY(-30px);
        opacity: 0;
      }

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

    @keyframes toastSlideUp {
      from {
        transform: translateY(0);
        opacity: 1;
      }

      to {
        transform: translateY(-30px);
        opacity: 0;
      }
    }

    .toast.hide {
      animation: toastSlideUp 0.4s ease forwards;
    }

    .toast .toast-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: linear-gradient(135deg, #ecfdf5, #d1fae5);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .toast .toast-icon ion-icon {
      font-size: 18px;
      color: #10b981;
    }

    .toast-body {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .toast-title {
      font-size: 14px;
      font-weight: 700;
      color: #e2e8f0;
    }

    .toast-message {
      font-size: 12px;
      font-weight: 400;
      color: #94a3b8;
    }

    /* Offers Locker Modal */
    .offers-locker-overlay {
      position: fixed;
      inset: 0;
      background: #059669;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      padding: 20px;
      gap: 16px;
    }

    .offers-locker-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .offers-locker-modal {
      background: #141b2d;
      border-radius: 10px;
      padding: 40px 30px;
      max-width: 480px;
      width: 100%;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
      animation: offersSlideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
      text-align: center;
      transform-origin: center center;
    }

    @keyframes offersSlideUp {
      from {
        transform: translateY(40px) scale(0.95);
        opacity: 0;
      }

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

    @keyframes shake {

      0%,
      100% {
        transform: translateX(0);
      }

      10% {
        transform: translateX(-8px);
      }

      20% {
        transform: translateX(8px);
      }

      30% {
        transform: translateX(-8px);
      }

      40% {
        transform: translateX(8px);
      }

      50% {
        transform: translateX(-8px);
      }

      60% {
        transform: translateX(8px);
      }

      70% {
        transform: translateX(-4px);
      }

      80% {
        transform: translateX(4px);
      }

      90% {
        transform: translateX(-2px);
      }
    }

    @keyframes shakeHard {

      0%,
      100% {
        transform: translateX(0);
      }

      5% {
        transform: translateX(-15px);
      }

      10% {
        transform: translateX(15px);
      }

      15% {
        transform: translateX(-15px);
      }

      20% {
        transform: translateX(15px);
      }

      25% {
        transform: translateX(-15px);
      }

      30% {
        transform: translateX(15px);
      }

      35% {
        transform: translateX(-10px);
      }

      40% {
        transform: translateX(10px);
      }

      45% {
        transform: translateX(-5px);
      }

      50% {
        transform: translateX(5px);
      }
    }

    @keyframes shakeTiny {

      0%,
      100% {
        transform: translateX(0);
      }

      25% {
        transform: translateX(-3px);
      }

      50% {
        transform: translateX(3px);
      }

      75% {
        transform: translateX(-3px);
      }
    }

    #offersLockerContent.shake-animation {
      animation: shakeHard 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards !important;
    }

    #offersLockerContent.shake-tiny {
      animation: shakeTiny 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards !important;
    }

    .offers-locker-header {
      margin-bottom: 30px;
    }

    .offers-locker-icon {
      font-size: 64px;
      color: #10b981;
      display: inline-block;
    }

    .offers-locker-header h2 {
      font-size: 26px;
      color: #cbd5e1;
      margin: 12px 0 8px 0;
      font-weight: 700;
      letter-spacing: -0.5px;
    }

    .offers-locker-header p {
      font-size: 15px;
      color: #94a3b8;
      margin: 0;
      line-height: 1.4;
    }

    .offers-locker-header p .highlight {
      color: #10b981;
      font-weight: 700;
    }

    .offers-locker-status {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(16, 185, 129, 0.1);
      color: #10b981;
      padding: 5px 14px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.8px;
      border: 1.5px solid rgba(16, 185, 129, 0.4);
      z-index: 1;
      white-space: nowrap;
      margin-bottom: 12px;
    }

    .offers-locker-status::before {
      content: '';
      width: 6px;
      height: 6px;
      background: #10b981;
      border-radius: 50%;
      animation: statusPulse 1.5s ease infinite;
    }

    @keyframes statusPulse {

      0%,
      100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
      }

      50% {
        opacity: 0.6;
        box-shadow: 0 0 0 4px rgba(245, 158, 11, 0);
      }
    }

    .offers-grid-wrapper {
      position: relative;
      margin-bottom: 20px;
      text-align: center;
    }

    .offers-grid {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 0;
      border: none;
      background: none;
    }

    .offer-button {
      color: white;
      border: none;
      padding: 18px 22px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      min-height: 60px;
      position: relative;
      overflow: visible;
      width: 100%;
      gap: 10px;
      letter-spacing: 0.2px;
    }

    /* Primary offer — green gradient with glow */
    .offer-button.primary {
      background: linear-gradient(135deg, #10b981, #059669);
      box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35), 0 0 0 0 rgba(16, 185, 129, 0.4);
      animation: offerPulseGlow 2s ease-in-out infinite;
    }

    @keyframes offerPulseGlow {

      0%,
      100% {
        box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35), 0 0 0 0 rgba(16, 185, 129, 0.4);
      }

      50% {
        box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35), 0 0 0 8px rgba(16, 185, 129, 0);
      }
    }

    .offer-button.primary:hover {
      transform: translateY(-3px) scale(1.01);
      box-shadow: 0 14px 32px rgba(16, 185, 129, 0.4);
      animation: none;
    }

    .offer-button.primary:active {
      transform: translateY(-1px) scale(0.98);
    }

    /* Secondary offer — blue outline style */
    .offer-button.secondary {
      background: rgba(16, 185, 129, 0.08);
      color: #10b981;
      border: 2px solid #10b981;
      box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
    }

    .offer-button.secondary:hover {
      background: rgba(16, 185, 129, 0.08);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
    }

    .offer-button.secondary:active {
      transform: translateY(-1px) scale(0.98);
    }

    .offer-badge {
      position: absolute;
      top: -9px;
      right: 12px;
      background: linear-gradient(135deg, #f43f5e, #ef4444);
      color: white;
      font-size: 8px;
      font-weight: 800;
      padding: 3px 8px;
      border-radius: 4px;
      letter-spacing: 0.3px;
      box-shadow: 0 2px 8px rgba(244, 63, 94, 0.35);
      z-index: 2;
      text-transform: uppercase;
      white-space: nowrap;
      pointer-events: none;
    }

    .offer-badge.hot {
      background: linear-gradient(135deg, #f97316, #ef4444);
      box-shadow: 0 2px 8px rgba(249, 115, 22, 0.35);
    }

    .offer-badge.easy {
      background: linear-gradient(135deg, #10b981, #059669);
      box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);
    }

    .offer-button .offer-icon {
      font-size: 22px;
      flex-shrink: 0;
    }

    .offer-button .offer-thumb {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      object-fit: cover;
      flex-shrink: 0;
      background: rgba(255, 255, 255, 0.1);
    }

    .offer-button .offer-arrow {
      font-size: 18px;
      flex-shrink: 0;
      margin-left: auto;
      opacity: 0.8;
      transition: transform 0.2s ease;
    }

    .offer-button:hover .offer-arrow {
      transform: translateX(3px);
      opacity: 1;
    }

    .offer-button span {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 10px;
      width: 100%;
      font-weight: 700;
    }

    .offer-button-text {
      flex: 1;
      text-align: left;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .offer-button-text strong {
      font-weight: 700;
      font-size: 13px;
      line-height: 1.2;
    }

    .offer-button-text small {
      font-size: 11px;
      opacity: 0.9;
    }

    .offer-button ion-icon {
      font-size: 24px;
    }

    .offer-loading {
      color: #94a3b8;
      padding: 40px 20px;
      font-size: 15px;
      font-weight: 500;
    }

    .offers-locker-footer {
      padding-top: 0;
      margin-top: 0;
    }

    .awaiting-text {
      font-size: 13px;
      color: #94a3b8;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .awaiting-text::before {
      content: '';
      width: 8px;
      height: 8px;
      background: #10b981;
      border-radius: 50%;
      animation: awaitingPulse 2s infinite;
    }

    @keyframes awaitingPulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.5;
        transform: scale(0.8);
      }
    }

    /* Conversion Elements */
    .locker-progress {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.1);
      padding: 10px 20px;
      border-radius: 30px;
      backdrop-filter: blur(8px);
      flex-shrink: 0;
    }

    .locker-progress-step {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.5);
    }

    .locker-progress-step.done {
      color: #10b981;
    }

    .locker-progress-step.active {
      color: white;
    }

    .locker-progress-step .step-num {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
    }

    .locker-progress-step.done .step-num {
      background: #10b981;
      color: white;
    }

    .locker-progress-step.active .step-num {
      background: #e2e8f0;
      color: #059669;
      animation: stepPulse 1.5s ease infinite;
    }

    @keyframes stepPulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
      }

      50% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
      }
    }

    .locker-progress-line {
      flex: 1;
      height: 2px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 1px;
      min-width: 20px;
    }

    .locker-progress-line.done {
      background: #10b981;
    }

    .locker-timer {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      background: rgba(16, 185, 129, 0.1);
      border: 1px solid rgba(16, 185, 129, 0.3);
      border-radius: 8px;
      padding: 2px 9px;
      margin: 0 auto;
      margin-bottom: 16px;
      max-width: fit-content;
      font-size: 13px;
      font-weight: 600;
      color: #10b981;
    }

    .locker-timer ion-icon {
      font-size: 16px;
      color: #10b981;
    }

    .locker-timer .timer-val {
      font-weight: 800;
      color: #dc2626;
      font-variant-numeric: tabular-nums;
    }

    .locker-social {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.6);
      flex-shrink: 0;
    }

    .locker-social .live-dot {
      width: 6px;
      height: 6px;
      background: #10b981;
      border-radius: 50%;
      animation: liveBlink 1.5s ease infinite;
    }

    @keyframes liveBlink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.3;
      }
    }

    .locker-social strong {
      color: white;
      font-weight: 700;
    }

    .locker-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid #1e293b;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 10px;
      color: #94a3b8;
      font-weight: 500;
    }

    .trust-item ion-icon {
      font-size: 13px;
      color: #10b981;
    }

    @media (max-width: 520px) {
      .offers-locker-modal {
        padding: 30px 20px;
      }

      .offers-grid {
        grid-template-columns: 1fr;
      }

      .offers-locker-header h2 {
        font-size: 22px;
      }

      .offers-locker-header p {
        font-size: 14px;
      }

      .offer-button {
        padding: 16px 18px;
        font-size: 15px;
        min-height: 58px;
        border-radius: 8px;
      }

      .offer-button:active {
        transform: scale(0.97) !important;
      }

      .offers-locker-modal {
        padding: 24px 18px;
      }

      .process-card {
        padding: 28px 20px;
      }

      .success-details .detail-item {
        padding: 12px 14px;
      }

      .success-cta {
        padding: 16px 32px;
        font-size: 16px;
        min-height: 52px;
      }
    }

    /* Verification Modal - Cloudflare Style */
    .verification-overlay {
      position: fixed;
      inset: 0;
      background: #059669;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1001;
      opacity: 0;
      visibility: hidden;
      padding: 20px;
    }

    .verification-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .verification-modal {
      background: #141b2d;
      border-radius: 10px;
      max-width: 390px;
      width: 100%;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
      animation: cfFadeIn 0.3s ease;
      text-align: center;
      overflow: hidden;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    }

    @keyframes cfFadeIn {
      from {
        transform: scale(0.96) translateY(8px);
        opacity: 0;
      }

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

    .verification-header {
      padding: 32px 32px 0;
    }

    .verification-icon {
      margin-bottom: 16px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .verification-header h2 {
      font-size: 20px;
      color: #e2e8f0;
      margin: 0 0 8px 0;
      font-weight: 600;
      letter-spacing: -0.3px;
    }

    .verification-header p {
      font-size: 13px;
      color: #94a3b8;
      margin: 0;
      line-height: 1.5;
    }

    .verification-content {
      padding: 24px 32px;
    }

    .turnstile-container {
      display: flex;
      justify-content: center;
    }

    .loading-spinner {
      width: 16px;
      height: 16px;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-top: 2px solid white;
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }

    .verification-footer {
      padding: 14px 32px;
      border-top: 1px solid #1e293b;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      background: #0f172a;
    }

    .verification-footer span {
      font-size: 11px;
      color: #94a3b8;
    }

    .verification-footer .cf-brand {
      font-weight: 600;
      color: #94a3b8;
    }

    @media (max-width: 520px) {
      .verification-modal {
        max-width: 100%;
      }

      .verification-header {
        padding: 24px 20px 0;
      }

      .verification-content {
        padding: 20px;
      }

      .verification-buttons {
        padding: 0 20px 20px;
      }

      .verification-header h2 {
        font-size: 18px;
      }

      .verify-btn {
        padding: 11px 16px;
        font-size: 13px;
      }
    }

    /* Cloudflare Turnstile Widget */
    .fake-turnstile {
      background: #1a2332;
      border: 1px solid #2d3748;
      border-radius: 4px;
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: pointer;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      user-select: none;
      -webkit-user-select: none;
      width: 100%;
      max-width: 300px;
    }

    .fake-turnstile:hover {
      border-color: #4a5568;
    }

    .fake-turnstile.verified {
      border-color: #059669;
      background: rgba(16, 185, 129, 0.08);
    }

    .turnstile-checkbox {
      width: 26px;
      height: 26px;
      min-width: 26px;
      border: 2px solid #4a5568;
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #0f172a;
      transition: all 0.2s ease;
      cursor: pointer;
      flex-shrink: 0;
    }

    .fake-turnstile:hover .turnstile-checkbox {
      border-color: #64748b;
    }

    .fake-turnstile.verified .turnstile-checkbox {
      background: #059669;
      border-color: #059669;
    }

    .turnstile-checkbox-icon {
      color: white;
      font-size: 16px;
      font-weight: 700;
      display: none;
      line-height: 1;
    }

    .fake-turnstile.verified .turnstile-checkbox-icon {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .turnstile-label {
      display: flex;
      flex-direction: column;
      gap: 1px;
      flex: 1;
      text-align: left;
    }

    .turnstile-label-text {
      font-size: 14px;
      font-weight: 400;
      color: #e2e8f0;
    }

    .turnstile-label-subtext {
      font-size: 11px;
      color: #94a3b8;
    }

    .turnstile-branding {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      flex-shrink: 0;
      gap: 3px;
    }

    .turnstile-cf-icon {
      width: 50px;
      opacity: 0.6;
    }

    .turnstile-links {
      font-size: 9px;
      color: #64748b;
    }

    .turnstile-links a {
      color: #94a3b8;
      text-decoration: none;
    }

    .turnstile-links a:hover {
      text-decoration: underline;
    }


    /* Turnstile Verifying Spinner */
    .turnstile-spinner {
      display: none;
      width: 18px;
      height: 18px;
      border: 2.5px solid rgba(16, 185, 129, 0.25);
      border-top-color: #10b981;
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
    }
    .fake-turnstile.verifying .turnstile-checkbox {
      border-color: #10b981;
      background: transparent;
    }
    .fake-turnstile.verifying .turnstile-checkbox-icon {
      display: none !important;
    }
    .fake-turnstile.verifying .turnstile-spinner {
      display: block;
    }
    .fake-turnstile.verifying .turnstile-label-text {
      color: #94a3b8;
    }
    .fake-turnstile.verified .turnstile-spinner {
      display: none;
    }


    /* Pre-Verification Processing */
    .preverify-overlay {
      position: fixed;
      inset: 0;
      background: #0b0f19;
      z-index: 3500;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .preverify-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .preverify-card {
      background: #141b2d;
      border-radius: 16px;
      padding: 40px 32px;
      max-width: 360px;
      width: 100%;
      text-align: center;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
      animation: cfFadeIn 0.3s ease;
    }
    .preverify-spinner {
      width: 48px;
      height: 48px;
      border: 3px solid #1e293b;
      border-top-color: #10b981;
      border-radius: 50%;
      margin: 0 auto 20px;
      animation: spin 0.8s linear infinite;
    }
    .preverify-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: #e2e8f0;
      margin: 0 0 6px;
    }
    .preverify-card p {
      font-size: 13px;
      color: #94a3b8;
      margin: 0 0 20px;
    }
    .preverify-bar-wrap {
      height: 3px;
      background: #1e293b;
      border-radius: 3px;
      overflow: hidden;
    }
    .preverify-bar {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, #10b981, #34d399);
      border-radius: 3px;
      transition: width 0.5s ease;
    }

    /* Account Activated Modal */
    .activated-overlay {
      position: fixed;
      inset: 0;
      background: #059669;
      z-index: 4000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .activated-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .activated-card {
      background: #141b2d;
      border-radius: 10px;
      padding: 44px 32px;
      max-width: 420px;
      width: 100%;
      text-align: center;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
      animation: activatedCardIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
      position: relative;
      z-index: 1;
    }

    @keyframes activatedCardIn {
      from { transform: translateY(30px) scale(0.96); opacity: 0; }
      to { transform: translateY(0) scale(1); opacity: 1; }
    }

    .activated-badge {
      width: 84px;
      height: 84px;
      border-radius: 50%;
      background: linear-gradient(135deg, #d4a017 0%, #f5d76e 30%, #c8982c 60%, #e8c547 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 22px;
      box-shadow: 0 12px 30px rgba(16, 185, 129, 0.3);
      animation: activatedBadgePop 0.5s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    }

    @keyframes activatedBadgePop {
      from { transform: scale(0); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    .activated-badge ion-icon {
      font-size: 42px;
      color: white;
    }

    .activated-card h2 {
      font-size: 24px;
      font-weight: 700;
      color: #e2e8f0;
      margin-bottom: 6px;
      animation: activatedFadeIn 0.5s 0.5s ease both;
    }

    .activated-card .activated-sub {
      font-size: 14px;
      color: #94a3b8;
      line-height: 1.5;
      margin-bottom: 28px;
      animation: activatedFadeIn 0.5s 0.6s ease both;
    }

    @keyframes activatedFadeIn {
      from { transform: translateY(10px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    .activated-details {
      background: #0b0f19;
      border-radius: 8px;
      padding: 16px 20px;
      margin-bottom: 24px;
      text-align: left;
      animation: activatedFadeIn 0.5s 0.7s ease both;
    }

    .activated-row {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px 0;
    }

    .activated-row + .activated-row {
      border-top: 1px solid #1e293b;
    }

    .activated-row ion-icon {
      font-size: 18px;
      color: #10b981;
      flex-shrink: 0;
    }

    .activated-row span {
      font-size: 13px;
      color: #7c8699;
      font-weight: 500;
    }

    .activated-row .activated-val {
      margin-left: auto;
      font-weight: 600;
      color: #10b981;
      font-size: 12px;
    }

    .activated-bonus {
      background: linear-gradient(135deg, #d4a017 0%, #f5d76e 30%, #c8982c 60%, #e8c547 100%);
      border-radius: 8px;
      padding: 16px 18px;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
      animation: activatedFadeIn 0.5s 0.8s ease both;
    }

    .activated-bonus-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      border-radius: 10px;
      background: rgba(255,255,255,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .activated-bonus-icon ion-icon {
      font-size: 22px;
      color: white;
    }

    .activated-bonus-text {
      text-align: left;
    }

    .activated-bonus-text strong {
      display: block;
      color: white;
      font-size: 15px;
      font-weight: 700;
    }

    .activated-bonus-text span {
      color: rgba(255,255,255,0.8);
      font-size: 12px;
    }

    .activated-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 16px 24px;
      background: linear-gradient(135deg, #10b981, #059669);
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
      text-decoration: none;
      animation: activatedFadeIn 0.5s 0.9s ease both;
    }

    .activated-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4);
    }

    .activated-cta ion-icon {
      font-size: 20px;
    }

    .activated-footer {
      margin-top: 20px;
      font-size: 11px;
      color: #94a3b8;
      line-height: 1.5;
      animation: activatedFadeIn 0.5s 1s ease both;
    }

    .activated-footer a {
      color: #10b981;
      text-decoration: none;
      font-weight: 500;
    }

    /* Activated CTA pulse glow */
    @keyframes activatedCtaPulse {
      0%, 100% { box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3); }
      50% { box-shadow: 0 8px 36px rgba(16, 185, 129, 0.55), 0 0 0 6px rgba(16, 185, 129, 0.1); }
    }

    .activated-cta {
      animation: activatedFadeIn 0.5s 0.9s ease both, activatedCtaPulse 2s 1.5s ease-in-out infinite;
    }

    .activated-cta .cta-countdown {
      font-size: 13px;
      font-weight: 500;
      opacity: 0.85;
      margin-left: 2px;
    }

    /* Balance counter in bonus banner */
    .activated-bonus-amount {
      font-variant-numeric: tabular-nums;
    }

    /* Skeleton loading for offers */
    .offer-skeleton {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .skeleton-card {
      background: #1a2332;
      border-radius: 8px;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      gap: 14px;
      position: relative;
      overflow: hidden;
    }

    .skeleton-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
      animation: skeletonShimmer 1.5s infinite;
    }

    @keyframes skeletonShimmer {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    .skeleton-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: #1e293b;
      flex-shrink: 0;
    }

    .skeleton-lines {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .skeleton-line {
      height: 12px;
      border-radius: 6px;
      background: #1e293b;
    }

    .skeleton-line:first-child { width: 70%; }
    .skeleton-line:last-child { width: 45%; }

    .skeleton-badge {
      position: absolute;
      top: -1px;
      right: 14px;
      width: 72px;
      height: 18px;
      border-radius: 0 0 8px 8px;
      background: #1e293b;
    }

    /* Exit-intent overlay */
    .exit-intent-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.75);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .exit-intent-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .exit-intent-card {
      background: #141b2d;
      border-radius: 10px;
      padding: 36px 28px;
      max-width: 380px;
      width: 100%;
      text-align: center;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
      animation: activatedCardIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .exit-intent-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: linear-gradient(135deg, #ef4444, #f87171);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      box-shadow: 0 8px 20px rgba(239, 68, 68, 0.25);
    }

    .exit-intent-icon ion-icon {
      font-size: 32px;
      color: white;
    }

    .exit-intent-card h3 {
      font-size: 20px;
      font-weight: 700;
      color: #e2e8f0;
      margin-bottom: 8px;
    }

    .exit-intent-card p {
      font-size: 14px;
      color: #94a3b8;
      line-height: 1.5;
      margin-bottom: 22px;
    }

    .exit-intent-card p b {
      color: #ef4444;
    }

    .exit-intent-btns {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .exit-intent-stay {
      background: linear-gradient(135deg, #10b981, #059669);
      color: white;
      border: none;
      border-radius: 8px;
      padding: 14px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: transform 0.2s;
    }

    .exit-intent-stay:hover {
      transform: translateY(-1px);
    }

    .exit-intent-leave {
      background: none;
      border: none;
      color: #94a3b8;
      font-size: 12px;
      cursor: pointer;
      padding: 8px;
    }

    @media (max-width: 520px) {
      .activated-card {
        padding: 36px 22px;
        border-radius: 10px;
      }

      .activated-card h2 {
        font-size: 20px;
      }

      .activated-badge {
        width: 68px;
        height: 68px;
      }

      .activated-badge ion-icon {
        font-size: 34px;
      }

      .exit-intent-card {
        padding: 28px 20px;
      }
    }

  
/* Internal Links Section */
.more-games-section { width: 100%;
  padding: 40px 16px;
  max-width: 800px;
  margin: 0 auto;
}
.more-games-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 16px;
  text-align: center;
}
.more-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
.more-games-grid a {
  display: block;
  background: #141b2d;
  border: 1px solid #1e293b;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #cbd5e1;
  text-decoration: none;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}
.more-games-grid a:hover {
  border-color: #34d399;
  background: #1a2332;
}
.back-home {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: #10b981;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.back-home:hover { text-decoration: underline; }
.page-breadcrumb {
  padding: 12px 16px;
  font-size: 13px;
  color: #94a3b8;
}
.page-breadcrumb a {
  color: #10b981;
  text-decoration: none;
}
.page-breadcrumb a:hover { color: #10b981; }

  
    /* System Required Toast */
    .system-toast {
      position: fixed;
      top: 20px;
      left: 50%;
      transform: translateX(-50%) translateY(-120%);
      z-index: 10001;
      background: #141b2d;
      border: 1px solid #1e293b;
      border-radius: 8px;
      padding: 14px 24px;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.1), 0 0 0 1px #1e293b;
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
      opacity: 0;
      pointer-events: none;
      max-width: 90vw;
    }
    .system-toast.visible {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .system-toast-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: linear-gradient(135deg, #10b981, #059669);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }
    .system-toast-body {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .system-toast-title {
      font-size: 14px;
      font-weight: 700;
      color: #e2e8f0;
    }
    .system-toast-msg {
      font-size: 12px;
      color: #94a3b8;
    }
    .system-toast-bar {
      position: absolute;
      bottom: 0;
      left: 14px;
      right: 14px;
      height: 3px;
      border-radius: 2px;
      background: rgba(16,185,129,0.15);
      overflow: hidden;
    }
    .system-toast-bar::after {
      content: "";
      display: block;
      height: 100%;
      width: 100%;
      background: linear-gradient(90deg, #10b981, #34d399);
      border-radius: 2px;
      animation: sysToastCountdown 5s linear forwards;
      transform-origin: left;
    }
    .system-toast.visible .system-toast-bar::after {
      animation: sysToastCountdown 5s linear forwards;
    }
    @keyframes sysToastCountdown {
      from { transform: scaleX(1); }
      to { transform: scaleX(0); }
    }

    @media (max-width: 768px) {
      .system-toast {
        left: 12px;
        right: 12px;
        top: 12px;
        transform: translateX(0) translateY(-120%);
        max-width: none;
        width: auto;
        border-radius: 12px;
        padding: 12px 16px;
      }
      .system-toast.visible {
        transform: translateX(0) translateY(0);
      }
    }


    
