
/* Consent banner styles (dark, responsive) */
.consent-banner {
  position: fixed;
  inset: auto 0 0 0;
  background: #0b0b0b;
  color: #e6f7ff;
  border-top: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, .45);
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 12px clamp(12px, 3vw, 20px);
  z-index: 9999;
}

.consent-banner p {
  margin: 0;
  color: #9aa6b2;
  font-size: clamp(13px, 2.5vw, 15px);
  max-width: 80ch;
  text-align: center;
}

.consent-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-consent {
  border: 1px solid rgba(255, 255, 255, .12);
  background: #0f1113;
  color: #e7faff;
  padding: .5rem .8rem;
  border-radius: 10px;
  font-size: .95rem;
  cursor: pointer;
  transition: transform .12s ease, border-color .2s ease, opacity .2s ease;
}

.btn-consent:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 255, 153, .45);
}

.btn-accept {
  border-color: rgba(0, 255, 153, .45);
}

.btn-reject {
  border-color: rgba(255, 255, 255, .12);
  opacity: .9;
}

.consent-hidden {
  display: none !important;
}

.consent-banner a {
  color: #00ff99;
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 255, 153, .45);
}

.consent-banner a:hover {
  border-bottom-color: rgba(0, 170, 255, .65);
}
