@charset "UTF-8";
.footer[data-v-467c5a8e] {
  /* if you need safe area on iOS */
  padding-bottom: calc(2rem + env(safe-area-inset-bottom));
}
.footer-glow[data-v-467c5a8e] {
  display: none;
}

/* LIQUID GLASS */
.liquidGlass-wrapper[data-v-467c5a8e] {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16), 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 2.2);
  backdrop-filter: blur(2px);
}
.liquidGlass-effect[data-v-467c5a8e] {
  position: absolute;
  inset: 0;
  z-index: 0;
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  filter: url(#glass-distortion);
}
.liquidGlass-tint[data-v-467c5a8e] {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.42);
}
.liquidGlass-shine[data-v-467c5a8e] {
  position: absolute;
  inset: 0;
  z-index: 2;
  box-shadow: inset 2px 2px 1px rgba(255, 255, 255, 0.6), inset -2px -2px 2px rgba(255, 255, 255, 0.45);
}
.footer-pill[data-v-467c5a8e] {
  border-radius: 9999px;
  padding: 6px 12px;
}

/* FOOTER PILL LAYOUT (like screenshot) */
.liquidGlass-wrapper[data-v-467c5a8e],
.footer-pill[data-v-467c5a8e],
.footer-pill > .liquidGlass-effect[data-v-467c5a8e],
.footer-pill > .liquidGlass-tint[data-v-467c5a8e],
.footer-pill > .liquidGlass-shine[data-v-467c5a8e] {
  border-radius: 9999px;
}
.liquidGlass-content[data-v-467c5a8e] {
  position: relative;
  display: inline-flex;
  z-index: 3;
  align-items: center;
  justify-content: center;
  gap: 0px;
}

/* subtle overlap to feel like “stack” */
.tab[data-v-467c5a8e] {
  margin-left: -5px;
}
.tab[data-v-467c5a8e]:first-child {
  margin-left: 0;
}
.tab[data-v-467c5a8e] {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  padding: 2px 20px;
  border-radius: 9999px;
  transition: transform 180ms ease;
}
.tab[data-v-467c5a8e]:active {
  transform: scale(0.98);
}

/* the “stack is also glass” */
.tab-glass[data-v-467c5a8e] {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.55), inset -1px -1px 0 rgba(255, 255, 255, 0.25);
}

/* keep content above glass */
.tab-icon[data-v-467c5a8e],
.tab-label[data-v-467c5a8e] {
  position: relative;
  z-index: 1;
}

