/* Fixed notice: the page remains usable until the visitor makes a choice. */
#cookie-banner {
  position: fixed;
  inset: auto 0 0;
  box-sizing: border-box;
  width: 100%;
  z-index: 30;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 72px);
  padding: 22px max(24px, calc((100vw - 1280px) / 2)) calc(22px + env(safe-area-inset-bottom));
  background: #101219;
  border: 0;
  box-shadow: 0 -12px 44px #080a1029;
}
#cookie-banner[hidden] { display: none; }
#cookie-banner .cookie-copy { max-width: 810px; min-width: 0; }
#cookie-banner .cookie-copy,
#cookie-banner .cookie-actions { max-width: 100%; }
#cookie-banner p { max-width: none; margin: 0; color: #efeff2; font-size: 14px; line-height: 1.55; }
#cookie-banner p { overflow-wrap: anywhere; }
#cookie-banner p a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
#cookie-banner .cookie-actions { display: flex; align-items: center; flex: 0 0 auto; gap: 18px; flex-wrap: nowrap; }
#cookie-banner .cookie-actions .gold { min-width: 144px; min-height: 48px; border-radius: 9px; padding: 12px 24px; font-size: 15px; font-weight: 700; }
#cookie-banner .cookie-actions .link { padding: 10px 0; font-size: 12px; font-weight: 500; color: #c3c6cf; text-underline-offset: 4px; }
@media (max-width: 850px) {
  #cookie-banner { gap: 20px; padding: 18px 24px calc(18px + env(safe-area-inset-bottom)); }
  #cookie-banner .cookie-actions { flex-direction: column; gap: 2px; }
}
@media (max-width: 540px) {
  #cookie-banner { flex-direction: column; align-items: stretch; gap: 12px; padding: 16px 18px calc(16px + env(safe-area-inset-bottom)); }
  #cookie-banner p { font-size: 12px; line-height: 1.5; }
  #cookie-banner .cookie-actions { flex-direction: row; justify-content: space-between; gap: 12px; }
  #cookie-banner .cookie-actions button { flex: 0 1 auto; }
  #cookie-banner .cookie-actions { min-width: 0; }
  #cookie-banner .cookie-actions .gold { min-width: 106px; min-height: 44px; padding: 10px 18px; font-size: 14px; }
  #cookie-banner .cookie-actions .link { font-size: 11px; }
}
