/* ── GDPR-style consent banner ────────────────────────────────────────── */
#consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: -120px;
  z-index: 2000;
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-float);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: bottom 0.35s cubic-bezier(0.4,0,0.2,1);
}

#consent-banner.visible {
  bottom: 16px;
}

#consent-banner-text {
  font-size: 0.78rem;
  color: var(--text-primary);
  line-height: 1.5;
}

#consent-banner-text a {
  color: var(--accent);
  text-decoration: underline;
}

#consent-banner-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

#consent-banner-actions button {
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transition: background 0.15s, color 0.15s, transform 0.1s;
}

#consent-decline-btn {
  background: var(--bg-pill);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

#consent-decline-btn:hover {
  background: var(--bg-pill-hover);
  color: var(--text-primary);
}

#consent-accept-btn {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #ffffff;
}

#consent-accept-btn:hover {
  background: var(--accent-hover);
}

@media (max-width: 480px) {
  #consent-banner {
    left: 10px;
    right: 10px;
    padding: 14px;
  }

  #consent-banner-actions {
    justify-content: stretch;
  }

  #consent-banner-actions button {
    flex: 1;
  }
}