:root {
  --ink: #07090e;
  --s2: #121a28;
  --s3: #182035;
  --rim: #253045;
  --rim2: #304060;
  --lime: #b8ff00;
  --cyan: #00e5ff;
  --text: #edf1ff;
  --t2: #8fa0c0;
  --t3: #4a5a78;
  --body: 'Space Grotesk', sans-serif;
}
.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  z-index: 1200;
  background: var(--s2);
  border: 1px solid var(--rim2);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  max-width: 520px;
  margin: 0 auto;
  font-family: var(--body, system-ui, sans-serif);
}
@media (min-width: 700px) {
  .cookie-banner {
    bottom: 20px;
    left: auto;
    right: 20px;
    margin: 0;
  }
}
.cookie-banner p {
  font-size: 12px;
  color: var(--t2);
  line-height: 1.55;
  margin-bottom: 10px;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cookie-actions button {
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 9px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
.cookie-actions .btn-lime {
  background: var(--lime);
  color: var(--ink);
  border: none;
}
.cookie-pref label {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: var(--t2);
  margin: 6px 0;
  align-items: center;
}
body.cookie-banner-open {
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
