/* ================================================================
   neekos.ai · Cookie Consent · v2.3.0 · Obsidian theme
   GDPR/CCPA/Law 25 compliant — shows on every page refresh
   ================================================================ */
.cc-banner {
  position: fixed; left: 0; right: 0; bottom: 0;
  padding: max(env(safe-area-inset-bottom), 16px) 16px 16px;
  z-index: 9999;
  pointer-events: none;
  display: flex; justify-content: center;
  opacity: 0; transform: translateY(20px);
  transition: opacity 240ms ease, transform 240ms ease;
}
.cc-banner[hidden] { display: none !important; }
.cc-banner.cc-in { opacity: 1; transform: translateY(0); }
.cc-banner-inner {
  pointer-events: auto;
  width: 100%; max-width: 1080px;
  background: rgba(4, 5, 10, 0.96);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--line-aurum, rgba(233,180,91,.36));
  border-radius: 18px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.7), 0 0 80px -20px rgba(233,180,91,.18);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 1.6fr auto;
  gap: 24px;
  align-items: center;
}
.cc-text strong {
  display: block;
  font-family: var(--d, 'Fraunces'), serif;
  font-size: 1.05rem;
  color: var(--ivory, #F4EEE0);
  margin-bottom: 6px;
}
.cc-text span {
  display: block;
  font-size: 0.875rem;
  color: var(--ivory-70, rgba(244,238,224,.72));
  line-height: 1.6;
}
.cc-text a, .cc-text button.cc-link {
  color: var(--aurum, #E9B45B);
  border-bottom: 1px solid currentColor;
  background: none; border-radius: 0; padding: 0; cursor: pointer;
  font-size: inherit; font-family: inherit;
}
.cc-text a:hover, .cc-text button.cc-link:hover { color: var(--aurum-glow, #FFE2A8); }
.cc-actions {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end;
}
.cc-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--b, 'Inter'), system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease, transform 240ms ease;
}
.cc-btn-secondary {
  background: transparent;
  color: var(--ivory, #F4EEE0);
  border-color: var(--line-strong, rgba(244,238,224,.17));
}
.cc-btn-secondary:hover { border-color: var(--aurum, #E9B45B); color: var(--aurum, #E9B45B); }
.cc-btn-primary {
  background: linear-gradient(135deg, var(--aurum-glow, #FFE2A8), var(--aurum, #E9B45B));
  color: var(--obsidian, #04050A);
  font-weight: 600;
  box-shadow: 0 0 0 1px rgba(233,180,91,.3), 0 10px 24px -8px rgba(233,180,91,.45);
}
.cc-btn-primary:hover {
  background: linear-gradient(135deg, var(--ivory, #F4EEE0), var(--aurum-glow, #FFE2A8));
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .cc-banner-inner { grid-template-columns: 1fr; gap: 16px; padding: 18px 18px; }
  .cc-actions { flex-direction: column; }
  .cc-actions .cc-btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .cc-banner { transition: none !important; }
  .buddy-btn::after { animation: none !important; }
}
