/* Visual tokens — parchment/chapel-dark palette, Cardo/Beth Ellen fonts,
   redesigned per the Prayer page redesign scope (Claude Design). Light mode
   stays the warm parchment palette; dark mode is "Nocturne" — warm amber and
   brown, matching Pilgrim Radio's night theme. No purple anywhere. */
:root {
  color-scheme: light;
  --parchment: #ece4da;
  --parchment-raised: #f6f3ec;
  --ink: #36302a;
  --ink-muted: #574c3f;
  --border-warm: #b9a590;
  --link-brown: #6c3a1f;
  --link-hover: #3e1f0e;
  --gold: #ea9d34;
  --gold-rgb: 234, 157, 52;
  --gold-deep: #c87920;
  --danger: #8a4a2f;
  --font-body: "Cardo", "Times New Roman", Georgia, serif;
  --font-display: "Beth Ellen", "Segoe Script", cursive;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --radius-m: 12px;
  --radius-l: 18px;
  --shadow-card: 0 1px 3px rgb(54 48 42 / 10%);
  --shadow-raise: 0 4px 18px rgb(54 48 42 / 12%);
}

/* Nocturne — dark mode. Warm amber/brown, matching Pilgrim Radio's night
   theme (deliberately not Rosé Pine — no violet/purple in this palette). */
:root[data-theme="dark"] {
  --parchment: #150f08;
  --parchment-raised: #2e2415;
  --ink: #f0e3c8;
  --ink-muted: #d8c8a6;
  --border-warm: #6f5a39;
  --link-brown: #d7a24e;
  --link-hover: #f0e3c8;
  --gold: #d7a24e;
  --gold-rgb: 215, 162, 78;
  --gold-deep: #e9b85c;
  --danger: #d98a6a;
  --shadow-card: 0 1px 3px rgb(0 0 0 / 28%);
  --shadow-raise: 0 4px 18px rgb(0 0 0 / 40%);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--parchment);
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  transition: background 250ms ease, color 250ms ease;
}

button,
input,
textarea {
  font: inherit;
}

button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

a,
.quiet-link {
  color: var(--link-brown);
  text-decoration: none;
  text-underline-offset: 3px;
}

a:hover,
.quiet-link:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

[hidden] {
  display: none !important;
}

.lang-es {
  display: none;
}

html:lang(es) .lang-en {
  display: none;
}

html:lang(es) .lang-es {
  display: inline;
}

.chapel-shell {
  position: relative;
  width: min(100% - 2.5rem, 36rem);
  margin-inline: auto;
  padding: var(--space-6) 0 var(--space-7);
  text-align: center;
}

.prayer-shell {
  display: flex;
  width: min(100%, 46rem);
  margin-inline: auto;
  min-height: 100svh;
  flex-direction: column;
  padding: max(1rem, env(safe-area-inset-top)) clamp(0.75rem, 3vw, 1.5rem)
    max(var(--space-6), env(safe-area-inset-bottom));
}

.prayer-shell .state-page {
  width: min(100%, 38rem);
  margin-inline: auto;
}

.welcome-shell {
  width: min(100%, 46rem);
  min-height: 100svh;
  margin-inline: auto;
  padding: max(1rem, env(safe-area-inset-top)) clamp(0.75rem, 3vw, 1.5rem)
    max(var(--space-6), env(safe-area-inset-bottom));
}

.editor-shell {
  width: min(100% - 2.5rem, 34rem);
  min-height: 100svh;
  padding-top: clamp(2.5rem, 6svh, 4rem);
  padding-bottom: clamp(3rem, 7svh, 5rem);
  text-align: left;
}

.chapel-header {
  position: relative;
  margin-bottom: var(--space-5);
}

.language-switch {
  position: absolute;
  top: 0.15rem;
  left: 0;
  border: 0;
  background: transparent;
  padding: var(--space-1) var(--space-2);
  color: var(--link-brown);
  cursor: pointer;
  font-size: 0.78rem;
  font-style: italic;
}

