
    @import url("css2");

    body {
      font-family: 'Inter', sans-serif;
    }
  


    .main-bg {
      background-color: #E91E63;
      /* The primary pinkish-red background */
    }

    .header-bg {
      background: linear-gradient(to bottom, #512DA8, #673AB7);
    }

    .card-pink {
      background-color: #F8BBD0;
    }

    .card-white {
      background-color: #FFFFFF;
    }

    .action-btn {
      transition: transform 120ms ease, box-shadow 120ms ease, filter 120ms ease;
      will-change: transform;
    }

    .action-btn:active {
      transform: translateY(1px) scale(0.97);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
      filter: brightness(0.92);
    }

    .action-btn:focus-visible {
      outline: 2px solid rgba(255, 255, 255, 0.85);
      outline-offset: 2px;
    }

    .modal-overlay {
      background: rgba(0, 0, 0, 0.6);
    }

    .text-accent-pink {
      color: #e91e63;
    }

    @keyframes pulse-dots {

      0%,
      100% {
        opacity: 0.3;
      }

      50% {
        opacity: 1;
      }
    }

    .dot-animation {
      animation: pulse-dots 1.5s infinite ease-in-out;
    }

    .dot-delay-1 {
      animation-delay: 0.2s;
    }

    .dot-delay-2 {
      animation-delay: 0.4s;
    }

    .modal-shadow {
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .pay-btn-shadow {
      box-shadow: 0 4px 10px rgba(233, 30, 99, 0.4);
    }

    .sticky-download-shell {
      background: radial-gradient(circle at 50% 100%, rgba(255, 0, 155, 0.34), transparent 62%);
    }

    .neon-download-btn {
      background: linear-gradient(135deg, #ff00bf 0%, #ff2f92 45%, #ff6b22 100%);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.22) inset,
        0 6px 14px rgba(95, 0, 48, 0.4),
        0 0 18px rgba(255, 0, 191, 0.82),
        0 0 38px rgba(255, 80, 41, 0.58);
      text-shadow: 0 2px 4px rgba(95, 0, 48, 0.45);
    }

    .neon-download-btn::before {
      content: "";
      position: absolute;
      inset: 5px 14px auto 18px;
      height: 42%;
      border-radius: 9999px;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0));
      pointer-events: none;
    }

    .offer-float-card {
      position: fixed;
      right: 0.65rem;
      left: auto;
      bottom: calc(10.25rem + env(safe-area-inset-bottom));
      z-index: 45;
      width: min(15.5rem, calc(100vw - 1.5rem));
      transform: scale(0.75);
      transform-origin: bottom right;
      filter: drop-shadow(0 12px 28px rgba(81, 45, 168, 0.35));
      animation: offer-float-in 0.65s cubic-bezier(0.34, 1.4, 0.64, 1) forwards,
        offer-float-bob 3.2s ease-in-out 0.65s infinite;
    }

    .offer-float-card.is-hiding {
      animation: offer-float-out 0.35s ease-in forwards;
    }

    .offer-float-card__glow {
      position: absolute;
      inset: -0.35rem;
      border-radius: 1.15rem;
      background: linear-gradient(135deg, #ff2d92, #512DA8, #ff6b22, #ff2d92);
      background-size: 300% 300%;
      animation: offer-glow-shift 4s ease infinite;
      opacity: 0.85;
      z-index: 0;
    }

    @keyframes offer-glow-shift {
      0%, 100% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }
    }

    @keyframes offer-float-in {
      0% {
        opacity: 0;
        transform: scale(0.66) translateY(24px);
      }

      70% {
        transform: scale(0.77) translateY(-4px);
      }

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

    @keyframes offer-float-out {
      to {
        opacity: 0;
        transform: scale(0.69) translateY(16px);
      }
    }

    @keyframes offer-float-bob {
      0%, 100% {
        transform: scale(0.75) translateY(0);
      }

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

    .offer-float-card__close {
      position: absolute;
      top: -0.5rem;
      right: -0.5rem;
      z-index: 3;
      width: 1.65rem;
      height: 1.65rem;
      border: 2px solid #fff;
      border-radius: 9999px;
      background: rgba(81, 45, 168, 0.95);
      color: #fff;
      font-size: 1rem;
      line-height: 1;
      cursor: pointer;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
      transition: transform 150ms ease, background 150ms ease;
    }

    .offer-float-card__close:active {
      transform: scale(0.92);
    }

    .offer-float-card__body {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 0.35rem;
      width: 100%;
      padding: 1rem 1rem 0.85rem;
      border: 2px solid rgba(255, 255, 255, 0.85);
      border-radius: 1rem;
      background: linear-gradient(165deg, #fff 0%, #fdf4ff 100%);
      text-align: center;
      cursor: pointer;
      overflow: hidden;
    }

    .offer-float-card__body::before {
      content: "";
      position: absolute;
      top: 0;
      left: -120%;
      width: 80%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
      animation: offer-shimmer 3.5s ease-in-out infinite;
      pointer-events: none;
    }

    @keyframes offer-shimmer {
      0%, 100% {
        left: -120%;
      }

      45%, 55% {
        left: 140%;
      }
    }

    .offer-float-card__icon {
      font-size: 2rem;
      line-height: 1;
      animation: offer-icon-wiggle 2.5s ease-in-out infinite;
    }

    @keyframes offer-icon-wiggle {
      0%, 100% {
        transform: rotate(0deg) scale(1);
      }

      20% {
        transform: rotate(-8deg) scale(1.08);
      }

      40% {
        transform: rotate(8deg) scale(1.05);
      }

      60% {
        transform: rotate(-4deg) scale(1.08);
      }
    }

    .offer-float-card__badge {
      align-self: center;
      display: inline-block;
      padding: 0.25rem 0.65rem;
      border-radius: 9999px;
      background: linear-gradient(135deg, #E91E63, #512DA8);
      color: #fff;
      font-size: 0.62rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      animation: offer-badge-pulse 2s ease-in-out infinite;
      box-shadow: 0 3px 10px rgba(233, 30, 99, 0.35);
    }

    @keyframes offer-badge-pulse {
      0%, 100% {
        transform: scale(1);
        box-shadow: 0 3px 10px rgba(233, 30, 99, 0.35);
      }

      50% {
        transform: scale(1.05);
        box-shadow: 0 4px 14px rgba(233, 30, 99, 0.5);
      }
    }

    .offer-float-card__title {
      font-size: 1.05rem;
      font-weight: 900;
      color: #1f2937;
      line-height: 1.25;
    }

    .offer-float-card__title em {
      font-style: normal;
      color: #E91E63;
      text-shadow: 0 0 12px rgba(233, 30, 99, 0.25);
    }

    .offer-float-card__meta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
      font-size: 0.72rem;
      font-weight: 600;
      color: #6b7280;
      line-height: 1.2;
    }

    .offer-float-card__timer {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 3.2rem;
      padding: 0.15rem 0.45rem;
      border-radius: 0.4rem;
      background: rgba(233, 30, 99, 0.1);
      font-weight: 900;
      font-size: 0.85rem;
      color: #be185d;
      font-variant-numeric: tabular-nums;
      animation: offer-timer-tick 1s ease-in-out infinite;
    }

    @keyframes offer-timer-tick {
      0%, 100% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.06);
      }
    }

    .offer-float-card__cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
      margin-top: 0.25rem;
      padding: 0.55rem 0.75rem;
      border-radius: 0.65rem;
      background: linear-gradient(135deg, #512DA8 0%, #E91E63 100%);
      color: #fff;
      font-size: 0.82rem;
      font-weight: 900;
      line-height: 1.2;
      box-shadow: 0 4px 14px rgba(81, 45, 168, 0.4);
      animation: offer-cta-glow 2.2s ease-in-out infinite;
    }

    @keyframes offer-cta-glow {
      0%, 100% {
        box-shadow: 0 4px 14px rgba(81, 45, 168, 0.4);
      }

      50% {
        box-shadow: 0 6px 20px rgba(233, 30, 99, 0.55);
      }
    }

    .offer-float-card__cta-arrow {
      display: inline-block;
      animation: offer-arrow-nudge 1.2s ease-in-out infinite;
    }

    @keyframes offer-arrow-nudge {
      0%, 100% {
        transform: translateX(0);
      }

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

    .live-preview-section {
      margin-bottom: 0.85rem;
      padding: 0.75rem;
      border-radius: 1rem;
      background: rgba(255, 255, 255, 0.14);
      border: 1px solid rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(4px);
      animation: section-fade-in 0.6s ease-out both;
    }

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

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

    .live-preview-section__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.65rem;
    }

    .live-preview-section__title {
      margin: 0;
      font-size: 0.95rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: 0.01em;
    }

    .live-preview-section__count {
      font-size: 0.68rem;
      font-weight: 700;
      color: #fff;
      background: #4CAF50;
      border: none;
      border-radius: 9999px;
      padding: 0.15rem 0.55rem;
      animation: count-badge-pulse 2.4s ease-in-out infinite;
    }

    @keyframes count-badge-pulse {
      0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.5);
      }

      50% {
        transform: scale(1.06);
        box-shadow: 0 0 0 6px rgba(76, 175, 80, 0);
      }
    }

    .live-preview-list {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.55rem;
    }

    .live-preview-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.25rem;
      padding: 0.45rem 0.25rem 0.55rem;
      border-radius: 0.85rem;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(255, 255, 255, 0.65);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
      text-align: center;
      animation: preview-card-in 0.5s ease-out both;
    }

    .live-preview-card:nth-child(1) {
      animation-delay: 0.08s;
    }

    .live-preview-card:nth-child(2) {
      animation-delay: 0.16s;
    }

    .live-preview-card:nth-child(3) {
      animation-delay: 0.24s;
    }

    .live-preview-card:nth-child(4) {
      animation-delay: 0.32s;
    }

    @keyframes preview-card-in {
      from {
        opacity: 0;
        transform: scale(0.82) translateY(10px);
      }

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

    .live-preview-card__avatar-wrap {
      position: relative;
      width: 3.5rem;
      height: 3.5rem;
    }

    .live-preview-card__avatar {
      width: 100%;
      height: 100%;
      border-radius: 9999px;
      object-fit: cover;
      border: 2px solid #fff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
      animation: avatar-ring-pulse 2.8s ease-in-out infinite;
    }

    @keyframes avatar-ring-pulse {
      0%, 100% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18), 0 0 0 0 rgba(233, 30, 99, 0.35);
      }

      50% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18), 0 0 0 4px rgba(233, 30, 99, 0);
      }
    }

    .card-animate-in {
      animation: model-card-in 0.48s ease-out both;
    }

    @keyframes model-card-in {
      from {
        opacity: 0;
        transform: translateY(14px) scale(0.94);
      }

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

    .live-preview-card__name {
      font-size: 0.68rem;
      font-weight: 800;
      color: #1f2937;
      line-height: 1.2;
    }

    .live-preview-card__distance {
      font-size: 0.62rem;
      font-weight: 700;
      color: #059669;
      line-height: 1.2;
    }

    .online-badge {
      position: absolute;
      top: 0.45rem;
      left: 0.45rem;
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      padding: 0.15rem 0.45rem 0.15rem 0.35rem;
      border-radius: 9999px;
      background: rgba(17, 24, 39, 0.72);
      color: #fff;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      z-index: 2;
    }

    .online-badge--compact {
      top: auto;
      left: auto;
      right: 0;
      bottom: 0;
      padding: 0.18rem;
      border: 2px solid #fff;
    }

    .online-badge__dot {
      width: 0.45rem;
      height: 0.45rem;
      border-radius: 9999px;
      background: #22c55e;
      box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
      animation: online-dot-pulse 1.8s infinite;
      flex-shrink: 0;
    }

    @keyframes online-dot-pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.65);
      }

      70% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
      }
    }

    .city-tag {
      display: inline-flex;
      align-items: center;
      font-size: 0.68rem;
      font-weight: 700;
      color: #6b21a8;
    }

    .distance-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.15rem;
      font-size: 0.68rem;
      font-weight: 700;
      color: #059669;
    }

    .trust-badges {
      width: 100%;
      max-width: 22rem;
      margin-left: auto;
      margin-right: auto;
    }

    .trust-badge {
      display: flex;
      flex: 1;
      flex-direction: column;
      align-items: center;
      gap: 0.2rem;
      min-width: 0;
      padding: 0.4rem 0.3rem;
      border-radius: 0.65rem;
      background: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.95);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
      animation: trust-badge-in 0.55s ease-out both;
    }

    .trust-badge:nth-child(1) {
      animation-delay: 0.15s;
    }

    .trust-badge:nth-child(2) {
      animation-delay: 0.25s;
    }

    .trust-badge:nth-child(3) {
      animation-delay: 0.35s;
    }

    @keyframes trust-badge-in {
      from {
        opacity: 0;
        transform: translateY(8px);
      }

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

    .trust-badge__icon {
      font-size: 1rem;
      line-height: 1;
    }

    .trust-badge__label {
      font-size: 0.58rem;
      line-height: 1.15;
      font-weight: 800;
      color: #1f2937;
      text-align: center;
    }

    .cta-download-btn {
      position: relative;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      width: 100%;
      max-width: 22rem;
      margin-left: auto;
      margin-right: auto;
      padding: 0.7rem 0.85rem 0.7rem 0.7rem;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 1rem;
      background: linear-gradient(135deg, #512DA8 0%, #7B1FA2 45%, #E91E63 100%);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.15) inset,
        0 8px 20px rgba(81, 45, 168, 0.38),
        0 0 18px rgba(233, 30, 99, 0.25);
      color: #fff;
      text-align: left;
      animation: cta-btn-pulse 2.4s ease-in-out infinite;
    }

    .cta-download-btn__icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.75rem;
      height: 2.75rem;
      flex-shrink: 0;
      border-radius: 0.75rem;
      background: rgba(255, 255, 255, 0.95);
      color: #E91E63;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .cta-download-btn__icon svg {
      width: 1.35rem;
      height: 1.35rem;
    }

    .cta-download-btn__body {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
    }

    .cta-download-btn__row {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      flex-wrap: nowrap;
    }

    .cta-download-btn__title {
      font-size: 1rem;
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: 0.01em;
      text-transform: none;
      white-space: nowrap;
    }

    .cta-download-btn__free {
      flex-shrink: 0;
      padding: 0.22rem 0.55rem;
      border-radius: 9999px;
      background: #16a34a;
      color: #fff;
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.05em;
      line-height: 1.2;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
    }

    .cta-download-btn__hint {
      font-size: 0.68rem;
      font-weight: 600;
      line-height: 1.2;
      color: rgba(255, 255, 255, 0.92);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .cta-download-btn__arrow {
      flex-shrink: 0;
      font-size: 1.75rem;
      font-weight: 700;
      line-height: 1;
      color: rgba(255, 255, 255, 0.95);
      margin-right: 0.1rem;
      animation: cta-arrow-nudge 1.4s ease-in-out infinite;
    }

    @keyframes cta-arrow-nudge {
      0%, 100% {
        transform: translateX(0);
      }

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

    .cta-download-btn.is-loading {
      animation: none;
    }

    .cta-download-btn.is-loading .cta-download-btn__icon {
      animation: cta-icon-bounce 0.9s ease-in-out infinite;
    }

    @keyframes cta-btn-pulse {
      0%, 100% {
        transform: scale(1);
        box-shadow:
          0 0 0 1px rgba(255, 255, 255, 0.15) inset,
          0 8px 20px rgba(81, 45, 168, 0.38),
          0 0 18px rgba(233, 30, 99, 0.25);
      }

      50% {
        transform: scale(1.02);
        box-shadow:
          0 0 0 1px rgba(255, 255, 255, 0.22) inset,
          0 10px 24px rgba(81, 45, 168, 0.48),
          0 0 26px rgba(233, 30, 99, 0.35);
      }
    }

    @keyframes cta-icon-bounce {
      0%, 100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(2px);
      }
    }

    .cta-download-btn::before {
      display: none;
    }

    @media (max-width: 360px) {
      .live-preview-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .trust-badge__label {
        font-size: 0.5rem;
      }
    }

    .pb-40 {
      padding-bottom: 10rem;
    }

    .download-toast {
      position: fixed;
      left: 50%;
      bottom: calc(8.5rem + env(safe-area-inset-bottom));
      z-index: 55;
      display: flex;
      align-items: center;
      gap: 0.55rem;
      max-width: calc(100vw - 2rem);
      padding: 0.75rem 1rem;
      border-radius: 0.85rem;
      background: rgba(17, 24, 39, 0.92);
      color: #fff;
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
      transform: translateX(-50%) translateY(12px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.28s ease, transform 0.28s ease;
    }

    .download-toast.is-visible {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    .download-toast__icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 1.5rem;
      height: 1.5rem;
      flex-shrink: 0;
      border-radius: 9999px;
      background: #4CAF50;
      font-size: 0.75rem;
      font-weight: 900;
      line-height: 1;
    }

    .download-toast__text {
      font-size: 0.82rem;
      font-weight: 700;
      line-height: 1.35;
    }
  

*, ::before, ::after{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */*,::after,::before{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}::after,::before{--tw-content:''}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;font-family:ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select{-webkit-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-width:1px;border-radius:0px;padding-top:0.5rem;padding-right:0.75rem;padding-bottom:0.5rem;padding-left:0.75rem;font-size:1rem;line-height:1.5rem;--tw-shadow:0 0 #0000;}[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);border-color:#2563eb}input::placeholder,textarea::placeholder{color:#6b7280;opacity:1}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-date-and-time-value{min-height:1.5em;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{padding-top:0;padding-bottom:0}select{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");background-position:right 0.5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;print-color-adjust:exact}[multiple],[size]:where(select:not([size="1"])){background-image:initial;background-position:initial;background-repeat:unset;background-size:initial;padding-right:0.75rem;print-color-adjust:unset}[type='checkbox'],[type='radio']{-webkit-appearance:none;appearance:none;padding:0;print-color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;user-select:none;flex-shrink:0;height:1rem;width:1rem;color:#2563eb;background-color:#fff;border-color:#6b7280;border-width:1px;--tw-shadow:0 0 #0000}[type='checkbox']{border-radius:0px}[type='radio']{border-radius:100%}[type='checkbox']:focus,[type='radio']:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:2px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}[type='checkbox']:checked,[type='radio']:checked{border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}[type='checkbox']:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");}@media (forced-colors: active) {[type='checkbox']:checked{-webkit-appearance:auto;appearance:auto}}[type='radio']:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");}@media (forced-colors: active) {[type='radio']:checked{-webkit-appearance:auto;appearance:auto}}[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus{border-color:transparent;background-color:currentColor}[type='checkbox']:indeterminate{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat;}@media (forced-colors: active) {[type='checkbox']:indeterminate{-webkit-appearance:auto;appearance:auto}}[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus{border-color:transparent;background-color:currentColor}[type='file']{background:unset;border-color:inherit;border-width:0;border-radius:0;padding:0;font-size:unset;line-height:inherit}[type='file']:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.inset-0{inset:0px}.inset-x-0{left:0px;right:0px}.bottom-0{bottom:0px}.top-0{top:0px}.z-10{z-index:10}.z-40{z-index:40}.z-50{z-index:50}.z-\[60\]{z-index:60}.z-\[70\]{z-index:70}.mx-auto{margin-left:auto;margin-right:auto}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.mt-1\.5{margin-top:0.375rem}.mt-4{margin-top:1rem}.mt-0\.5{margin-top:0.125rem}.mt-2{margin-top:0.5rem}.mt-3{margin-top:0.75rem}.flex{display:flex}.inline-flex{display:inline-flex}.grid{display:grid}.hidden{display:none}.h-4{height:1rem}.h-6{height:1.5rem}.h-8{height:2rem}.h-16{height:4rem}.h-3\.5{height:0.875rem}.h-48{height:12rem}.h-7{height:1.75rem}.h-full{height:100%}.min-h-\[20px\]{min-height:20px}.min-h-screen{min-height:100vh}.w-4{width:1rem}.w-6{width:1.5rem}.w-8{width:2rem}.w-full{width:100%}.w-3\.5{width:0.875rem}.w-7{width:1.75rem}.max-w-md{max-width:28rem}.max-w-sm{max-width:24rem}.max-w-xs{max-width:20rem}.flex-1{flex:1 1 0%}.shrink-0{flex-shrink:0}.flex-grow{flex-grow:1}.cursor-pointer{cursor:pointer}.grid-cols-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.grid-cols-3{grid-template-columns:repeat(3, minmax(0, 1fr))}.flex-col{flex-direction:column}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-1{gap:0.25rem}.gap-2{gap:0.5rem}.gap-2\.5{gap:0.625rem}.gap-3{gap:0.75rem}.gap-4{gap:1rem}.gap-0\.5{gap:0.125rem}.gap-1\.5{gap:0.375rem}.space-x-3 > :not([hidden]) ~ :not([hidden]){--tw-space-x-reverse:0;margin-right:calc(0.75rem * var(--tw-space-x-reverse));margin-left:calc(0.75rem * calc(1 - var(--tw-space-x-reverse)))}.overflow-hidden{overflow:hidden}.rounded-\[30px\]{border-radius:30px}.rounded-\[32px\]{border-radius:32px}.rounded-full{border-radius:9999px}.rounded-2xl{border-radius:1rem}.rounded-lg{border-radius:0.5rem}.border{border-width:1px}.border-2{border-width:2px}.border-indigo-300{--tw-border-opacity:1;border-color:rgb(165 180 252 / var(--tw-border-opacity, 1))}.border-white\/25{border-color:rgb(255 255 255 / 0.25)}.bg-\[\#e0e0e0\]{--tw-bg-opacity:1;background-color:rgb(224 224 224 / var(--tw-bg-opacity, 1))}.bg-\[\#e91e63\]{--tw-bg-opacity:1;background-color:rgb(233 30 99 / var(--tw-bg-opacity, 1))}.bg-\[\#f06292\]{--tw-bg-opacity:1;background-color:rgb(240 98 146 / var(--tw-bg-opacity, 1))}.bg-\[\#f8bbd0\]{--tw-bg-opacity:1;background-color:rgb(248 187 208 / var(--tw-bg-opacity, 1))}.bg-black\/70{background-color:rgb(0 0 0 / 0.7)}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1))}.bg-\[\#4CAF50\]{--tw-bg-opacity:1;background-color:rgb(76 175 80 / var(--tw-bg-opacity, 1))}.bg-\[\#E91E63\]{--tw-bg-opacity:1;background-color:rgb(233 30 99 / var(--tw-bg-opacity, 1))}.bg-black\/40{background-color:rgb(0 0 0 / 0.4)}.bg-white\/85{background-color:rgb(255 255 255 / 0.85)}.bg-gradient-to-t{background-image:linear-gradient(to top, var(--tw-gradient-stops))}.from-black\/55{--tw-gradient-from:rgb(0 0 0 / 0.55) var(--tw-gradient-from-position);--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to)}.to-transparent{--tw-gradient-to:transparent var(--tw-gradient-to-position)}.object-cover{object-fit:cover}.p-1{padding:0.25rem}.p-3{padding:0.75rem}.p-6{padding:1.5rem}.px-2{padding-left:0.5rem;padding-right:0.5rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-3{padding-top:0.75rem;padding-bottom:0.75rem}.py-3\.5{padding-top:0.875rem;padding-bottom:0.875rem}.py-4{padding-top:1rem;padding-bottom:1rem}.px-3{padding-left:0.75rem;padding-right:0.75rem}.py-2{padding-top:0.5rem;padding-bottom:0.5rem}.pb-24{padding-bottom:6rem}.pb-\[calc\(0\.85rem\+env\(safe-area-inset-bottom\)\)\]{padding-bottom:calc(0.85rem + env(safe-area-inset-bottom))}.pt-4{padding-top:1rem}.text-center{text-align:center}.text-right{text-align:right}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-\[10px\]{font-size:10px}.text-\[15px\]{font-size:15px}.text-\[9px\]{font-size:9px}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:0.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:0.75rem;line-height:1rem}.font-bold{font-weight:700}.font-extrabold{font-weight:800}.font-medium{font-weight:500}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.italic{font-style:italic}.leading-none{line-height:1}.leading-relaxed{line-height:1.625}.leading-snug{line-height:1.375}.leading-tight{line-height:1.25}.tracking-\[0\.18em\]{letter-spacing:0.18em}.tracking-tight{letter-spacing:-0.025em}.tracking-wide{letter-spacing:0.025em}.tracking-widest{letter-spacing:0.1em}.text-\[\#e91e63\]{--tw-text-opacity:1;color:rgb(233 30 99 / var(--tw-text-opacity, 1))}.text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99 / var(--tw-text-opacity, 1))}.text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81 / var(--tw-text-opacity, 1))}.text-gray-900{--tw-text-opacity:1;color:rgb(17 24 39 / var(--tw-text-opacity, 1))}.text-indigo-700{--tw-text-opacity:1;color:rgb(67 56 202 / var(--tw-text-opacity, 1))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}.text-white\/80{color:rgb(255 255 255 / 0.8)}.text-gray-800{--tw-text-opacity:1;color:rgb(31 41 55 / var(--tw-text-opacity, 1))}.opacity-90{opacity:0.9}.shadow-2xl{--tw-shadow:0 25px 50px -12px rgb(0 0 0 / 0.25);--tw-shadow-colored:0 25px 50px -12px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}.shadow-md{--tw-shadow:0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 2px 0 rgb(0 0 0 / 0.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}.transition-colors{transition-property:color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;transition-property:color, background-color, border-color, text-decoration-color, fill, stroke;transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.active\:scale-95:active{--tw-scale-x:.95;--tw-scale-y:.95;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.active\:bg-gray-300:active{--tw-bg-opacity:1;background-color:rgb(209 213 219 / var(--tw-bg-opacity, 1))}