/* ─── Cookie Banner ─────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #121a1f;
  border-top: 1px solid #20282c;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: Satoshi, sans-serif;
  font-size: 14px;
  color: #d4d8da;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.35);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
#cookie-banner.visible {
  transform: translateY(0);
}
#cookie-banner-text {
  flex: 1;
  min-width: 0;
  line-height: 1.55;
}
#cookie-banner-text a {
  color: #a8b5bd;
  text-decoration: underline;
  text-underline-offset: 2px;
}
#cookie-banner-text a:hover {
  color: #ffffff;
}
#cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
#cookie-accept {
  background: #ffffff;
  color: #121a1f;
  border: 1px solid #ffffff;
  padding: 10px 22px;
  font-family: Satoshi, sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
#cookie-accept:hover {
  background: #e4ebf0;
  border-color: #e4ebf0;
}
#cookie-decline {
  background: transparent;
  color: #a8b5bd;
  border: 1px solid #20282c;
  padding: 10px 22px;
  font-family: Satoshi, sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
#cookie-decline:hover {
  border-color: #a8b5bd;
  color: #ffffff;
}

@media (max-width: 767px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px;
    gap: 16px;
  }
  #cookie-banner-actions {
    width: 100%;
  }
  #cookie-accept,
  #cookie-decline {
    flex: 1;
    text-align: center;
  }
}
