/* ─── Cookie Banner ─────────────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 9999;
  max-width: 480px;
  margin: 0 auto;
  background: #101530;
  border: 1px solid rgba(59, 123, 255, 0.55);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55), 0 0 24px rgba(59, 123, 255, 0.1);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

#cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cookie-banner-text {
  flex: 1;
  font-size: 13px;
  line-height: 1.5;
  color: #C4CDE4;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin: 0;
}

.cookie-banner-text a {
  color: #6B96FF;
  text-decoration: none;
  font-weight: 600;
}

.cookie-banner-text a:hover {
  text-decoration: underline;
}

#cookie-banner-accept {
  flex-shrink: 0;
  padding: 8px 18px;
  background: #3B7BFF;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  transition: background 0.15s ease;
  white-space: nowrap;
}

#cookie-banner-accept:hover {
  background: #5A90FF;
}

@media (max-width: 480px) {
  #cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  #cookie-banner-accept {
    width: 100%;
    padding: 10px;
  }
}
