#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0a1f3d;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 1.5rem;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.875rem;
  color: #cbd5e1;
}

#cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

#cookie-banner-inner p {
  flex: 1;
  min-width: 200px;
  margin: 0;
  line-height: 1.5;
}

#cookie-banner-inner a {
  color: #a78bfa;
  text-decoration: underline;
}

#cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

#cookie-deny {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #94a3b8;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.875rem;
  white-space: nowrap;
}

#cookie-deny:hover { border-color: rgba(255,255,255,0.4); color: #cbd5e1; }

#cookie-accept {
  padding: 0.5rem 1rem;
  background: #7c3aed;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.875rem;
  white-space: nowrap;
}

#cookie-accept:hover { background: #6d28d9; }

@media (max-width: 600px) {
  #cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  #cookie-banner-actions { width: 100%; }
  #cookie-deny, #cookie-accept { flex: 1; text-align: center; }
}
