/* Future Webservice — Consent banner styles */
.fw-consent {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 9999;
  background: #0e1726;
  color: #f4f6fb;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  animation: fw-consent-in 220ms ease-out;
}

.fw-consent__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.fw-consent__text {
  flex: 1 1 360px;
  min-width: 280px;
}

.fw-consent__text strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  color: #fff;
}

.fw-consent__text p {
  margin: 0;
  color: #c9d1e0;
}

.fw-consent__text a {
  color: #7cb1ff;
  text-decoration: underline;
}

.fw-consent__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.fw-consent__btn {
  appearance: none;
  border: 0;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 100ms ease, background 150ms ease;
  font-family: inherit;
}

.fw-consent__btn:active { transform: translateY(1px); }

.fw-consent__btn--primary {
  background: #2f7cff;
  color: #fff;
}
.fw-consent__btn--primary:hover { background: #1f66e0; }

.fw-consent__btn--secondary {
  background: transparent;
  color: #c9d1e0;
  border: 1px solid #3a4760;
}
.fw-consent__btn--secondary:hover { background: rgba(255, 255, 255, 0.05); }

@keyframes fw-consent-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .fw-consent { inset: auto 8px 8px 8px; }
  .fw-consent__inner { padding: 14px 16px; }
  .fw-consent__actions { width: 100%; }
  .fw-consent__btn { flex: 1; }
}
