#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0f2847;
  border-top: 1px solid rgba(52, 211, 153, 0.35);
  color: #e8f4fc;
  padding: 16px 20px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
}

#cookie-consent-banner .cookie-consent-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

#cookie-consent-banner p {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(232, 244, 252, 0.8);
}

#cookie-consent-banner a {
  color: #34d399;
  text-decoration: underline;
}

#cookie-consent-banner .cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

#cookie-consent-banner button {
  font-family: 'Source Code Pro', monospace;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

#cookie-consent-banner .cookie-accept {
  background: #34d399;
  color: #061220;
  border-color: #34d399;
}

#cookie-consent-banner .cookie-accept:hover {
  background: #6ee7b7;
}

#cookie-consent-banner .cookie-decline {
  background: transparent;
  color: #e8f4fc;
  border-color: rgba(56, 189, 248, 0.35);
}

#cookie-consent-banner .cookie-decline:hover {
  background: rgba(15, 40, 71, 0.8);
}

@media (max-width: 768px) {
  #cookie-consent-banner {
    bottom: 58px;
  }
}
