.consent-banner {
  position: fixed;
  z-index: 10000;
  right: 16px;
  bottom: 16px;
  left: 16px;
  max-width: 760px;
  margin: 0 auto;
  padding: 18px;
  color: #f7f3ff;
  background: rgba(22, 18, 34, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.32);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.consent-banner__content {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
}

.consent-banner__copy {
  max-width: 500px;
}

.consent-banner h2 {
  margin: 0 0 8px;
  color: inherit;
  font-size: 18px;
  line-height: 1.3;
}

.consent-banner p {
  margin: 0 0 8px;
  color: rgba(247, 243, 255, 0.82);
  font-size: 14px;
  line-height: 1.55;
}

.consent-banner .consent-banner__gpc {
  color: #ddd1ff;
  font-weight: 600;
}

.consent-banner a {
  color: #e2d8ff;
  font-size: 14px;
  text-underline-offset: 3px;
}

.consent-banner__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.consent-banner__actions button,
.consent-settings-button {
  min-height: 42px;
  padding: 10px 16px;
  color: #211a32;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 999px;
  font: 600 14px/1.2 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: pointer;
}

.consent-banner__actions button:hover,
.consent-settings-button:hover {
  background: #eee8fa;
}

.consent-banner__actions button:focus-visible,
.consent-settings-button:focus-visible,
.consent-banner a:focus-visible {
  outline: 3px solid #b99cff;
  outline-offset: 3px;
}

.consent-settings-button {
  position: fixed;
  z-index: 9999;
  bottom: 14px;
  left: 14px;
  min-height: 34px;
  padding: 7px 12px;
  color: #f7f3ff;
  background: rgba(22, 18, 34, 0.9);
  border-color: rgba(255, 255, 255, 0.28);
  font-size: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.consent-settings-button:hover {
  background: rgba(42, 34, 62, 0.96);
}

@media (max-width: 640px) {
  .consent-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 16px;
  }

  .consent-banner__content,
  .consent-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .consent-banner__actions button {
    width: 100%;
  }
}