/* ONE moving active capsule */
.active-indicator[data-v-467c5a8e] {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 9999px;
  z-index: 1;
  transition: transform 420ms cubic-bezier(0.2, 0.9, 0.2, 1), width 420ms cubic-bezier(0.2, 0.9, 0.2, 1), height 420ms cubic-bezier(0.2, 0.9, 0.2, 1), opacity 320ms ease;
  pointer-events: none;
  padding: 2px;
}
.active-indicator__glass[data-v-467c5a8e] {
  position: absolute;
  inset: 5px;
  border-radius: 9999px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(230, 230, 230, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* optional: slightly boost active label/icon contrast */
.tab--active .tab-label[data-v-467c5a8e],
.tab--active .tab-icon[data-v-467c5a8e] {
  filter: saturate(1.05);
}.circle-container {
  margin: var(--top-margin);
  --circle-size: 15em;
  --item-size: 6em;
  position: relative;
  width: var(--circle-size);
  height: var(--circle-size);
  padding: 0;
  border-radius: 50%;
  list-style: none;
}
.circle-container > * {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--item-size);
  height: var(--item-size);
  margin: calc(var(--item-size) / 2 * -1);
}
.circle-container > *:nth-of-type(1) {
  transform: rotate(-90deg) translate(calc(var(--circle-size) / 2)) rotate(90deg);
}
.circle-container > *:nth-of-type(2) {
  transform: rotate(-30deg) translate(calc(var(--circle-size) / 2)) rotate(30deg);
}
.circle-container > *:nth-of-type(3) {
  transform: rotate(30deg) translate(calc(var(--circle-size) / 2)) rotate(-30deg);
}
.circle-container > *:nth-of-type(4) {
  transform: rotate(90deg) translate(calc(var(--circle-size) / 2)) rotate(-90deg);
}
.circle-container > *:nth-of-type(5) {
  transform: rotate(150deg) translate(calc(var(--circle-size) / 2)) rotate(-150deg);
}
.circle-container > *:nth-of-type(6) {
  transform: rotate(210deg) translate(calc(var(--circle-size) / 2)) rotate(-210deg);
}
.loader-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.loader-circle .loader-circle__img {
  position: relative;
  z-index: 3;
  height: 70%;
  width: 70%;
  -o-object-fit: contain;
     object-fit: contain;
}
.loader-circle .loader-circle__fill {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: white;
  opacity: 0;
  transform: scale(0.3);
  animation: fill 3s ease-in-out infinite;
  animation-delay: var(--delay);
  z-index: 2;
  pointer-events: none;
}
@keyframes fill {
0% {
    opacity: 0;
    transform: scale(0.3);
}
15% {
    opacity: 1;
    transform: scale(1);
}
35% {
    opacity: 1;
    transform: scale(1);
}
55% {
    opacity: 0;
    transform: scale(0.95);
}
100% {
    opacity: 0;
    transform: scale(0.3);
}
}
.dots span {
  animation: dot 1.5s infinite both;
}
.dots span:nth-child(1) {
  animation-delay: 0s;
}
.dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.dots span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes dot {
0% {
    opacity: 0;
}
20% {
    opacity: 1;
}
100% {
    opacity: 0;
}
}.app-shell {
  min-height: 100dvh;
  min-width: 100dvw;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.loader-enter-active,
.loader-leave-active {
  transition: opacity 0.35s ease, transform 0.45s ease;
}
.loader-enter-from,
.loader-leave-to {
  opacity: 0;
  transform: scale(0.98);
}
.loader-enter-to,
.loader-leave-from {
  opacity: 1;
  transform: scale(1);
}
.page-enter-active,
.page-leave-active {
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.page-enter-from,
.page-leave-to {
  opacity: 0;
  transform: translateY(8px);
}
.footer-enter-active,
.footer-leave-active {
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer-enter-from,
.footer-leave-to {
  opacity: 0;
  transform: translateY(10px);
}input[type=checkbox][data-v-8bd9943e] {
  accent-color: #386d81;
}
input[type=checkbox][data-v-8bd9943e]:not(:checked) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent; /* Your desired inactive background */
  border: 1px solid #386d81;
  border-radius: 3px;
  width: 1.25rem;
  height: 1.25rem;
}.active[data-v-90093773] {
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 8px 0 #f2f2f2, inset 0 0 0 1px #a6a6a6, inset -2px -2px 1px -2px #262626, inset 2px 2px 1px -2px #262626, inset 3px 3px 1px -4px #fff, 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 0 2px 0 rgba(0, 0, 0, 0.1);
  background: rgba(57, 110, 129, 0.85);
}
.normal[data-v-90093773] {
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 8px 0 #f2f2f2, inset 0 0 0 1px #a6a6a6, inset -2px -2px 1px -2px #262626, inset 2px 2px 1px -2px #262626, inset 3px 3px 1px -4px #fff, 0 1px 8px 0 rgba(0, 0, 0, 0.1), 0 0 2px 0 rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.4);
}.lg-layer[data-v-22da1926] {
  --lg-layer-strength: 1;
  opacity: calc(var(--lg-opacity, 0) * var(--lg-layer-strength));
  transition: opacity 0.35s ease;
}
.lg-overlay[data-v-22da1926] {
  --lg-layer-strength: 0.6;
}
.lg-border[data-v-22da1926]::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: var(--lg-border);
  background: var(--lg-stroke);
  /* mask out the center so only the border remains */
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 1;
}
.bg-img[data-v-22da1926] {
  background: url("/assets/back.CgupYo-E.png") center/cover no-repeat;
}.modal-overlay[data-v-cd34b768] {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
}
.glass-modal[data-v-cd34b768] {
  width: min(90vw, 520px);
  max-width: 620px;
  pointer-events: auto;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16), 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 2.2);
  backdrop-filter: blur(2px);
}
.modal-body[data-v-cd34b768] {
  padding: 26px 22px 30px;
  text-align: center;
}
.modal-close[data-v-cd34b768] {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.modal-close[data-v-cd34b768]:active {
  transform: scale(0.98);
}
.modal-fade-enter-active[data-v-cd34b768],
.modal-fade-leave-active[data-v-cd34b768] {
  transition: opacity 0.25s ease;
}
.modal-fade-enter-from[data-v-cd34b768],
.modal-fade-leave-to[data-v-cd34b768] {
  opacity: 0;
}
.panel-pop-enter-active[data-v-cd34b768],
.panel-pop-leave-active[data-v-cd34b768] {
  transition: opacity 0.3s ease, transform 0.35s ease;
}
.panel-pop-enter-from[data-v-cd34b768],
.panel-pop-leave-to[data-v-cd34b768] {
  opacity: 0;
  transform: translateY(10px) scale(0.96);
}

/* Liquid glass reused from footer, namespaced to modal root */
.glass-modal .liquidGlass-effect[data-v-cd34b768] {
  position: absolute;
  inset: 0;
  z-index: 0;
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
}
.glass-modal .liquidGlass-tint[data-v-cd34b768] {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.42);
}
.glass-modal .liquidGlass-shine[data-v-cd34b768] {
  position: absolute;
  inset: 0;
  z-index: 2;
  box-shadow: inset 2px 2px 1px rgba(255, 255, 255, 0.6), inset -2px -2px 2px rgba(255, 255, 255, 0.45);
}
.glass-modal .liquidGlass-content[data-v-cd34b768] {
  position: relative;
  display: block;
  z-index: 3;
  padding: 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0);
}
.liquidGlass-wrapper[data-v-cd34b768] {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16), 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 2.2);
  backdrop-filter: blur(2px);
  border-radius: 28px;
}
.liquidGlass-effect[data-v-cd34b768] {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 28px;
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
}
.liquidGlass-tint[data-v-cd34b768] {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.42);
}
.liquidGlass-shine[data-v-cd34b768] {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 28px;
  box-shadow: inset 2px 2px 1px rgba(255, 255, 255, 0.6), inset -2px -2px 2px rgba(255, 255, 255, 0.45);
}
.liquidGlass-content[data-v-cd34b768] {
  position: relative;
  display: block;
  z-index: 3;
  padding: 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.35);
}
.grad-bg[data-v-cd34b768] {
  background: linear-gradient(180deg, #faf6fa 0%, rgba(211, 186, 252, 0.68) 100%), linear-gradient(180deg, #cf8e7c 0%, #6dd7e4 100%) !important;
}.tab[data-v-34d31998] {
  backdrop-filter: blur(36px);
  box-shadow: inset 0 0 20px 0 rgba(242, 242, 242, 0.5), inset -3px -3px 2px -3px #b3b3b3, inset 3px 5px 2px -3px rgba(179, 179, 179, 0.2), inset 5px 5px 2px -3px rgba(255, 255, 255, 0.5), inset -3px -3px 2px -3px rgba(255, 255, 255, 0.5), 0 1px 4px 0 rgba(0, 0, 0, 0.1), 0 0 2px 0 rgba(0, 0, 0, 0.1), inset 0 0 8px 0 #f2f2f2, inset 0 0 0 1px #a6a6a6, inset -2px -2px 1px -2px #262626;
  background: rgba(255, 255, 255, 0.3);
}/* Additional styles if needed */.viewport[data-v-d512e142] {
  position: relative;
  padding: 18px 0;
}
.viewport[data-v-d512e142]::before,
.viewport[data-v-d512e142]::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
}
.wheel[data-v-d512e142] {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 48px;
  position: relative;
  will-change: transform;
  transition-property: transform;
}
.prize-card[data-v-d512e142] {
  flex: 0 0 auto;
  width: 192px;
  min-width: 192px;
  height: 192px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
  z-index: 1;
}
.prize-card--dim[data-v-d512e142] {
  filter: opacity(0.6);
}
.prize-card--active[data-v-d512e142] {
  transform: scale(1.5);
  box-shadow: 0 18px 40px rgba(10, 27, 38, 0.25);
  z-index: 10;
}
.prize-card[data-v-d512e142] .lg-border::before {
  opacity: 0.3;
  transition: opacity 0.35s ease;
}
.prize-card--active[data-v-d512e142] .lg-border::before {
  opacity: 1;
}
.prize-card__inner[data-v-d512e142] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  text-align: center;
  color: #0a1b26;
  position: relative;
}
.prize-value[data-v-d512e142] {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #5de3ff, #e7f6ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.prize-desc[data-v-d512e142] {
  font-size: 12px;
  line-height: 1.2;
  color: rgba(10, 27, 38, 0.8);
  white-space: pre-line;
}
.prize-image[data-v-d512e142] {
  overflow: hidden;
  border-radius: 24px;
  padding: 4px;
}
.prize-card--unavailable[data-v-d512e142] {
  opacity: 0.6;
  filter: grayscale(0.6);
}
.prize-badge[data-v-d512e142] {
  position: absolute;
  top: 6px;
  right: 8px;
  background: rgba(10, 27, 38, 0.85);
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  line-height: 1;
}
.prize-image img[data-v-d512e142] {
  width: 100%;
  height: 100%;
}
.win-modal__title[data-v-d512e142] {
  font-family: "Druk";
  font-size: 18px;
  margin-bottom: 18px;
  color: #fff;
  text-align: center;
}
.win-modal__prize[data-v-d512e142] {
  display: grid;
  gap: 10px;
  justify-items: center;
}
.win-modal__promo[data-v-d512e142] {
  width: 100%;
  margin-top: -4px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: #0a1b26;
  font-weight: 800;
  padding: 10px 14px;
  font-size: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 10px 20px rgba(9, 27, 38, 0.14);
}
.win-modal__button[data-v-d512e142] {
  margin-top: 16px;
  width: 100%;
  max-width: 220px;
  padding: 14px 16px;
  border: none;
  border-radius: 24px;
  background: white;
  color: #396e81;
  font-weight: 700;
  cursor: pointer;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}
