a,
a *,
button,
button *,
[role="button"],
[role="button"] *,
summary,
summary * {
  cursor: pointer !important;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
  cursor: pointer !important;
}

.cookie-consent {
  position: fixed;
  left: auto;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  width: min(30vw, 560px);
  min-width: 420px;
  margin: 0;
  border: 1px solid rgba(226, 232, 240, 0.42);
  border-radius: 18px;
  background:
    radial-gradient(135% 135% at 14% 12%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.07) 56%, rgba(255, 255, 255, 0.02) 74%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.58), rgba(15, 23, 42, 0.44));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 0 0 1px rgba(148, 163, 184, 0.18),
    0 24px 56px rgba(2, 8, 23, 0.58),
    0 8px 34px rgba(124, 58, 237, 0.18);
  backdrop-filter: blur(24px) saturate(165%) contrast(112%);
  -webkit-backdrop-filter: blur(24px) saturate(165%) contrast(112%);
  color: #e2e8f0;
}

.cookie-consent__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  padding: 14px 16px;
}

.cookie-consent__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #dbe7fb;
}

.cookie-consent__link {
  color: #c7d2fe;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.cookie-consent__link:hover,
.cookie-consent__link:focus-visible {
  color: #e2e8ff;
}

.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 0;
  justify-content: flex-end;
  flex-shrink: 0;
}

.cookie-consent__ok {
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(90deg, #7c3aed, #3b82f6);
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.32), 0 0 24px rgba(34, 211, 238, 0.14);
}

.cookie-consent__ok:hover,
.cookie-consent__ok:focus-visible {
  filter: brightness(1.08);
}

@media (max-width: 1024px) {
  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    min-width: 0;
  }

  .cookie-consent__inner {
    gap: 12px;
  }

  .cookie-consent__actions {
    margin-left: 0;
    justify-content: flex-end;
  }

  .cookie-consent__ok {
    flex: 1;
  }
}
