.analytics-consent {
  position: fixed;
  z-index: 2147483000;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #12221c;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
  color: #f2f8f4;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.analytics-consent p {
  margin: 0;
  color: #f2f8f4;
  font-size: 14px;
  line-height: 1.5;
}

.analytics-consent a {
  color: #86dfac;
}

.analytics-consent__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.analytics-consent__button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.analytics-consent__button--primary {
  border-color: #5bcf8d;
  background: #5bcf8d;
  color: #102017;
}

.analytics-consent__button--secondary {
  background: transparent;
  color: #f2f8f4;
}

@media (max-width: 640px) {
  .analytics-consent {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .analytics-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .analytics-consent__button {
    width: 100%;
  }
}
