.cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  display: none;
}
.cookie-consent.is-visible { display: block; }
.cookie-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(8,11,18,.96);
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
  color: #f5f7fb;
  backdrop-filter: blur(18px);
}
.cookie-card strong { color: #fff; }
.cookie-card p {
  margin: 6px 0 14px;
  color: #a8b1c2;
  font-size: .95rem;
}
.cookie-card a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-actions button {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.cookie-actions button:first-child {
  background: linear-gradient(135deg, #e31b2f, #ff5364);
  border-color: transparent;
}
@media (max-width: 560px) {
  .cookie-consent { left: 10px; right: 10px; bottom: 10px; }
  .cookie-actions { display: grid; }
}