.language-switch:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

.theme-toggle {
  position: absolute;
  top: -0.25rem;
  right: 0;
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--border-warm);
  border-radius: 50%;
  background: var(--parchment-raised);
  color: var(--gold-deep);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  line-height: 1;
}

.theme-toggle:hover {
  border-color: var(--ink-muted);
}

.theme-toggle:focus-visible,
.button:focus-visible,
.quiet-link:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
.deck-card:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.wordmark {
  display: inline-block;
  color: var(--ink-muted);
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.5;
}

.wordmark:hover {
  color: var(--ink);
}

h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 7vw, 2.7rem);
  font-weight: 400;
  line-height: 1.35;
  text-wrap: balance;
}

.page-title-es {
  margin: 0.15rem auto 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  font-style: italic;
}

.eyebrow {
  margin: 0 0 var(--space-2);
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* --- Banner --------------------------------------------------------------- */

.prayer-banner {
  position: relative;
  width: 100%;
  height: clamp(12rem, 27svh, 16rem);
  overflow: hidden;
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: var(--radius-l);
  background: var(--parchment-raised);
  box-shadow: var(--shadow-card);
}

.prayer-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.prayer-banner-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  padding: 34px 28px 20px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(20, 14, 10, 0.85) 40%, rgba(20, 14, 10, 0) 100%);
}

.prayer-banner-scrim .eyebrow {
  margin: 0;
  color: #e8c98a;
}

.prayer-banner-controls {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
}

.prayer-banner-controls .language-switch,
.prayer-banner-controls .theme-toggle {
  position: static;
  background: rgba(20, 14, 10, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #f0e3c8;
}

.prayer-banner-controls .language-switch {
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.78rem;
}

.prayer-banner-controls .theme-toggle:hover,
.prayer-banner-controls .language-switch:hover {
  border-color: rgba(255, 255, 255, 0.45);
}

.prayer-body {
  display: flex;
  min-height: clamp(22rem, 48svh, 32rem);
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4svh, 3rem) var(--space-4);
  text-align: center;
}

/* --- One-intention-at-a-time card ---------------------------------------- */

.deck {
  width: 100%;
  margin: 0;
}

.deck-card-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  touch-action: pan-y;
}

.deck-nav-button {
  display: inline-grid;
  flex: none;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid var(--border-warm);
  border-radius: 50%;
  background: var(--parchment-raised);
  color: var(--link-brown);
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: var(--shadow-card);
}

.deck-nav-button:hover {
  border-color: var(--ink-muted);
  color: var(--link-hover);
}

.deck-nav-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.deck-card {
  flex: 1;
  width: min(100%, 36rem);
  min-height: clamp(17rem, 34svh, 23rem);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-l);
  background: var(--parchment-raised);
  box-shadow: var(--shadow-raise);
  padding: clamp(2rem, 6vw, 3.5rem) clamp(1.5rem, 7vw, 3.5rem);
  cursor: pointer;
  /* A slow, breath-like cross-fade — no sliding. Keep this duration in step
     with FADE_MS in prayer.js. */
  transition: opacity 550ms ease-in-out;
}

.deck-card.is-fading {
  opacity: 0;
}

/* Handwritten bookends open and close each quiet pass through the deck. */
.deck-card.is-opening .deck-text,
.deck-card.is-amen .deck-text {
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.8;
}

@media (prefers-reduced-motion: reduce) {
  .deck-card,
  .deck-card-dots .dot {
    transition: none;
  }
}

.deck-card-dots {
  display: inline-flex;
  max-width: min(100%, 20rem);
  min-height: 0.55rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.44rem;
}

.deck-card-dots .dot {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: rgba(var(--gold-rgb), 0.34);
  transition: width 180ms ease, height 180ms ease, background 180ms ease,
    box-shadow 180ms ease;
}

