.analytics-consent {
  position: fixed;
  z-index: 1000;
  right: 16px;
  bottom: 16px;
  width: min(440px, calc(100% - 24px));
  padding: 16px;
  border: 2px solid #777386;
  color: #ffffff;
  background: #181823;
  box-shadow: 6px 6px 0 #030305;
  font-family: "Courier New", Courier, monospace;
}

.analytics-consent[hidden] {
  display: none;
}

.analytics-consent p {
  margin: 0 0 12px;
  color: #d5d3df;
  font-size: 0.88rem;
  line-height: 1.45;
}

.analytics-consent__actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.analytics-consent button {
  min-width: 112px;
  min-height: 38px;
  padding: 0 12px;
  border: 2px solid #777386;
  color: #ffffff;
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.analytics-consent button:hover,
.analytics-consent button:focus-visible {
  border-color: #0bf7c7;
  outline: none;
}

.analytics-consent .analytics-consent__accept {
  border-color: #ffec5c;
  color: #09090f;
  background: #ffec5c;
}

@media (max-width: 520px) {
  .analytics-consent {
    right: 12px;
    bottom: 12px;
  }

  .analytics-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .analytics-consent button {
    min-width: 0;
  }
}
