.consent-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 10000;
}

.consent-banner__content {
  max-width: 920px;
  margin: 0 auto;
  background: #0f172a;
  color: #f8fafc;
  border-radius: 14px;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.35);
  padding: 18px 20px;
}

.consent-banner__eyebrow {
  margin: 0 0 6px 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #93c5fd;
}

.consent-banner__title {
  margin: 0 0 10px 0;
  font-size: 24px;
  line-height: 1.2;
  color: #ffffff;
}

.consent-banner__text,
.consent-banner__links {
  margin: 0 0 12px 0;
  font-size: 14px;
  line-height: 1.55;
  color: #dbeafe;
}

.consent-banner__links a {
  color: #fcd34d;
  margin-right: 14px;
}

.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.consent-banner__button,
.consent-manage-button {
  appearance: none;
  border: 1px solid #cbd5e1;
  border-radius: 9999px;
  background: #ffffff;
  color: #0f172a;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  padding: 10px 16px;
}

.consent-banner__button--primary {
  background: #f59e0b;
  border-color: #f59e0b;
  color: #111827;
}

.consent-banner__button--secondary {
  background: transparent;
  color: #f8fafc;
  border-color: #475569;
}

.consent-manage-button {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: #0f172a;
  color: #f8fafc;
  border-color: #334155;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
  display: none !important;
}

@media (max-width: 640px) {
  .consent-banner {
    inset: auto 10px 10px 10px;
  }

  .consent-banner__content {
    padding: 16px;
  }

  .consent-banner__title {
    font-size: 20px;
  }

  .consent-banner__actions {
    flex-direction: column;
  }

  .consent-banner__button,
  .consent-manage-button {
    width: 100%;
    justify-content: center;
  }

  .consent-manage-button {
    left: 10px;
    right: 10px;
  }
}
