.analytics-consent {
  position: fixed;
  z-index: 2147483000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  color: #f7f7fa;
  background: #13151b;
  border: 1px solid #343844;
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.52);
  font-family: Arial, Helvetica, sans-serif;
}

.analytics-consent__copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.3;
}

.analytics-consent__copy p {
  margin: 0;
  color: #b7beca;
  font-size: 0.9rem;
  line-height: 1.5;
}

.analytics-consent__copy a {
  color: #ffffff;
  text-decoration-color: #ff4056;
  text-underline-offset: 3px;
}

.analytics-consent__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.analytics-consent__actions button {
  min-height: 44px;
  padding: 10px 16px;
  color: #f7f7fa;
  background: #232630;
  border: 1px solid #3a3f4c;
  border-radius: 6px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
}

.analytics-consent__actions .analytics-consent__accept {
  color: #ffffff;
  background: #df183d;
  border-color: #ff4056;
}

.analytics-consent__actions button:focus-visible,
.analytics-consent__copy a:focus-visible {
  outline: 3px solid #58d6c7;
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .analytics-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    padding: 16px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .analytics-consent__actions button {
    width: 100%;
  }
}
