body.cookie-consent-open {
  overflow: hidden;
}

.cookie-consent-banner {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top, rgba(162, 106, 255, 0.2), transparent 35%),
    rgba(15, 17, 64, 0.58);
  backdrop-filter: blur(7px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.cookie-consent-banner.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cookie-consent-inner {
  width: min(32rem, calc(100vw - 2rem));
  padding: 1.4rem;
  background: rgba(255, 253, 250, 0.96);
  color: #475569;
  border: 1px solid rgba(141, 73, 255, 0.16);
  border-radius: 1.4rem;
  box-shadow:
    0 1.75rem 4rem rgba(15, 17, 64, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.cookie-consent-kicker {
  margin: 0 0 0.5rem;
  font-family: "Varela Round", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8d49ff;
}

.cookie-consent-title {
  margin: 0 0 0.75rem;
  font-family: "Varela Round", sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #0f1140;
}

.cookie-consent-copy {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #475569;
}

.cookie-consent-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.cookie-consent-actions button {
  margin: 0;
  min-width: 9.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Open Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-consent-actions .cookie-consent-accept {
  color: #fff;
  border: 0;
  background: linear-gradient(
    180deg,
    #a26aff 0%,
    #8d49ff 45.83%,
    #6124c7 74.48%
  );
}

.cookie-consent-actions .cookie-consent-decline {
  background: transparent;
  color: #0f1140;
  border: 1px solid rgba(15, 17, 64, 0.16);
}

.cookie-consent-actions .cookie-consent-decline:hover {
  background: rgba(15, 17, 64, 0.06);
}

.cookie-consent-more {
  margin: 0.95rem 0 0;
  text-align: left;
  font-size: 0.92rem;
}

.cookie-consent-more a {
  color: #8d49ff;
  text-decoration: none;
}

.cookie-consent-more a:hover {
  color: #6124c7;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .cookie-consent-banner {
    padding: 1rem;
  }

  .cookie-consent-inner {
    width: min(100vw, calc(100vw - 1rem));
    padding: 1.2rem;
  }

  .cookie-consent-title {
    font-size: 1.3rem;
  }

  .cookie-consent-actions {
    flex-direction: column;
  }

  .cookie-consent-actions button {
    width: 100%;
  }

  .cookie-consent-more {
    text-align: left;
  }
}
