.analytics-consent {
  position: fixed;
  z-index: 10000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  padding: 18px 20px;
  color: #f6f8ff;
  background: #07112b;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.analytics-consent__content {
  min-width: 0;
}

.analytics-consent__content strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

.analytics-consent__content p {
  margin: 0;
  color: #cbd5ee;
  font-size: 14px;
  line-height: 1.45;
}

.analytics-consent__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.analytics-consent__button {
  min-height: 42px;
  padding: 0 18px;
  color: #061022;
  background: #f1c94a;
  border: 1px solid #f1c94a;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.analytics-consent__button--secondary {
  color: #f6f8ff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}

.analytics-consent__button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

@media (max-width: 680px) {
  .analytics-consent {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .analytics-consent__actions {
    width: 100%;
  }

  .analytics-consent__button {
    flex: 1;
  }
}
