.analytics-consent-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 999999;
  width: min(92vw, 540px);
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  color: #f7f7f7;
  background: rgba(7, 8, 12, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.analytics-consent-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.analytics-consent-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.analytics-consent-banner button {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.analytics-consent-accept {
  color: #08080c;
  background: #ffffff;
}

.analytics-consent-reject {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 640px) {
  .analytics-consent-banner {
    grid-template-columns: 1fr;
  }

  .analytics-consent-actions {
    justify-content: stretch;
  }

  .analytics-consent-banner button {
    flex: 1;
  }
}
