body > .cookie-notice {
  position: fixed !important;
  inset: auto auto max(16px, env(safe-area-inset-bottom)) 50%;
  transform: translateX(-50%);
  z-index: 12000;
  box-sizing: border-box;
  width: min(390px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  padding: 16px;
  border: 1px solid rgba(159,224,238,.4);
  border-radius: 16px;
  background: #0b1e2f;
  color: #f2f8f9;
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
  font: 14px/1.55 'Jost', Arial, sans-serif;
  text-align: left;
}
.cookie-notice p { margin: 0 0 12px; }
.cookie-notice a { color: #9fe0ee; text-decoration: underline; }
.cookie-notice button {
  min-height: 44px;
  padding: 8px 18px;
  border: 1px solid rgba(242,193,78,.68);
  border-radius: 999px;
  background: rgba(242,193,78,.16);
  color: #f2c14e;
  font: inherit;
  cursor: pointer;
}
.cookie-notice a:focus-visible, .cookie-notice button:focus-visible { outline: 2px solid #7af0d6; outline-offset: 3px; }
@media print { body > .cookie-notice { display: none; } }