.deck-card-dots .dot.is-current {
  width: 0.52rem;
  height: 0.52rem;
  background: var(--gold-deep);
  box-shadow: 0 0 0.75rem rgba(var(--gold-rgb), 0.24);
}

.deck-text {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.3rem, 4.2vw, 1.72rem);
  line-height: 1.55;
  text-wrap: pretty;
  /* Rendered exactly as entered via textContent — no HTML interpretation. */
  white-space: pre-wrap;
  word-break: break-word;
}

.deck-position {
  min-width: 5rem;
  color: var(--ink-muted);
  font-size: 0.86rem;
  font-style: italic;
  text-align: center;
}

/* --- States --------------------------------------------------------------- */

.state-page {
  animation: gentle-fade-in 420ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .state-page {
    animation: none;
  }
}

.loading-page {
  padding-top: var(--space-6);
  color: var(--ink-muted);
}

.small-flame {
  position: relative;
  width: 1.4rem;
  height: 2rem;
  margin: 0 auto var(--space-3);
}

.small-flame span {
  position: absolute;
  inset: 0.15rem 0.32rem;
  border-radius: 62% 38% 58% 42% / 72% 62% 38% 28%;
  background: linear-gradient(170deg, #fff7cf 0%, #f8c04a 44%, #d87425 100%);
  box-shadow: 0 0 16px rgb(234 157 52 / 36%);
  transform: rotate(4deg);
  animation: flame-shape 2.8s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  .small-flame span {
    animation: none;
  }
}

.simple-message {
  padding-top: var(--space-6);
}

.simple-message p {
  max-width: 26rem;
  margin: var(--space-3) auto var(--space-5);
  color: var(--ink-muted);
}

.message-translation {
  display: block;
  margin-top: var(--space-2);
  font-size: 0.82em;
  font-style: italic;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.65rem 1.15rem;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease;
}

.button-primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--parchment);
}

.button-primary:hover {
  border-color: var(--link-hover);
  background: var(--link-hover);
  color: var(--parchment-raised);
}

.button-secondary {
  border-color: var(--border-warm);
  background: transparent;
  color: var(--link-brown);
}

.button-secondary:hover {
  border-color: var(--link-brown);
  background: rgb(108 58 31 / 5%);
  color: var(--link-hover);
}

.button-danger {
  border-color: var(--danger);
  background: transparent;
  color: var(--danger);
}

.button-danger:hover {
  background: rgb(138 74 47 / 8%);
}

.button:disabled {
  border-color: var(--border-warm);
  background: var(--parchment-raised);
  color: var(--ink-muted);
  cursor: not-allowed;
  opacity: 0.72;
}

.form-message {
  min-height: 1.3em;
  margin: var(--space-3) 0 0;
  color: var(--ink-muted);
  font-size: 0.86rem;
  text-align: center;
}

