/* Self-contained colors (not the site's --bg/--text/--accent variables) so
   this also looks right on links.html, which doesn't load css/style.css. */
#cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #17171b;
  color: #f2f2f2;
  border-top: 1px solid #2a2a30;
  padding: 14px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 0.85rem;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.4);
}

#cookie-consent-banner p {
  margin: 0;
  flex: 1;
  min-width: 220px;
  line-height: 1.4;
}

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

#cookie-consent-banner button {
  background: #a00000;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
}

#cookie-consent-banner button:hover {
  opacity: 0.9;
}

@media (max-width: 600px) {
  #cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}
