.analytics-consent {
  position: fixed;
  z-index: 1000;
  right: 24px;
  bottom: 24px;
  left: 24px;
  width: min(720px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(111, 213, 215, 0.35);
  border-radius: 4px;
  color: white;
  background: #071a20;
  box-shadow: 8px 8px 0 rgba(8, 164, 173, 0.2), 0 18px 60px rgba(7, 26, 32, 0.25);
}

.analytics-consent p {
  max-width: 430px;
  margin: 0;
  color: #c8d7da;
  font-family: var(--sans, sans-serif);
  font-size: 13px;
  line-height: 1.55;
}

.analytics-consent div {
  display: flex;
  gap: 9px;
  flex: 0 0 auto;
}

.analytics-consent button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(111, 213, 215, 0.35);
  border-radius: 3px;
  color: white;
  background: transparent;
  font-family: var(--mono, monospace);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.analytics-consent button:first-child {
  border-color: #08a4ad;
  background: #08a4ad;
}

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

@media (max-width: 620px) {
  .analytics-consent {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: calc(100% - 32px);
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .analytics-consent div {
    width: 100%;
  }

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