/**
 * 首页 Cookie 同意底部横幅（与 Bootstrap 5 可并存，z-index 高于常规导航）
 */
.gather-cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1080;
  padding: 1rem 1.25rem;
  background: rgba(12, 14, 18, 0.97);
  color: #e8eaed;
  border-top: 1px solid rgba(0, 255, 136, 0.35);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
  transform: translateY(100%);
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0;
  pointer-events: none;
}

.gather-cookie-consent.gather-cookie-consent--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.gather-cookie-consent__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.gather-cookie-consent__text {
  flex: 1 1 280px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.gather-cookie-consent__text a {
  color: #00ff88;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gather-cookie-consent__text a:hover {
  color: #66ffc4;
}

.gather-cookie-consent__actions {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.gather-cookie-consent__btn {
  min-width: 7rem;
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .gather-cookie-consent {
    transition: none;
  }
}
