.live-activation-shell {
  box-sizing: border-box;
  width: min(92vw, 31rem);
  margin: clamp(2rem, 10vh, 6rem) auto;
  padding: clamp(1.5rem, 5vw, 2.5rem);
  border-radius: 1.25rem;
  background: #f7f4eb;
  color: #183d2c;
  box-shadow: 0 1rem 3rem rgb(20 45 32 / 18%);
  text-align: center;
}

.live-activation-logo {
  width: min(12rem, 60vw);
  height: auto;
}

.live-activation-shell h1 {
  margin: 1rem 0 0.75rem;
  font-size: clamp(1.5rem, 5vw, 2rem);
}

.live-activation-shell > p {
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.live-activation-form {
  display: grid;
  gap: 0.75rem;
  text-align: left;
}

.live-activation-form label {
  font-weight: 700;
}

.live-activation-code-field {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 2px solid #769b49;
  border-radius: 0.75rem;
  background: #fff;
}

.live-activation-code-field:focus-within {
  outline: 2px solid #1d5138;
  outline-offset: 2px;
}

.live-activation-code-prefix {
  display: grid;
  place-items: center;
  padding: 0.75rem 0 0.75rem 1rem;
  color: #183d2c;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.live-activation-form input {
  box-sizing: border-box;
  width: 100%;
  min-height: 3.25rem;
  min-width: 0;
  padding: 0.75rem 1rem 0.75rem 0;
  border: 0;
  outline: 0;
  background: #fff;
  color: #183d2c;
  font: inherit;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-activation-form button {
  min-height: 3.25rem;
  padding: 0.75rem 1rem;
  border: 0;
  border-radius: 0.75rem;
  background: #1d5138;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.live-activation-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.live-activation-status {
  min-height: 1.5em;
  margin: 0.25rem 0 0;
  color: #714a2f;
  line-height: 1.4;
}

/* Live shows this notice outside React so the intensity controller cannot
   remove it during the preference-state render. */
#root .dislike-message {
  display: none;
}

.live-dislike-notice {
  position: fixed;
  z-index: 1000;
  top: max(12px, env(safe-area-inset-top));
  left: 50%;
  box-sizing: border-box;
  width: min(calc(100% - 24px), 560px);
  margin: 0;
  padding: 12px 14px;
  transform: translateX(-50%);
  border: 1px solid #ddcfca;
  border-radius: 10px;
  background: #f3eeee;
  color: #21150d;
  box-shadow: 0 10px 30px rgb(72 34 15 / 18%);
  line-height: 1.4;
  text-align: center;
}