.dots span[data-v-d512e142] {
  animation: dot-d512e142 1.5s infinite both;
}
.dots span[data-v-d512e142]:nth-child(1) {
  animation-delay: 0s;
}
.dots span[data-v-d512e142]:nth-child(2) {
  animation-delay: 0.2s;
}
.dots span[data-v-d512e142]:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes dot-d512e142 {
0% {
    opacity: 0;
}
20% {
    opacity: 1;
}
100% {
    opacity: 0;
}
}.liquidGlass-wrapper[data-v-29b47929] {
  --lg-radius: 32px;
  position: relative;
  overflow: hidden;
  border-radius: var(--lg-radius);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16), 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 2.2);
  backdrop-filter: blur(2px);
  pointer-events: none;
}
.liquidGlass-wrapper[data-v-29b47929] > * {
  border-radius: var(--lg-radius);
}
.liquidGlass-effect[data-v-29b47929] {
  position: absolute;
  inset: 0;
  z-index: 0;
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  pointer-events: none;
}
.liquidGlass-tint[data-v-29b47929] {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.42);
  pointer-events: none;
}
.liquidGlass-shine[data-v-29b47929] {
  position: absolute;
  inset: 0;
  z-index: 2;
  box-shadow: inset 2px 2px 1px rgba(255, 255, 255, 0.6), inset -2px -2px 2px rgba(255, 255, 255, 0.45);
  pointer-events: none;
}
.liquidGlass-content[data-v-29b47929] {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: auto;
}.footer-glow[data-v-eed812af] {
  display: none;
}

/* LIQUID GLASS */
.liquidGlass-wrapper[data-v-eed812af] {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16), 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 2.2);
  backdrop-filter: blur(2px);
}
.liquidGlass-effect[data-v-eed812af] {
  position: absolute;
  inset: 0;
  z-index: 0;
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  filter: url(#glass-distortion);
}
.liquidGlass-tint[data-v-eed812af] {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.42);
}
.liquidGlass-shine[data-v-eed812af] {
  position: absolute;
  inset: 0;
  z-index: 2;
  box-shadow: inset 2px 2px 1px rgba(255, 255, 255, 0.6), inset -2px -2px 2px rgba(255, 255, 255, 0.45);
}
.footer-pill[data-v-eed812af] {
  border-radius: 9999px;
  padding: 6px 12px;
}

/* FOOTER PILL LAYOUT (like screenshot) */
.liquidGlass-wrapper[data-v-eed812af],
.footer-pill[data-v-eed812af],
.footer-pill > .liquidGlass-effect[data-v-eed812af],
.footer-pill > .liquidGlass-tint[data-v-eed812af],
.footer-pill > .liquidGlass-shine[data-v-eed812af] {
  border-radius: 9999px;
}
.liquidGlass-content[data-v-eed812af] {
  position: relative;
  display: inline-flex;
  z-index: 3;
  align-items: center;
  justify-content: center;
  gap: 0px;
}.win-modal__button[data-v-0dfa36a7] {
  margin-top: 16px;
  width: 100%;
  max-width: 220px;
  padding: 14px 16px;
  border: none;
  border-radius: 24px;
  background: white;
  color: #396e81;
  font-weight: 700;
  cursor: pointer;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}
