/**
 * Crowdle — guess the top four words linked to a daily keyword.
 *
 * Everything is scoped under `.game-crowdle`.
 */

.game-crowdle {
  --ink: #16150f;
  --paper: #ffffff;
  --muted: #6b6b66;
  --tile: #efeee6;
  --tile-border: #d5d0c2;
  --accent: #1f5f8b;
  --hit: #6aaa64;
  --hit-bg: #6aaa64;
  --near: #c9b458;
  --near-bg: #c9b458;
  --miss: #8e9294;
  --miss-bg: #8e9294;
  --tile-text: #fff;
  --btn: #efeee6;
  --btn-border: #d5d0c2;
  --slot-empty: #efeee8;
  --slot-empty-border: #d3d6da;
  --guess-border: #dcdedf;
  --rel-copy-size: 24px;
  --rel-font-game: var(--pd-font-heading, "Baloo 2", system-ui, sans-serif);
  --rel-font-ui: var(--pd-font-ui, "Source Sans 3", system-ui, sans-serif);
  --rel-soft: #7a7a74;
  --yellow: #f9df6d;
  --green: #a0c35a;
  --blue: #b0c4ef;
  --purple: #ba81c5;
  font-family: var(--rel-font-ui);
}

.game-crowdle * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.game-crowdle input,
.game-crowdle textarea {
  -webkit-user-select: text;
  user-select: text;
}

.game-crowdle [hidden] {
  display: none !important;
}

html:has(.game-crowdle) {
  height: auto;
  min-height: 100%;
  color: var(--pd-colour-text, #16150f);
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
}

body:has(.game-crowdle) {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  min-height: 100dvh !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  background: transparent !important;
  touch-action: manipulation;
}

body:has(.game-crowdle) .pd-game-root {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.game-crowdle {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
}

.game-crowdle .rel-content {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  max-width: 1403px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--paper);
  line-height: normal;
}

.game-crowdle .rel-shell {
  width: 100%;
  max-width: 520px;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 32px 20px max(12px, env(safe-area-inset-bottom, 0px));
  margin: 0 auto;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .game-crowdle {
    --rel-copy-size: 22px;
  }

  html:has(.game-crowdle),
  body:has(.game-crowdle) {
    height: 100dvh !important;
    max-height: 100dvh !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }

  .game-crowdle .rel-shell {
    max-width: none;
    padding-left: 14px;
    padding-right: 14px;
  }

  .game-crowdle .rel-content,
  .game-crowdle .rel-shell {
    min-height: 0 !important;
  }

  html:has(.game-crowdle.is-done),
  body:has(.game-crowdle.is-done) {
    height: auto !important;
    max-height: none !important;
    min-height: 100dvh !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }

  .game-crowdle.is-done .rel-content,
  .game-crowdle.is-done .rel-shell,
  .game-crowdle.is-done .pd-play-area {
    min-height: auto !important;
    height: auto !important;
    overflow: visible !important;
  }
}

/* --- Chrome ------------------------------------------------------------- */

.game-crowdle .rel-topbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin: 0 0 8px;
  flex: 0 0 auto;
}

.game-crowdle.is-welcome .rel-topbar,
.game-crowdle.is-done .rel-topbar {
  display: none !important;
}

.game-crowdle .help-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.15s ease;
}

.game-crowdle .help-btn:hover {
  color: var(--accent);
}

.game-crowdle .help-btn svg {
  width: 30px;
  height: 30px;
  display: block;
}

/* --- Play --------------------------------------------------------------- */

.game-crowdle .rel-content,
.game-crowdle .rel-shell {
  min-height: 0;
}

body.pd-game:not(.pd-welcome):not(.pd-done):not(:has(.is-done)) .game-crowdle .rel-content,
body.pd-game:not(.pd-welcome):not(.pd-done):not(:has(.is-done)) .game-crowdle .rel-shell {
  flex: 1 1 auto;
  min-height: 0 !important;
  overflow: hidden !important;
}

