.milky-launcher {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  font-family: "Inter", Arial, sans-serif;
}

.milky-launcher__button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
  background: #7c3aed;
  box-shadow: 0 14px 34px rgba(13, 10, 20, .28);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: .9rem;
  font-weight: 800;
}

.milky-launcher__button:hover {
  background: #5a00c6;
}

.milky-launcher__button:disabled {
  cursor: wait;
  opacity: .76;
}

.milky-consent {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(13, 10, 20, .38);
  color: #121212;
}

.milky-consent::backdrop {
  background: rgba(18, 18, 18, .72);
  backdrop-filter: blur(4px);
}

.milky-consent__body {
  overflow-y: auto;
  padding: clamp(24px, 5vw, 40px);
}

.milky-consent__eyebrow {
  margin: 0 0 10px;
  color: #5a00c6;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.milky-consent h2 {
  margin: 0 0 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  line-height: 1.08;
}

.milky-consent p {
  color: #5f5e5e;
  font-size: .95rem;
  line-height: 1.65;
}

.milky-consent a {
  color: #5a00c6;
}

.milky-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.milky-consent__actions button {
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid #d8d4dc;
  border-radius: 999px;
  background: #fff;
  color: #121212;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.milky-consent__actions .milky-consent__accept {
  border-color: #7c3aed;
  background: #7c3aed;
  color: #fff;
}

.milky-consent__actions .milky-consent__accept:hover {
  background: #5a00c6;
}

.milky-consent__status {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: #8a2330;
  font-size: .86rem;
  font-weight: 700;
}

@media (max-width: 560px) {
  .milky-launcher {
    right: 14px;
    bottom: 14px;
  }

  .milky-consent__body {
    padding: 20px 22px;
  }

  .milky-consent h2 {
    margin-bottom: 12px;
    font-size: 1.72rem;
  }

  .milky-consent p {
    margin-bottom: 12px;
    font-size: .86rem;
    line-height: 1.48;
  }

  .milky-consent__actions {
    display: grid;
    gap: 8px;
    margin-top: 18px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .milky-consent::backdrop {
    backdrop-filter: none;
  }
}
