/* Opalo cookie consent banner — bottom-of-screen, dark surface, brand-matched. */
#opalo-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: var(--bg-surface, #141419);
  color: var(--text-primary, #EEEEF2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  padding: 18px 20px;
  font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  animation: opalo-consent-in 280ms ease both;
  max-width: 720px;
  margin: 0 auto;
}
@keyframes opalo-consent-in {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.opalo-consent__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.opalo-consent__text {
  margin: 0;
  flex: 1 1 320px;
  color: var(--text-primary, #EEEEF2);
}
.opalo-consent__text a {
  color: var(--accent, #7BA4C7);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.opalo-consent__buttons {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}
.opalo-consent__btn {
  font: inherit;
  cursor: pointer;
  padding: 9px 18px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  transition: opacity .15s, transform .1s;
}
.opalo-consent__btn:active { transform: scale(.97); }
.opalo-consent__btn--accept {
  background: var(--cta-bg, #FFFFFF);
  color: var(--cta-text, #0D0D12);
}
.opalo-consent__btn--accept:hover { opacity: .9; }
.opalo-consent__btn--reject {
  background: transparent;
  color: var(--text-secondary, #9999A8);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.opalo-consent__btn--reject:hover { color: var(--text-primary, #EEEEF2); border-color: rgba(255, 255, 255, 0.3); }
@media (max-width: 480px) {
  #opalo-consent { left: 12px; right: 12px; bottom: 12px; padding: 16px; }
  .opalo-consent__buttons { width: 100%; }
  .opalo-consent__btn { flex: 1; }
}