.form-message.is-error {
  color: var(--danger);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.chapel-footer {
  margin-top: auto;
  padding-top: var(--space-5);
  color: var(--ink-muted);
  font-size: 0.82rem;
  text-align: center;
}

.prayer-shell .chapel-footer .wordmark,
.welcome-shell .chapel-footer .wordmark {
  font-size: 0.76rem;
  opacity: 0.7;
}

/* Quiet doorway to the editor from the prayer page. */
.editor-invite {
  margin: 0 0 var(--space-3);
  font-size: 0.8rem;
  font-style: italic;
  opacity: 0.85;
}

/* --- Welcome and owner bookmark flow ------------------------------------- */

.welcome-content {
  width: min(100%, 35rem);
  margin: clamp(2rem, 6svh, 3.5rem) auto 0;
  text-align: center;
}

.welcome-content h1 {
  font-size: clamp(1.75rem, 6vw, 2.45rem);
}

.welcome-introduction {
  max-width: 30rem;
  margin: var(--space-4) auto 0;
  color: var(--ink-muted);
  font-size: 1.08rem;
  text-wrap: balance;
}

.bookmark-explanation {
  margin-top: var(--space-5);
  border: 1px solid rgba(var(--gold-rgb), 0.42);
  border-radius: var(--radius-l);
  background: rgba(var(--gold-rgb), 0.08);
  padding: var(--space-4) var(--space-5);
  color: var(--ink-muted);
  text-align: left;
}

.bookmark-heading {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.bookmark-explanation p {
  margin-bottom: 0;
}

.bookmark-explanation .bookmark-heading {
  margin-top: 0;
}

.nine-day-promise {
  color: var(--link-brown);
  font-style: italic;
}

.welcome-form {
  margin-top: var(--space-6);
  text-align: left;
}

.welcome-form label {
  display: block;
  margin-bottom: var(--space-2);
  color: var(--ink);
  font-weight: 700;
}

.owner-form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.owner-form-row .char-counter {
  margin: 0;
}

.privacy-quiet {
  max-width: 31rem;
  margin: var(--space-4) auto 0;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-style: italic;
}

.owner-tools {
  width: min(100%, 36rem);
  margin: 0 auto clamp(2rem, 5svh, 3.5rem);
}

.owner-add-form,
.owner-edit-form {
  border-top: 1px solid var(--border-warm);
  padding-top: var(--space-5);
}

.owner-add-copy {
  margin-bottom: var(--space-3);
  text-align: left;
}

.owner-add-copy h2 {
  margin: 0;
  font-size: 1.05rem;
}

.owner-add-copy p {
  margin: var(--space-1) 0 0;
  color: var(--ink-muted);
  font-size: 0.86rem;
}

.deck-owner-actions {
  display: flex;
  min-height: 1.75rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-3);
}

.deck-bookmark-action,
.owner-action {
  border: 0;
  background: transparent;
  padding: var(--space-1) var(--space-2);
  cursor: pointer;
  font-size: 0.82rem;
}

.owner-card-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
}

.owner-action-separator {
  color: var(--ink-muted);
  opacity: 0.65;
}

.owner-action-danger {
  color: var(--danger);
}

.deck-action-message {
  margin: var(--space-1) 0 0;
  font-size: 0.76rem;
}

.owner-edit-form {
  margin-bottom: var(--space-5);
}

/* --- Editor ---------------------------------------------------------------- */

.editor-header-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.editor-header-controls .language-switch,
.editor-header-controls .theme-toggle {
  position: static;
}

.editor-header h1 {
  font-size: clamp(1.6rem, 6vw, 2.1rem);
}

.editor-privacy-note {
  margin: var(--space-3) 0 var(--space-5);
  border: 1px solid rgba(var(--gold-rgb), 0.35);
  background: rgba(var(--gold-rgb), 0.08);
  border-radius: var(--radius-m);
  padding: var(--space-3) var(--space-4);
  color: var(--ink);
  font-size: 0.85rem;
  line-height: 1.55;
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
  text-align: left;
  font-style: normal;
}

.editor-privacy-note::before {
  content: "🖊️";
  flex: none;
}

.editor-field-group {
  margin-top: var(--space-4);
}

.editor-field-group label {
  display: block;
  margin-bottom: var(--space-2);
  color: var(--ink-muted);
  font-size: 0.86rem;
  font-style: italic;
}

/* Text-like fields only — radios/checkboxes must keep their intrinsic size,
   or the width:100% block treatment mangles the kind-choice row. */
input:not([type="radio"]):not([type="checkbox"]),
textarea {
  display: block;
  width: 100%;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-m);
  background: transparent;
  padding: 0.6rem 1rem;
  color: var(--ink);
  outline: none;
}

input:not([type="radio"]):not([type="checkbox"]) {
  min-height: 48px;
}

