.kfgi-floating-card {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(78px, env(safe-area-inset-bottom));
  z-index: 2147483000;
  display: block;
  width: min(214px, 22vw);
  aspect-ratio: 1122 / 1402;
  border-radius: 18px;
  overflow: hidden;
  background: #700019;
  box-shadow: 0 16px 28px rgba(0, 0, 0, .58), 0 0 24px rgba(255, 15, 94, .4);
  text-decoration: none !important;
  isolation: isolate;
  transform: translate3d(0, 0, 0);
  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
  -webkit-tap-highlight-color: transparent;
}

.kfgi-floating-card:hover,
.kfgi-floating-card:focus-visible {
  transform: translate3d(0, -4px, 0) scale(1.035);
  filter: brightness(1.05) saturate(1.08);
  box-shadow: 0 20px 34px rgba(0, 0, 0, .64), 0 0 34px rgba(255, 48, 119, .62);
  outline: none;
}

.kfgi-floating-card:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.kfgi-floating-card__image {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  object-fit: cover;
}

.kfgi-floating-card__button-glow {
  position: absolute;
  left: 3.8%;
  top: 41.3%;
  z-index: 2;
  width: 56.6%;
  height: 13.6%;
  border: 3px solid rgba(255, 255, 255, .95);
  border-radius: 999px;
  background: rgba(255, 22, 96, .08);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .78), 0 0 18px rgba(255, 28, 104, .95), inset 0 0 22px rgba(255, 255, 255, .38);
  pointer-events: none;
  animation: kfgi-button-blink 1.05s ease-in-out infinite;
}

.kfgi-floating-card__button-glow::after {
  position: absolute;
  inset: -8px;
  content: "";
  border: 2px solid rgba(255, 232, 92, .9);
  border-radius: inherit;
  opacity: .7;
  animation: kfgi-button-ring 1.05s ease-in-out infinite;
}

@keyframes kfgi-button-blink {
  0%, 100% {
    opacity: .58;
    filter: brightness(1);
    transform: scale(1);
  }
  48%, 58% {
    opacity: 1;
    filter: brightness(1.55);
    transform: scale(1.045);
  }
}

@keyframes kfgi-button-ring {
  0%, 100% {
    opacity: .15;
    transform: scale(.96);
  }
  48%, 58% {
    opacity: .96;
    transform: scale(1.08);
  }
}

@media (max-width: 782px) {
  .kfgi-floating-card {
    right: max(8px, env(safe-area-inset-right));
    bottom: max(66px, env(safe-area-inset-bottom));
    width: 134px;
    border-radius: 12px;
  }

  .kfgi-floating-card__button-glow {
    border-width: 2px;
  }

  .kfgi-floating-card__button-glow::after {
    inset: -5px;
  }
}