[data-v-3322b10b] .liquidGlass-wrapper {
  height: 100%;
}
.prize-image[data-v-3fee7d3a] {
  overflow: hidden;
  border-radius: 24px;
  padding: 10px;
}
.prize-image img[data-v-3fee7d3a] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.win-modal__title[data-v-3fee7d3a] {
  font-family: "Druk";
  font-size: 18px;
  margin-bottom: 18px;
  color: #fff;
  text-align: center;
}
.win-modal__prize[data-v-3fee7d3a] {
  display: grid;
  gap: 10px;
  justify-items: center;
}
.win-modal__promo[data-v-3fee7d3a] {
  width: 100%;
  margin-top: -4px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: #0a1b26;
  font-weight: 800;
  padding: 10px 14px;
  font-size: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 10px 20px rgba(9, 27, 38, 0.14);
}
.win-modal__button[data-v-3fee7d3a] {
  margin-top: 12px;
  width: 100%;
  max-width: 220px;
  padding: 14px 16px;
  border: none;
  border-radius: 24px;
  background: white;
  color: #396e81;
  font-weight: 700;
  cursor: pointer;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.win-modal__button[data-v-3fee7d3a]:active {
  transform: translateY(1px);
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.12);
}
.win-modal__button[data-v-3fee7d3a]:disabled {
  opacity: 0.8;
  cursor: not-allowed;
  transform: none;
}
.win-modal__text[data-v-3fee7d3a] {
  width: 100%;
  max-width: 100%;
  white-space: pre-wrap;
  word-break: break-word;
  text-align: center;
  overflow-wrap: anywhere;
}
[data-v-3fee7d3a] .liquidGlass-wrapper {
  height: 100%;
}.svg[data-v-e8f376ed] {
  fill: #386d81 !important;
}
.svg path[data-v-e8f376ed] {
  fill: #386d81 !important;
}.policy[data-v-c38b85ab] {
  color: #111827;
}
.policy[data-v-c38b85ab] .policy__title {
  font-family: "Druk", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.policy[data-v-c38b85ab] .policy__section + .policy__section {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}
.policy[data-v-c38b85ab] .policy__h2 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 10px;
}
.policy[data-v-c38b85ab] .policy__p {
  font-size: 14px;
  line-height: 1.55;
  margin: 8px 0;
  white-space: pre-wrap;
}
.policy[data-v-c38b85ab] .policy__p--indent {
  text-indent: 1.75rem;
}
.policy[data-v-c38b85ab] .policy__ul {
  margin: 8px 0 12px;
  padding-left: 20px;
}
.policy[data-v-c38b85ab] .policy__li {
  margin: 6px 0;
  font-size: 14px;
  line-height: 1.55;
}.page[data-v-0d5261c1] {
  min-height: 100vh;
  padding: 24px 20px 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card[data-v-0d5261c1] {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.back-btn[data-v-0d5261c1] {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  width: 56px;
  height: 56px;
  cursor: pointer;
}
.title[data-v-0d5261c1] {
  font-family: "Druk", "Titillium Web", sans-serif;
  font-size: 28px;
  color: #386d81;
}
.video-frame[data-v-0d5261c1] {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: #d3d5db;
}
.embed-wrapper[data-v-0d5261c1] {
  position: absolute;
  inset: 0;
}
.embed-wrapper iframe[data-v-0d5261c1] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-placeholder[data-v-0d5261c1] {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #5b6b75;
  font-weight: 700;
}
.block h3[data-v-0d5261c1] {
  margin: 0 0 6px;
  color: #2c4f60;
  font-weight: 800;
  font-size: 15px;
}
.block p[data-v-0d5261c1] {
  margin: 0;
  color: #3d4952;
  line-height: 1.4;
  white-space: pre-wrap;
}/* Local font assets */
@font-face {
  font-family: "Helvetica";
  src: local("Helvetica"), local("Helvetica Neue"), local("HelveticaNeue"), local("Arial");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("/assets/HelveticaNeueRoman.CSpBGpqm.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("/assets/HelveticaNeueItalic.DKx4JyHi.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("/assets/HelveticaNeueLight.Ct5-NwMS.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("/assets/HelveticaNeueMedium.BlACjMrQ.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("/assets/HelveticaNeueBold.CvSAbIAR.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Madelyn";
  src: url("/assets/Madelyn-Trial-Regular.C66ZCFgk.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Hoves Pro Trial";
  src: url("/assets/TT%20Hoves%20Pro%20Trial%20Medium.CLVCw-32.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Hoves Pro Trial";
  src: url("/assets/TT%20Hoves%20Pro%20Trial%20DemiBold.385142yi.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* Safari/iOS drops static fonts declared with weight ranges; map the bold file explicitly */
@font-face {
  font-family: "Druk";
  src: url("/fonts/druktextwidecyr-bold.ttf") format("truetype"), url("/fonts/drukwidecyr-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*, ::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.16 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.pointer-events-none {
  pointer-events: none;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.inset-0 {
  inset: 0px;
}
.\!top-\[2\.5rem\] {
  top: 2.5rem !important;
}
.-left-3 {
  left: -0.75rem;
}
.-right-1 {
  right: -0.25rem;
}
.-right-2 {
  right: -0.5rem;
}
.-top-1 {
  top: -0.25rem;
}
.-top-4 {
  top: -1rem;
}
.-top-5 {
  top: -1.25rem;
}
.-top-\[0\.2rem\] {
  top: -0.2rem;
}
.bottom-0 {
  bottom: 0px;
}
.bottom-12 {
  bottom: 3rem;
}
.bottom-24 {
  bottom: 6rem;
}
.left-0 {
  left: 0px;
}
.left-1\/2 {
  left: 50%;
}
.left-5 {
  left: 1.25rem;
}
.right-0 {
  right: 0px;
}
.top-4 {
  top: 1rem;
}
.top-7 {
  top: 1.75rem;
}
.isolate {
  isolation: isolate;
}
.z-10 {
  z-index: 10;
}
.z-30 {
  z-index: 30;
}
.z-50 {
  z-index: 50;
}
.z-\[1\] {
  z-index: 1;
}
.z-\[9999999999\] {
  z-index: 9999999999;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
.order-4 {
  order: 4;
}
.col-span-1 {
  grid-column: span 1 / span 1;
}
.col-span-2 {
  grid-column: span 2 / span 2;
}
.col-start-2 {
  grid-column-start: 2;
}
.col-start-3 {
  grid-column-start: 3;
}
.row-span-1 {
  grid-row: span 1 / span 1;
}
.row-span-2 {
  grid-row: span 2 / span 2;
}
.m-0 {
  margin: 0px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.my-11 {
  margin-top: 2.75rem;
  margin-bottom: 2.75rem;
}
.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.-mb-0\.5 {
  margin-bottom: -0.125rem;
}
.-ml-0\.5 {
  margin-left: -0.125rem;
}
.-mt-1 {
  margin-top: -0.25rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-\[22px\] {
  margin-bottom: 22px;
}
.ml-\[1px\] {
  margin-left: 1px;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-24 {
  margin-top: 6rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-32 {
  margin-top: 8rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-\[18rem\] {
  margin-top: 18rem;
}
.mt-\[2px\] {
  margin-top: 2px;
}
.mt-auto {
  margin-top: auto;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.\!flex {
  display: flex !important;
}
.flex {
  display: flex;
}
.\!grid {
  display: grid !important;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.aspect-square {
  aspect-ratio: 1 / 1;
}
.\!h-\[52px\] {
  height: 52px !important;
}
.h-12 {
  height: 3rem;
}
.h-16 {
  height: 4rem;
}
.h-24 {
  height: 6rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-7 {
  height: 1.75rem;
}
.h-8 {
  height: 2rem;
}
.h-\[20px\] {
  height: 20px;
}
.h-auto {
  height: auto;
}
.h-full {
  height: 100%;
}
.max-h-\[28px\] {
  max-height: 28px;
}
.max-h-\[29px\] {
  max-height: 29px;
}
.max-h-\[50\%\] {
  max-height: 50%;
}
.max-h-full {
  max-height: 100%;
}
.min-h-\[100dvh\] {
  min-height: 100dvh;
}
.min-h-\[150px\] {
  min-height: 150px;
}
.min-h-\[184px\] {
  min-height: 184px;
}
.min-h-\[220px\] {
  min-height: 220px;
}
.min-h-dvh {
  min-height: 100dvh;
}
.min-h-screen {
  min-height: 100vh;
}
.\!w-1\/2 {
  width: 50% !important;
}
.\!w-\[240px\] {
  width: 240px !important;
}
.\!w-full {
  width: 100% !important;
}
.w-12 {
  width: 3rem;
}
.w-16 {
  width: 4rem;
}
.w-5 {
  width: 1.25rem;
}
.w-52 {
  width: 13rem;
}
.w-6 {
  width: 1.5rem;
}
.w-7 {
  width: 1.75rem;
}
.w-8 {
  width: 2rem;
}
.w-\[110\%\] {
  width: 110%;
}
.w-\[20px\] {
  width: 20px;
}
.w-\[220px\] {
  width: 220px;
}
.w-\[250px\] {
  width: 250px;
}
.w-\[260px\] {
  width: 260px;
}
.w-\[80\%\] {
  width: 80%;
}
.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}
.w-full {
  width: 100%;
}
.min-w-\[100dvw\] {
  min-width: 100dvw;
}
.min-w-\[118px\] {
  min-width: 118px;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-\[220px\] {
  max-width: 220px;
}
.max-w-\[240px\] {
  max-width: 240px;
}
.max-w-\[402px\] {
  max-width: 402px;
}
.max-w-\[480px\] {
  max-width: 480px;
}
.max-w-\[520px\] {
  max-width: 520px;
}
.max-w-fit {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.max-w-sm {
  max-width: 24rem;
}
.max-w-xl {
  max-width: 36rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  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));
}
.rotate-90 {
  --tw-rotate: 90deg;
  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));
}
.rotate-\[18deg\] {
  --tw-rotate: 18deg;
  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));
}
.rotate-\[360deg\] {
  --tw-rotate: 360deg;
  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));
}
.rotate-\[36deg\] {
  --tw-rotate: 36deg;
  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));
}
.scale-110 {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  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));
}
.\!transform {
  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)) !important;
}
.transform {
  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));
}
.\!cursor-default {
  cursor: default !important;
}
.cursor-default {
  cursor: default;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.cursor-pointer {
  cursor: pointer;
}
.select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.resize {
  resize: both;
}
.list-decimal {
  list-style-type: decimal;
}
.auto-rows-max {
  grid-auto-rows: max-content;
}
.auto-rows-min {
  grid-auto-rows: min-content;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-\[1fr_20\%\] {
  grid-template-columns: 1fr 20%;
}
.grid-cols-\[1fr_auto\] {
  grid-template-columns: 1fr auto;
}
.grid-cols-\[50px_1fr_100px\] {
  grid-template-columns: 50px 1fr 100px;
}
.grid-cols-\[50px_1fr_110px\] {
  grid-template-columns: 50px 1fr 110px;
}
.grid-cols-\[50px_1fr_auto\] {
  grid-template-columns: 50px 1fr auto;
}
.grid-cols-\[auto_1fr\] {
  grid-template-columns: auto 1fr;
}
.grid-rows-1 {
  grid-template-rows: repeat(1, minmax(0, 1fr));
}
.grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.place-items-center {
  place-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-items-center {
  justify-items: center;
}
.justify-items-stretch {
  justify-items: stretch;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-x-4 {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.gap-y-1 {
  row-gap: 0.25rem;
}
.gap-y-2 {
  row-gap: 0.5rem;
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.self-center {
  align-self: center;
}
.justify-self-end {
  justify-self: end;
}
.justify-self-center {
  justify-self: center;
}
.justify-self-stretch {
  justify-self: stretch;
}
.overflow-hidden {
  overflow: hidden;
}
.\!overflow-y-auto {
  overflow-y: auto !important;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overscroll-contain {
  overscroll-behavior: contain;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-\[20px\] {
  border-radius: 20px;
}
.rounded-\[32px\] {
  border-radius: 32px;
}
.rounded-\[34px\] {
  border-radius: 34px;
}
.rounded-\[999px\] {
  border-radius: 999px;
}
.rounded-\[var\(--lg-radius\)\] {
  border-radius: var(--lg-radius);
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-t-3xl {
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}
.rounded-t-\[60px\] {
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
}
.border {
  border-width: 1px;
}
.border-4 {
  border-width: 4px;
}
.border-\[rgba\(130\2c 196\2c 226\2c 0\.4\)\] {
  border-color: rgba(130,196,226,0.4);
}
.border-white\/10 {
  border-color: rgb(255 255 255 / 0.1);
}
.border-white\/50 {
  border-color: rgb(255 255 255 / 0.5);
}
.bg-\[\#47E538\] {
  --tw-bg-opacity: 1;
  background-color: rgb(71 229 56 / var(--tw-bg-opacity, 1));
}
.bg-\[\#82C4E2\] {
  --tw-bg-opacity: 1;
  background-color: rgb(130 196 226 / var(--tw-bg-opacity, 1));
}
.bg-\[\#f4a21b\] {
  --tw-bg-opacity: 1;
  background-color: rgb(244 162 27 / var(--tw-bg-opacity, 1));
}
.bg-\[\#f6f6f6\] {
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity, 1));
}
.bg-\[\#f9f9f9\] {
  --tw-bg-opacity: 1;
  background-color: rgb(249 249 249 / var(--tw-bg-opacity, 1));
}
.bg-\[rgba\(57\2c _110\2c _129\2c _0\.85\)\] {
  background-color: rgba(57, 110, 129, 0.85);
}
.bg-black\/60 {
  background-color: rgb(0 0 0 / 0.6);
}
.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-white\/10 {
  background-color: rgb(255 255 255 / 0.1);
}
.bg-white\/40 {
  background-color: rgb(255 255 255 / 0.4);
}
.bg-white\/5 {
  background-color: rgb(255 255 255 / 0.05);
}
.bg-\[linear-gradient\(0deg\2c rgba\(255\2c 255\2c 255\2c 0\.2\)_0\%\2c rgba\(255\2c 255\2c 255\2c 0\.2\)_100\%\)\] {
  background-image: linear-gradient(0deg,rgba(255,255,255,0.2) 0%,rgba(255,255,255,0.2) 100%);
}
.bg-\[linear-gradient\(0deg\2c rgba\(255\2c 255\2c 255\2c 0\.4\)_0\%\2c rgba\(255\2c 255\2c 255\2c 0\.4\)_100\%\)\] {
  background-image: linear-gradient(0deg,rgba(255,255,255,0.4) 0%,rgba(255,255,255,0.4) 100%);
}
.bg-\[radial-gradient\(140\%_120\%_at_20\%_20\%\2c rgba\(255\2c 255\2c 255\2c 0\.9\)\2c \#fdfefe_60\%\2c \#f5f7f8_100\%\)\] {
  background-image: radial-gradient(140% 120% at 20% 20%,rgba(255,255,255,0.9),#fdfefe 60%,#f5f7f8 100%);
}
.bg-\[url\(\'\@\/assets\/img\/grad\.png\'\)\] {
  background-image: url('/assets/grad.CqVKmfvc.png');
}
.bg-cover {
  background-size: cover;
}
.bg-center {
  background-position: center;
}
.stroke-white {
  stroke: #fff;
}
.\!object-contain {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.\!p-2 {
  padding: 0.5rem !important;
}
.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-7 {
  padding: 1.75rem;
}
.p-\[1px\] {
  padding: 1px;
}
.\!py-1\.5 {
  padding-top: 0.375rem !important;
  padding-bottom: 0.375rem !important;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.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;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-\[calc\(100dvw\*0\.09\)\] {
  padding-left: calc(100dvw * 0.09);
  padding-right: calc(100dvw * 0.09);
}
.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.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;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-\[14px\] {
  padding-top: 14px;
  padding-bottom: 14px;
}
.\!pb-32 {
  padding-bottom: 8rem !important;
}
.\!pt-16 {
  padding-top: 4rem !important;
}
.pb-0\.5 {
  padding-bottom: 0.125rem;
}
.pb-1\.5 {
  padding-bottom: 0.375rem;
}
.pb-16 {
  padding-bottom: 4rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.pb-24 {
  padding-bottom: 6rem;
}
.pb-28 {
  padding-bottom: 7rem;
}
.pb-32 {
  padding-bottom: 8rem;
}
.pb-5 {
  padding-bottom: 1.25rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pl-1 {
  padding-left: 0.25rem;
}
.pt-10 {
  padding-top: 2.5rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-3 {
  padding-top: 0.75rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pt-8 {
  padding-top: 2rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-start {
  text-align: start;
}
.\!font-\[\'Helvetica\'\] {
  font-family: 'Helvetica' !important;
}
.font-\[\'Druk\'\] {
  font-family: 'Druk';
}
.font-\[\'Helvetica_Neue\'\2c \'Helvetica\'\2c sans-serif\] {
  font-family: 'Helvetica Neue','Helvetica',sans-serif;
}
.font-\[\'Helvetica_Neue\'\] {
  font-family: 'Helvetica Neue';
}
.\!text-\[15px\] {
  font-size: 15px !important;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-\[10px\] {
  font-size: 10px;
}
.text-\[15px\] {
  font-size: 15px;
}
.text-\[17px\] {
  font-size: 17px;
}
.text-\[18px\] {
  font-size: 18px;
}
.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-black {
  font-weight: 900;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.font-light {
  font-weight: 300;
}
.font-medium {
  font-weight: 500;
}
.font-normal {
  font-weight: 400;
}
.font-semibold {
  font-weight: 600;
}
.italic {
  font-style: italic;
}
.leading-\[1\.1\] {
  line-height: 1.1;
}
.leading-\[1\.2\] {
  line-height: 1.2;
}
.leading-\[1\.35\] {
  line-height: 1.35;
}
.leading-\[1\.5\] {
  line-height: 1.5;
}
.leading-\[1\] {
  line-height: 1;
}
.leading-none {
  line-height: 1;
}
.leading-tight {
  line-height: 1.25;
}
.tracking-\[0\.01em\] {
  letter-spacing: 0.01em;
}
.tracking-\[0\.2px\] {
  letter-spacing: 0.2px;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.\!text-\[\#386d81\] {
  --tw-text-opacity: 1 !important;
  color: rgb(56 109 129 / var(--tw-text-opacity, 1)) !important;
}
.text-\[\#333333\] {
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
}
.text-\[\#333\] {
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
}
.text-\[\#386D81\] {
  --tw-text-opacity: 1;
  color: rgb(56 109 129 / var(--tw-text-opacity, 1));
}
.text-\[\#386d81\] {
  --tw-text-opacity: 1;
  color: rgb(56 109 129 / var(--tw-text-opacity, 1));
}
.text-\[\#396e81\] {
  --tw-text-opacity: 1;
  color: rgb(57 110 129 / var(--tw-text-opacity, 1));
}
.text-\[\#3a7f96\] {
  --tw-text-opacity: 1;
  color: rgb(58 127 150 / var(--tw-text-opacity, 1));
}
.text-\[\#5de3ff\] {
  --tw-text-opacity: 1;
  color: rgb(93 227 255 / var(--tw-text-opacity, 1));
}
.text-\[\#6b7a84\] {
  --tw-text-opacity: 1;
  color: rgb(107 122 132 / var(--tw-text-opacity, 1));
}
.text-\[\#82c4e2\] {
  --tw-text-opacity: 1;
  color: rgb(130 196 226 / var(--tw-text-opacity, 1));
}
.text-\[\#d2d2d2\] {
  --tw-text-opacity: 1;
  color: rgb(210 210 210 / var(--tw-text-opacity, 1));
}
.text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-teal-100\/80 {
  color: rgb(204 251 241 / 0.8);
}
.text-teal-200 {
  --tw-text-opacity: 1;
  color: rgb(153 246 228 / var(--tw-text-opacity, 1));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-white\/60 {
  color: rgb(255 255 255 / 0.6);
}
.text-white\/70 {
  color: rgb(255 255 255 / 0.7);
}
.text-white\/80 {
  color: rgb(255 255 255 / 0.8);
}
.underline {
  text-decoration-line: underline;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-60 {
  opacity: 0.6;
}
.opacity-70 {
  opacity: 0.7;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px 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-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-\[0_3px_8px_rgba\(71\2c 229\2c 56\2c 0\.35\)\2c inset_0_1px_0_rgba\(255\2c 255\2c 255\2c 0\.38\)\] {
  --tw-shadow: 0 3px 8px rgba(71,229,56,0.35),inset 0 1px 0 rgba(255,255,255,0.38);
  --tw-shadow-colored: 0 3px 8px var(--tw-shadow-color), inset 0 1px 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);
}
.shadow-\[0_3px_8px_rgba\(99\2c 183\2c 224\2c 0\.35\)\2c inset_0_1px_0_rgba\(255\2c 255\2c 255\2c 0\.38\)\] {
  --tw-shadow: 0 3px 8px rgba(99,183,224,0.35),inset 0 1px 0 rgba(255,255,255,0.38);
  --tw-shadow-colored: 0 3px 8px var(--tw-shadow-color), inset 0 1px 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);
}
.shadow-\[0_4px_10px_rgba\(0\2c 0\2c 0\2c 0\.05\)\] {
  --tw-shadow: 0 4px 10px rgba(0,0,0,0.05);
  --tw-shadow-colored: 0 4px 10px 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-\[0_5px_17px_rgba\(7\2c 18\2c 26\2c 0\.13\)\2c 0_0_0_1px_rgba\(0\2c 0\2c 0\2c 0\.03\)\] {
  --tw-shadow: 0 5px 17px rgba(7,18,26,0.13),0 0 0 1px rgba(0,0,0,0.03);
  --tw-shadow-colored: 0 5px 17px var(--tw-shadow-color), 0 0 0 1px 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-\[inset_0_0_10px_rgba\(0\2c 0\2c 0\2c 0\.1\)\] {
  --tw-shadow: inset 0 0 10px rgba(0,0,0,0.1);
  --tw-shadow-colored: inset 0 0 10px 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-\[inset_0_1px_0_rgba\(0\2c 0\2c 0\2c 0\.04\)\] {
  --tw-shadow: inset 0 1px 0 rgba(0,0,0,0.04);
  --tw-shadow-colored: inset 0 1px 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);
}
.shadow-\[inset_0px_0px_8px_\#f2f2f2\2c inset_0px_0px_0px_1px_\#a6a6a6\2c inset_-2px_-2px_0\.5px_-2px_\#262626\2c inset_2px_2px_0\.5px_-2px_\#262626\2c inset_3px_3px_0\.5px_-3\.5px_\#ffffff\2c 0px_1px_8px_\#0000001a\2c 0px_0px_2px_\#0000001a\2c inset_0_1px_0_rgba\(255\2c 255\2c 255\2c 0\.40\)\2c inset_1px_0_0_rgba\(255\2c 255\2c 255\2c 0\.32\)\2c inset_0_-1px_1px_rgba\(0\2c 0\2c 0\2c 0\.20\)\2c inset_-1px_0_1px_rgba\(0\2c 0\2c 0\2c 0\.16\)\] {
  --tw-shadow: inset 0px 0px 8px #f2f2f2,inset 0px 0px 0px 1px #a6a6a6,inset -2px -2px 0.5px -2px #262626,inset 2px 2px 0.5px -2px #262626,inset 3px 3px 0.5px -3.5px #ffffff,0px 1px 8px #0000001a,0px 0px 2px #0000001a,inset 0 1px 0 rgba(255,255,255,0.40),inset 1px 0 0 rgba(255,255,255,0.32),inset 0 -1px 1px rgba(0,0,0,0.20),inset -1px 0 1px rgba(0,0,0,0.16);
  --tw-shadow-colored: inset 0px 0px 8px var(--tw-shadow-color), inset 0px 0px 0px 1px var(--tw-shadow-color), inset -2px -2px 0.5px -2px var(--tw-shadow-color), inset 2px 2px 0.5px -2px var(--tw-shadow-color), inset 3px 3px 0.5px -3.5px var(--tw-shadow-color), 0px 1px 8px var(--tw-shadow-color), 0px 0px 2px var(--tw-shadow-color), inset 0 1px 0 var(--tw-shadow-color), inset 1px 0 0 var(--tw-shadow-color), inset 0 -1px 1px var(--tw-shadow-color), inset -1px 0 1px 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);
}
.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.grayscale {
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur-xl {
  --tw-backdrop-blur: blur(24px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-filter {
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[opacity\2c transform\2c box-shadow\] {
  transition-property: opacity,transform,box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  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;
}
.duration-150 {
  transition-duration: 150ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-\[150ms\2c 120ms\2c 200ms\] {
  transition-duration: 150ms,120ms,200ms;
}
.duration-\[2600ms\] {
  transition-duration: 2600ms;
}
.ease-\[ease\2c ease\2c ease\] {
  transition-timing-function: ease,ease,ease;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.\[-webkit-backdrop-filter\:blur\(6px\)_brightness\(100\%\)_blur\(1\.0px\)_brightness\(100\.0\%\)_saturate\(105\.0\%\)_hue-rotate\(10\.0deg\)\] {
  -webkit-backdrop-filter: blur(6px) brightness(100%) blur(1.0px) brightness(100.0%) saturate(105.0%) hue-rotate(10.0deg);
}
.\[backdrop-filter\:blur\(6px\)_brightness\(100\%\)_blur\(1\.0px\)_brightness\(100\.0\%\)_saturate\(105\.0\%\)_hue-rotate\(10\.0deg\)\] {
  backdrop-filter: blur(6px) brightness(100%) blur(1.0px) brightness(100.0%) saturate(105.0%) hue-rotate(10.0deg);
}
:root,
html,
body,
#app {
  height: 100%;
  overscroll-behavior: none;
}

:root {
  --text: #386d81;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-text-size-adjust: 100%;
  background-image: radial-gradient(ellipse at 25% 120%, #ffffff 0%, #5b8fa3 45%, #386d81 100%);
  background-repeat: no-repeat;
  color: var(--text);
}

#app {
  font-family: "Helvetica", "Noto Sans", Arial, sans-serif;
}

.glass-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04252b;
  font-weight: 700;
  border-radius: 16px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:active {
  transform: translateY(1px) scale(0.99);
}

.heading-gradient {
  background: linear-gradient(135deg, #c2f4ff, #1dd8c8 60%, #5de3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.bottom-safe {
  padding-bottom: env(safe-area-inset-bottom);
}

.top-safe {
  padding-top: env(safe-area-inset-top);
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.2s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.main-button {
  background: url("/assets/button.D9hStQxr.png") center/cover no-repeat;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 14px 28px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  color: #fff;
  cursor: pointer;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-\[\'Druk\'\] {
  font-weight: 700;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.before\:absolute::before {
  content: var(--tw-content);
  position: absolute;
}

.before\:inset-0::before {
  content: var(--tw-content);
  inset: 0px;
}

.before\:rounded-\[32px\]::before {
  content: var(--tw-content);
  border-radius: 32px;
}

.before\:bg-\[linear-gradient\(135deg\2c rgba\(255\2c 255\2c 255\2c 0\.6\)_0\%\2c rgba\(255\2c 255\2c 255\2c 0\.12\)_40\%\2c rgba\(255\2c 255\2c 255\2c 0\.55\)_100\%\)\]::before {
  content: var(--tw-content);
  background-image: linear-gradient(135deg,rgba(255,255,255,0.6) 0%,rgba(255,255,255,0.12) 40%,rgba(255,255,255,0.55) 100%);
}

.before\:content-\[\'\'\]::before {
  --tw-content: '';
  content: var(--tw-content);
}

.before\:\[-webkit-mask-composite\:xor\]::before {
  content: var(--tw-content);
  -webkit-mask-composite: xor;
}

.before\:\[-webkit-mask\:linear-gradient\(\#fff_0_0\)_content-box\2c linear-gradient\(\#fff_0_0\)\]::before {
  content: var(--tw-content);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
}

.before\:\[mask-composite\:exclude\]::before {
  content: var(--tw-content);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.hover\:-translate-y-\[1px\]:hover {
  --tw-translate-y: -1px;
  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));
}

.hover\:shadow-\[0_12px_20px_rgba\(99\2c 183\2c 224\2c 0\.4\)\2c inset_0_1px_0_rgba\(255\2c 255\2c 255\2c 0\.45\)\]:hover {
  --tw-shadow: 0 12px 20px rgba(99,183,224,0.4),inset 0 1px 0 rgba(255,255,255,0.45);
  --tw-shadow-colored: 0 12px 20px var(--tw-shadow-color), inset 0 1px 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);
}

.active\:translate-y-0:active {
  --tw-translate-y: 0px;
  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\:scale-\[0\.98\]:active {
  --tw-scale-x: 0.98;
  --tw-scale-y: 0.98;
  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\:shadow-\[0_8px_14px_rgba\(99\2c 183\2c 224\2c 0\.35\)\2c inset_0_1px_0_rgba\(255\2c 255\2c 255\2c 0\.3\)\]:active {
  --tw-shadow: 0 8px 14px rgba(99,183,224,0.35),inset 0 1px 0 rgba(255,255,255,0.3);
  --tw-shadow-colored: 0 8px 14px var(--tw-shadow-color), inset 0 1px 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);
}

.active\:brightness-95:active {
  --tw-brightness: brightness(.95);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.disabled\:translate-y-0:disabled {
  --tw-translate-y: 0px;
  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));
}

.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}

.disabled\:opacity-60:disabled {
  opacity: 0.6;
}

.disabled\:opacity-70:disabled {
  opacity: 0.7;
}

.disabled\:shadow-\[0_3px_8px_rgba\(99\2c 183\2c 224\2c 0\.25\)\2c inset_0_1px_0_rgba\(255\2c 255\2c 255\2c 0\.32\)\]:disabled {
  --tw-shadow: 0 3px 8px rgba(99,183,224,0.25),inset 0 1px 0 rgba(255,255,255,0.32);
  --tw-shadow-colored: 0 3px 8px var(--tw-shadow-color), inset 0 1px 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);
}

.disabled\:shadow-none:disabled {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.disabled\:brightness-95:disabled {
  --tw-brightness: brightness(.95);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

@media (min-width: 640px) {
  .sm\:w-\[240px\] {
    width: 240px;
  }
}