#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: linear-gradient(180deg, #0a0e17 0%, #111827 100%);
  border-top: 1px solid rgba(20, 184, 166, 0.25);
  padding: 1rem 1.5rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.45);
}
#cookie-consent-banner.cookie-consent--hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.cookie-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cookie-consent-text {
  flex: 1;
  min-width: 200px;
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.5;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.cookie-consent-text a { color: #14b8a6; }
.cookie-consent-actions { display: flex; gap: 0.75rem; }
.cookie-consent-actions button {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
}
.cookie-consent-actions .btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #e2e8f0;
}
.cookie-consent-actions .btn-primary {
  background: #14b8a6;
  border: none;
  color: #0a0e17;
  font-weight: 600;
}
