/* Minimal GDPR consent banner (analytics) */
.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: rgba(10, 10, 12, 0.96);
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 14px;
  padding: 14px 14px 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #e9e9ee;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.consent-banner__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.consent-banner__text {
  flex: 1 1 520px;
  min-width: 240px;
  font-size: 14px;
  line-height: 1.35;
  opacity: 0.95;
}

.consent-banner__text a {
  color: #d4af37;
  text-decoration: underline;
}

.consent-banner__actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.consent-btn {
  cursor: pointer;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  background: transparent;
  color: #e9e9ee;
}

.consent-btn--primary {
  background: rgba(212, 175, 55, 0.18);
}

@media (max-width: 520px) {
  .consent-banner__actions { width: 100%; }
  .consent-btn { flex: 1 1 50%; }
}
