.consent-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.consent-banner__content {
  width: min(980px, 100%);
  padding: 20px 22px;
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(99, 102, 241, 0.16), rgba(167, 139, 250, 0.05)),
    var(--surface);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.consent-banner__eyebrow {
  margin-bottom: 8px;
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.consent-banner h2 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.consent-banner__text {
  max-width: 70ch;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.75;
}

.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.consent-banner__link {
  color: var(--accent-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.consent-banner__link:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .consent-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .consent-banner__content {
    padding: 18px;
    border-radius: 18px;
  }

  .consent-banner h2 {
    font-size: 20px;
  }

  .consent-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .consent-banner__actions .btn,
  .consent-banner__link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}