.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: #1f252a;
  color: #f1f3f5;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  padding: 16px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  font-size: 14px;
}

.consent-banner__text {
  flex: 1 1 360px;
  line-height: 1.45;
}

.consent-banner__links a {
  color: #9cc7ff;
  text-decoration: none;
}

.consent-banner__links a:hover {
  text-decoration: underline;
}

.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.consent-banner__btn {
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
}

.consent-banner__btn--primary {
  background: #4aa3ff;
  color: #0b1a26;
  font-weight: 600;
}

.consent-banner__btn--ghost {
  background: transparent;
  color: #f1f3f5;
  border: 1px solid #3a4248;
}

@media (max-width: 900px) {
  .consent-banner {
    bottom: calc(16px + 64px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 720px) {
  .consent-banner {
    left: 10px;
    right: 10px;
    bottom: calc(10px + 64px + env(safe-area-inset-bottom));
    font-size: 13px;
  }
}
