/* consent.css — minimal dark consent bar. Neutral so it sits on any surface (design contract ground/lift). */
#mp-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2147483000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
  padding: 14px 16px;
  background: #0E1320;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  color: #E6EAF2;
  font: 14px/1.45 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
#mp-consent .mp-consent-text { margin: 0; flex: 1 1 320px; }
#mp-consent .mp-consent-link { color: #42A1FF; text-decoration: none; }
#mp-consent .mp-consent-link:hover { text-decoration: underline; }
#mp-consent .mp-consent-actions { display: flex; gap: 8px; flex: 0 0 auto; }
#mp-consent .mp-consent-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 8px 14px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: #E6EAF2;
}
#mp-consent .mp-consent-min:hover { background: rgba(255, 255, 255, 0.06); }
#mp-consent .mp-consent-yes {
  background: #42A1FF;
  border-color: #42A1FF;
  color: #061018;
}
#mp-consent .mp-consent-yes:hover { filter: brightness(1.07); }
@media (max-width: 520px) {
  #mp-consent { flex-direction: column; align-items: stretch; }
  /* in a column, the 320px flex-basis becomes HEIGHT — reset it or the bar is a huge empty block */
  #mp-consent .mp-consent-text { flex: 0 1 auto; }
  #mp-consent .mp-consent-actions { justify-content: flex-end; }
}
