/* ===== Cookie consent banner (shared: portfolio + landing) ===== */
#cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  max-width: 560px;
  margin: 0 auto;
  background: rgba(15, 16, 20, 0.97);
  color: #e6edf3;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  font-family: system-ui, -apple-system, 'Inter', sans-serif;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
#cookie-banner.show { transform: translateY(0); opacity: 1; }
#cookie-banner .cb-text {
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 14px;
  color: #c9d1d9;
}
#cookie-banner .cb-text a { color: #22d3ee; text-decoration: underline; }
#cookie-banner .cb-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
#cookie-banner .cb-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
  transition: background 0.2s, filter 0.2s;
}
#cookie-banner .cb-decline {
  background: transparent;
  color: #c9d1d9;
  border-color: rgba(255, 255, 255, 0.18);
}
#cookie-banner .cb-decline:hover { background: rgba(255, 255, 255, 0.06); }
#cookie-banner .cb-accept { background: #22d3ee; color: #05060a; }
#cookie-banner .cb-accept:hover { filter: brightness(1.08); }
@media (max-width: 480px) {
  #cookie-banner .cb-actions { flex-direction: column-reverse; }
  #cookie-banner .cb-btn { width: 100%; }
}