.game-crowdle .rel-play {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

body.pd-game:not(.pd-welcome):not(.pd-done):not(:has(.is-done)) .game-crowdle .pd-play-area {
  justify-content: flex-start !important;
  align-items: stretch !important;
  padding-bottom: 12px !important;
  overflow: hidden !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}

body.pd-game:not(.pd-welcome):not(.pd-done):not(:has(.is-done)) .game-crowdle .pd-play-area > .rel-play {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  max-height: none !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
  overflow: hidden !important;
  padding-bottom: 0 !important;
}

.game-crowdle .rel-top {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  z-index: 2;
  background: var(--paper);
  padding-bottom: 0;
}

.game-crowdle .rel-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.game-crowdle .rel-prompt {
  font-family: var(--rel-font-game);
  font-size: var(--rel-copy-size);
  font-weight: 800;
  line-height: 1.55;
  color: var(--pd-colour-heading, #161613);
  text-align: center;
}

.game-crowdle .rel-prompt-ask {
  font-family: var(--rel-font-ui);
  font-size: 17px;
  font-weight: 700;
  color: #777770;
}

.game-crowdle .rel-prompt-word {
  font-family: var(--rel-font-game);
  font-weight: inherit;
}

.game-crowdle .rel-guess {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 90%;
  max-width: 400px;
  align-self: center;
  margin-top: 4px;
  margin-bottom: 0;
}

.game-crowdle .rel-guess-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.game-crowdle .rel-guess-field {
  position: relative;
  width: 100%;
}

.game-crowdle .rel-guess-input {
  width: 100%;
  min-height: 48px;
  height: 48px;
  padding: 10px 14px;
  border: 2px solid var(--guess-border);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  caret-color: var(--ink);
  font-family: var(--rel-font-game);
  font-size: var(--rel-copy-size);
  font-weight: 700;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  text-align: center;
}

.game-crowdle .rel-guess-input::placeholder {
  color: #7C7C76;
  opacity: 1;
  font-family: var(--rel-font-game);
  font-size: 18px;
  font-weight: 700;
  text-transform: none;
  text-align: center;
  transition: color 0.2s ease;
}

.game-crowdle .rel-guess-input.is-error::placeholder {
  color: #ff6b6b;
}

.game-crowdle .rel-guess-caret {
  display: none;
}

@media (max-width: 768px) {
  .game-crowdle .rel-guess-caret {
    display: none;
  }
}

.game-crowdle .rel-guess-field:focus-within .rel-guess-caret,
.game-crowdle .rel-guess-input:not(:placeholder-shown) ~ .rel-guess-caret,
.game-crowdle .rel-guess-input:disabled ~ .rel-guess-caret,
.game-crowdle .rel-guess.is-thinking .rel-guess-caret {
  animation: none;
  visibility: hidden;
}

@keyframes rel-caret-blink {
  50% { opacity: 0; }
}

.game-crowdle .rel-guess-input:focus,
.game-crowdle .rel-guess-input:focus-visible {
  border-color: var(--guess-border);
  outline: none;
}

.game-crowdle .rel-guess-input:disabled {
  opacity: 0.55;
}

.game-crowdle .rel-guess.is-thinking .rel-guess-input {
  opacity: 1;
  color: transparent;
  caret-color: transparent;
  letter-spacing: 0.12em;
  text-align: center;
  border-color: var(--guess-border);
}

.game-crowdle .rel-guess.is-thinking .rel-guess-input::placeholder {
  color: #7C7C76;
  opacity: 1;
  letter-spacing: 0.18em;
  text-align: center;
  font-weight: 700;
}

.game-crowdle .rel-slots {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 90%;
  max-width: 400px;
  align-self: center;
  flex: 0 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  margin: 12px 0 8px;
  padding: 0;
  perspective: 900px;
}

.game-crowdle .rel-extras {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 90%;
  max-width: 400px;
  align-self: center;
  flex: 0 0 auto;
  margin: 8px 0;
  perspective: 900px;
}

.game-crowdle .rel-score {
  flex: 0 0 auto;
  margin: 4px 0 8px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-align: center;
  word-break: break-word;
}

.game-crowdle .rel-extra {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  color: #161613;
  background: #e6e6e4;
  font-family: var(--rel-font-game);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.game-crowdle .rel-extra-word,
.game-crowdle .rel-extra-mark {
  font-family: var(--rel-font-game);
  font-weight: inherit;
}

.game-crowdle .rel-extra-word {
  text-transform: capitalize;
}

.game-crowdle .rel-extra-mark {
  opacity: 0.88;
}

.game-crowdle .rel-extra.is-miss,
.game-crowdle .rel-extra.is-near {
  color: var(--rel-soft);
  background: var(--slot-empty);
  font-size: 15px;
  font-weight: 700;
}

.game-crowdle .rel-extra.is-new {
  animation: rel-slot-enter 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.game-crowdle .rel-slot.is-shake,
.game-crowdle .rel-extra.is-shake {
  animation: crowdle-already-shake 0.38s ease;
}

@keyframes crowdle-already-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

@media (prefers-reduced-motion: reduce) {
  .game-crowdle .rel-slot.is-shake,
  .game-crowdle .rel-extra.is-shake {
    animation: none;
  }
}

.game-crowdle .rel-slot {
  position: relative;
  display: block;
  width: 100%;
  height: 64px;
  min-height: 64px;
  border: none;
  background: transparent;
  border-radius: 8px;
  flex: 0 0 64px;
}

.game-crowdle .rel-slot-inner {
  position: relative;
  width: 100%;
  height: 64px;
  min-height: 64px;
  transform-style: preserve-3d;
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.game-crowdle .rel-slot.is-flipped .rel-slot-inner {
  transform: rotateX(180deg);
}

.game-crowdle .rel-slot.is-animating {
  animation: rel-slot-enter 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes rel-slot-enter {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.game-crowdle .rel-slot-face {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 2px;
  height: 64px;
  min-height: 64px;
  padding: 8px 10px;
  border: none;
  border-radius: 8px;
  background: var(--slot-empty);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-sizing: border-box;
}

.game-crowdle .rel-slot-front {
  position: relative;
}

.game-crowdle .rel-slot-front .rel-slot-copy,
.game-crowdle .rel-slot.is-empty .rel-slot-copy {
  justify-content: center;
}

.game-crowdle .rel-slot-front .rel-slot-word,
.game-crowdle .rel-slot.is-empty .rel-slot-word {
  display: none;
}

.game-crowdle .rel-slot-back {
  position: absolute;
  inset: 0;
  transform: rotateX(180deg);
}

.game-crowdle .rel-slot.is-hit .rel-slot-face {
  background: var(--slot-empty);
  border: none;
}

.game-crowdle .rel-slot.is-empty .rel-slot-face {
  background: var(--slot-empty);
  border: none;
}

.game-crowdle .rel-slot.is-empty .rel-slot-rank,
.game-crowdle .rel-slot.is-reveal .rel-slot-rank {
  color: var(--rel-soft);
}

.game-crowdle .rel-slot.is-hit .rel-slot-back,
.game-crowdle .rel-slot.is-found .rel-slot-back {
  background: var(--hit-bg);
  border: none;
  color: var(--tile-text);
}

.game-crowdle .rel-slot.is-found[data-rank="1"] .rel-slot-back {
  background: var(--yellow);
}

.game-crowdle .rel-slot.is-found[data-rank="2"] .rel-slot-back {
  background: var(--green);
}

.game-crowdle .rel-slot.is-found[data-rank="3"] .rel-slot-back {
  background: var(--blue);
}

.game-crowdle .rel-slot.is-found[data-rank="4"] .rel-slot-back {
  background: var(--purple);
}

.game-crowdle .rel-slot.is-found[data-rank] .rel-slot-back,
.game-crowdle .rel-slot.is-found[data-rank] .rel-slot-back .rel-slot-rank,
.game-crowdle .rel-slot.is-found[data-rank] .rel-slot-back .rel-slot-word {
  color: #161613;
}

.game-crowdle .rel-slot.is-found[data-rank] .rel-slot-back .rel-slot-stat {
  color: #161613;
  opacity: 0.58;
}

.game-crowdle .rel-extras .rel-slot {
  width: auto;
  min-width: 108px;
  height: 36px;
  min-height: 36px;
  flex: 0 0 auto;
}

.game-crowdle .rel-extras .rel-slot-inner,
.game-crowdle .rel-extras .rel-slot-face {
  height: 36px;
  min-height: 36px;
  padding: 8px 12px;
}

.game-crowdle .rel-slot.is-near .rel-slot-front .rel-slot-rank,
.game-crowdle .rel-slot.is-near .rel-slot-front .rel-slot-word,
.game-crowdle .rel-slot.is-near .rel-slot-back .rel-slot-word,
.game-crowdle .rel-slot.is-near .rel-slot-back .rel-slot-stat {
  display: none;
}

.game-crowdle .rel-slot.is-near .rel-slot-back .rel-slot-copy {
  justify-content: center;
}

.game-crowdle .rel-slot.is-near .rel-slot-face {
  border: none;
}

.game-crowdle .rel-slot.is-near .rel-slot-back {
  background: var(--slot-empty);
  border: none;
  color: var(--rel-soft);
}

.game-crowdle .rel-slot.is-near .rel-slot-back .rel-slot-rank {
  color: var(--rel-soft);
  font-size: 15px;
  min-width: 0;
  white-space: nowrap;
}

.game-crowdle .rel-slot.is-miss .rel-slot-face {
  border: none;
}

.game-crowdle .rel-slot.is-miss .rel-slot-back {
  background: #e6e6e4;
  border: none;
  color: #161613;
}

.game-crowdle .rel-slot.is-reveal .rel-slot-back {
  background: var(--slot-empty);
  border: none;
  color: #9a9a94;
}

.game-crowdle .rel-slot-rank {
  position: static;
  flex: 0 0 auto;
  width: auto;
  min-width: 1.5em;
  font-family: var(--rel-font-game);
  font-size: 18px;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  line-height: 1;
}

.game-crowdle .rel-slot.is-found .rel-slot-back .rel-slot-rank,
.game-crowdle .rel-slot.is-reveal .rel-slot-back .rel-slot-rank {
  display: none;
}

.game-crowdle .rel-slot.is-found .rel-slot-back,
.game-crowdle .rel-slot.is-reveal .rel-slot-back {
  align-items: center;
}

.game-crowdle .rel-slot.is-found .rel-slot-back .rel-slot-copy,
.game-crowdle .rel-slot.is-reveal .rel-slot-back .rel-slot-copy {
  justify-content: center;
}

.game-crowdle .rel-slot.is-found .rel-slot-back .rel-slot-word,
.game-crowdle .rel-slot.is-reveal .rel-slot-back .rel-slot-word,
.game-crowdle .rel-slot.is-found .rel-slot-back .rel-slot-stat,
.game-crowdle .rel-slot.is-reveal .rel-slot-back .rel-slot-stat {
  text-align: center;
}

.game-crowdle .rel-slot.is-hit .rel-slot-back .rel-slot-rank,
.game-crowdle .rel-slot.is-found .rel-slot-back .rel-slot-rank {
  color: var(--tile-text);
}

.game-crowdle .rel-slot.is-miss .rel-slot-back .rel-slot-rank,
.game-crowdle .rel-slot.is-miss .rel-slot-back .rel-slot-word {
  color: #161613;
}

.game-crowdle .rel-slot-copy {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  width: 100%;
  min-width: 0;
}

.game-crowdle .rel-slot-stat {
  font-family: var(--rel-font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: #9a9a94;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-crowdle .rel-slot-word {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--rel-font-game);
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  text-align: left;
  color: var(--ink);
  letter-spacing: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-crowdle .rel-slot.is-hit .rel-slot-back .rel-slot-word,
.game-crowdle .rel-slot.is-found .rel-slot-back .rel-slot-word {
  color: var(--tile-text);
}

.game-crowdle .rel-slot.is-reveal .rel-slot-back {
  background: #e6e6e4;
  border: none;
  color: #161613;
}

.game-crowdle .rel-slot.is-reveal .rel-slot-back .rel-slot-rank,
.game-crowdle .rel-slot.is-reveal .rel-slot-back .rel-slot-word,
.game-crowdle .rel-slot.is-reveal .rel-slot-back .rel-slot-stat {
  color: #161613;
}

.game-crowdle .rel-guess {
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.game-crowdle.is-leaving-play .rel-guess {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.game-crowdle.is-done .rel-guess {
  display: none !important;
}

.game-crowdle.is-done,
.game-crowdle.is-done .rel-content,
.game-crowdle.is-done .rel-shell,
.game-crowdle.is-done .pd-play-area {
  flex: none !important;
  min-height: auto !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

.game-crowdle.is-done .rel-play,
.game-crowdle.is-done .rel-slots,
.game-crowdle.is-done .rel-extras {
  overflow: visible;
  flex: none;
  max-height: none;
}

.game-crowdle.is-done .rel-slots {
  gap: 8px;
}

body.pd-game .game-crowdle.is-celebrating .rel-content,
body.pd-game .game-crowdle.is-celebrating .rel-shell,
body.pd-game .game-crowdle.is-celebrating .pd-play-area,
body.pd-game .game-crowdle.is-celebrating .rel-play,
body.pd-game .game-crowdle.is-celebrating .rel-slots {
  overflow: visible !important;
}

.game-crowdle .rel-slot.is-celebrate {
  animation: rel-celebrate-pop 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.game-crowdle .rel-slot.is-celebrate-wiggle {
  animation: rel-celebrate-wiggle 0.72s ease;
}

@keyframes rel-celebrate-pop {
  0% { transform: scale(1); }
  38% { transform: scale(1.055); }
  100% { transform: scale(1); }
}

@keyframes rel-celebrate-wiggle {
  0%, 100% { transform: rotate(0deg); }
  18% { transform: rotate(-1.8deg); }
  36% { transform: rotate(1.6deg); }
  54% { transform: rotate(-1deg); }
  72% { transform: rotate(0.55deg); }
}

.game-crowdle #relComplete.pd-complete-panel {
  margin-top: 24px;
  opacity: 1;
  transform: none;
}

.game-crowdle #relComplete.pd-complete-panel:not(.is-shown) {
  visibility: hidden;
  pointer-events: none;
}

.game-crowdle #relComplete.pd-complete-panel.is-instant .rel-c-stage {
  transition: none;
}

.game-crowdle .rel-c-stage {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.game-crowdle .rel-c-stage.is-in {
  opacity: 1;
  transform: none;
}

html[data-theme="dark"] .game-crowdle {
  --ink: #f2f1ea;
  --paper: #141412;
  --muted: #a8a79e;
  --tile: #22211c;
  --tile-border: #3a3933;
  --accent: #6eb3e0;
  --hit: #538d4e;
  --hit-bg: #538d4e;
  --near: #b59f3b;
  --near-bg: #b59f3b;
  --miss: #3a3a3c;
  --miss-bg: #3a3a3c;
  --btn: #22211c;
  --btn-border: #3a3933;
  --slot-empty: #2e2e2e;
  --slot-empty-border: #3a3a3c;
  --guess-border: #5c5c5e;
  --rel-soft: #8e8e88;
}

html[data-theme="dark"] .game-crowdle .rel-content {
  background: var(--paper);
}

html[data-theme="dark"] .game-crowdle .rel-slot.is-hit .rel-slot-face,
html[data-theme="dark"] .game-crowdle .rel-slot.is-reveal .rel-slot-back {
  background: var(--slot-empty);
}

html[data-theme="dark"] .game-crowdle .rel-guess-input {
  background: #1b1a16;
}

html[data-theme="dark"] .game-crowdle .rel-guess-input::placeholder {
  color: #7C7C76;
}

html[data-theme="dark"] .game-crowdle .rel-guess-input.is-error::placeholder {
  color: #ff6b6b;
}

html[data-theme="dark"] .game-crowdle .rel-top {
  background: var(--paper);
}

html[data-theme="dark"] .game-crowdle .rel-prompt-ask {
  color: #9a9a94;
}
