.consent-banner {
  position: fixed;
  inset-inline: 16px;
  bottom: 16px;
  z-index: 9500;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.consent-banner__inner {
  pointer-events: auto;
  max-width: 920px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 24px;
  align-items: center;
  padding: 16px 20px;
  background: rgba(12, 14, 22, 0.92);
  color: #e7e9ef;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 1.55;
}

.consent-banner__text {
  margin: 0;
  color: rgba(231, 233, 239, 0.85);
}

.consent-banner__link {
  color: #7cb8ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-banner__link:hover {
  color: #a6d0ff;
}

.consent-banner__actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.consent-banner__btn {
  appearance: none;
  border: 0;
  padding: 9px 18px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.consent-banner__btn--primary {
  background: linear-gradient(90deg, #0894ff 0%, #6462ea 100%);
  color: #fff;
}

.consent-banner__btn--primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.consent-banner__btn--ghost {
  background: transparent;
  color: rgba(231, 233, 239, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.consent-banner__btn--ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.consent-fade-enter-active,
.consent-fade-leave-active {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.consent-fade-enter-from,
.consent-fade-leave-to {
  opacity: 0;
  transform: translateY(12px);
}

@media (max-width: 640px) {
  .consent-banner {
    inset-inline: 8px;
    bottom: 8px;
  }

  .consent-banner__inner {
    grid-template-columns: 1fr;
    padding: 14px 16px;
  }

  .consent-banner__actions {
    justify-content: stretch;
  }

  .consent-banner__btn {
    flex: 1;
  }
}