input[type="radio"] {
  width: 1.1rem;
  height: 1.1rem;
  flex: none;
  margin: 0;
  accent-color: var(--gold-deep);
  cursor: pointer;
}

textarea {
  min-height: 5.5rem;
  resize: vertical;
  line-height: 1.5;
}

input:not([type="radio"]):not([type="checkbox"]):focus,
textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgb(185 165 144 / 22%);
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.char-counter {
  margin-top: var(--space-1);
  color: var(--ink-muted);
  font-size: 0.78rem;
  text-align: right;
}

.char-counter.is-over {
  color: var(--danger);
}

/* Pill-style ongoing/special kind selector. */
.kind-choice {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-2);
}

.kind-choice label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  border: 1px solid var(--border-warm);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  font-style: normal;
  white-space: nowrap;
  transition: border-color 120ms ease, background-color 120ms ease;
}

.kind-choice label:has(input:checked) {
  border-color: var(--gold);
  background: rgba(var(--gold-rgb), 0.15);
}

.kind-choice input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.editor-section {
  margin-top: var(--space-6);
  border-top: 1px solid var(--border-warm);
  padding-top: var(--space-5);
}

.editor-section h2 {
  margin: 0 0 var(--space-2);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
}

.editor-section-help {
  margin: 0 0 var(--space-4);
  color: var(--ink-muted);
  font-size: 0.85rem;
}

.editor-deck {
  margin: 0 0 var(--space-4);
}

.editor-deck .deck-card-wrap {
  align-items: stretch;
}

.editor-deck-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-l);
  background: var(--parchment-raised);
  box-shadow: var(--shadow-raise);
  padding: var(--space-4);
  text-align: left;
  transition: opacity 550ms ease-in-out;
}

.editor-deck-card.is-fading {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .editor-deck-card {
    transition: none;
  }
}

.editor-deck-card-view {
  min-height: 3.5em;
}

/* Meta (dates) tucked into the corner opposite the actions — deliberately
   quiet; the card's visual weight belongs to the intention text. */
.intention-row-text {
  margin: 0;
  color: var(--ink);
  white-space: pre-wrap;
  word-break: break-word;
}

.intention-row-meta {
  margin: var(--space-2) 0 0;
  color: var(--ink-muted);
  font-size: 0.72rem;
  text-align: right;
  opacity: 0.8;
}

.editor-deck-card-edit textarea {
  min-height: 4.5rem;
}

.editor-deck-card-actions {
  display: flex;
  gap: var(--space-2);
}

.editor-deck-card-actions .button {
  min-height: 36px;
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
}

.editor-login-shell {
  width: min(100% - 2.5rem, 26rem);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: var(--space-6);
}

.login-submit-link {
  display: block;
  margin: var(--space-4) auto 0;
  border: 0;
  background: transparent;
  padding: var(--space-1) var(--space-2);
  font-weight: 700;
  cursor: pointer;
}

.logout-link {
  display: inline-block;
  margin-top: var(--space-6);
}

@keyframes gentle-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes flame-shape {
  from {
    transform: rotate(2deg) scaleY(0.97);
  }
  to {
    transform: rotate(6deg) scaleY(1.03);
  }
}

@media (max-width: 31rem) {
  .chapel-shell,
  .editor-shell {
    width: min(100% - 1.5rem, 36rem);
  }

  .prayer-shell,
  .welcome-shell {
    padding-inline: 0.65rem;
  }

  .prayer-body {
    min-height: 22rem;
    padding-inline: var(--space-2);
  }

  .deck-card {
    min-height: 16rem;
    padding: var(--space-6) var(--space-5);
  }

  .deck-nav-button {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1rem;
  }

  .owner-tools {
    padding-inline: var(--space-2);
  }

  .welcome-form-row,
  .owner-add-form .owner-form-row {
    align-items: stretch;
    flex-direction: column;
  }

  .welcome-form-row .button,
  .owner-add-form .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
