/* Cookie consent banner — matches site design system */
#cc-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: #141414;
  border: 1px solid #2A2A2A;
  border-radius: 4px;
  padding: 18px 22px;
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #E8E4DC;
  z-index: 2147483647;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: cc-slide-up 0.25s ease-out;
}

#cc-banner[hidden] { display: none; }

#cc-banner .cc-text { color: #E8E4DC; }
#cc-banner .cc-text a { color: #C8F250; text-decoration: underline; }
#cc-banner .cc-text a:hover { text-decoration: none; }

#cc-banner .cc-btns {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

#cc-banner button {
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 9px 18px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #2A2A2A;
  background: transparent;
  color: #E8E4DC;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

#cc-banner button:hover {
  border-color: #C8F250;
  color: #C8F250;
}

#cc-banner button.cc-accept {
  background: #C8F250;
  color: #0C0C0C;
  border-color: #C8F250;
  font-weight: 600;
}

#cc-banner button.cc-accept:hover {
  background: #d4ff66;
  color: #0C0C0C;
  border-color: #d4ff66;
}

@keyframes cc-slide-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 520px) {
  #cc-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px 16px;
  }
  #cc-banner .cc-btns { justify-content: stretch; }
  #cc-banner button { flex: 1; }
}
