/* ============================================================
   Convite de Casamento — estilos
   Paleta: fundo #F9F8F6 · verde #8A9A86 · areia #D2B48C · texto #2C3531
   ============================================================ */

/* ---------- Reset básico ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input,
select {
  font: inherit;
}

[hidden] {
  display: none !important;
}

/* ---------- Tokens ---------- */
:root {
  --cream: #f9f8f6;
  --sage: #8a9a86;
  --sage-dark: #64755f;
  --sage-deep: #4c5a48;
  --sand: #d2b48c;
  --sand-dark: #a98455;
  --sand-deep: #8a6a42; /* dourado escuro p/ textos pequenos (contraste WCAG) */
  --ink: #2c3531;
  --ink-70: rgba(44, 53, 49, 0.7); /* mínimo p/ texto informativo (≥4,5:1) */

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-script: "Great Vibes", "Segoe Script", cursive;
  --font-body: "Montserrat", ui-sans-serif, system-ui, sans-serif;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100dvh;
  background-color: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  /* Textura de papel bem sutil */
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(138, 154, 134, 0.06), transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(210, 180, 140, 0.08), transparent 50%);
  background-attachment: fixed;
}

/* ---------- Animações ---------- */
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@keyframes sheet-up {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@keyframes equalize {
  from { transform: scaleY(0.35); }
  to { transform: scaleY(1); }
}

/* ============================================================
   TELA 1 · ENVELOPE
   ============================================================ */
.envelope-screen {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  overflow-y: auto; /* landscape: rola em vez de cortar */
  background: var(--cream);
  padding: 0 1.5rem;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.envelope-screen.stage-fade {
  opacity: 0;
  transform: scale(1.05);
}

/* m-auto centraliza e colapsa quando falta altura (overflow-safe) */
.envelope-wrap {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem 0;
}

.tap-hint {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--sage-dark);
  animation: pulse-soft 2.4s ease-in-out infinite;
  transition: opacity 0.3s;
}

.stage-flap .tap-hint {
  opacity: 0;
  animation: none;
}

.envelope-perspective {
  perspective: 1400px;
  animation: fade-in 0.9s ease-out both;
}

.envelope {
  position: relative;
  width: min(88vw, 336px);
  height: 232px;
}

.env-back {
  position: absolute;
  inset: 0;
  border-radius: 0.5rem;
  background: #e5e0d2;
  box-shadow: 0 24px 50px -18px rgba(44, 53, 49, 0.35);
}

.env-letter {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 0.75rem;
  bottom: 0.75rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(210, 180, 140, 0.4);
  background: var(--cream);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transition: transform 0.7s ease-out;
}

.stage-letter .env-letter {
  transform: translateY(-58%);
}

.env-letter-initials {
  font-family: var(--font-script);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--sage-deep);
}

.env-letter-date {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--sand-deep);
}

.env-pocket {
  position: absolute;
  inset: 0;
  z-index: 20;
  border-radius: 0.5rem;
}

.env-pocket-left {
  background: #ede8db;
  clip-path: polygon(0 0, 52% 52%, 0 100%);
}

.env-pocket-right {
  background: #ede8db;
  clip-path: polygon(100% 0, 48% 52%, 100% 100%);
}

.env-pocket-bottom {
  background: #f0ebdf;
  clip-path: polygon(0 100%, 50% 42%, 100% 100%);
  box-shadow: 0 -6px 14px -10px rgba(44, 53, 49, 0.35);
}

.env-flap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 56%;
  z-index: 30;
  transform-origin: top;
  transform-style: preserve-3d;
  transition: transform 0.7s ease-in-out;
}

.stage-flap .env-flap {
  transform: rotateX(180deg);
  z-index: 0;
}

.env-flap-face {
  position: absolute;
  inset: 0;
  border-radius: 0.5rem 0.5rem 0 0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.env-flap-front {
  background: #dfd9c8;
}

.env-flap-back {
  background: #e9e4d6;
  transform: rotateX(180deg);
}

.seal {
  position: absolute;
  left: 50%;
  top: 56%;
  z-index: 40;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.5s ease, opacity 0.5s ease;
  background: radial-gradient(circle at 32% 28%, #e3cba5 0%, #d2b48c 42%, #b08d5e 78%, #97744a 100%);
  box-shadow:
    0 6px 16px -4px rgba(44, 53, 49, 0.45),
    inset 0 2px 4px rgba(255, 255, 255, 0.45),
    inset 0 -3px 6px rgba(90, 64, 35, 0.35);
}

.seal:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.seal:active {
  transform: translate(-50%, -50%) scale(0.95);
}

.stage-flap .seal {
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  pointer-events: none;
}

.seal-initials {
  pointer-events: none;
  user-select: none;
  border: 1px solid rgba(141, 108, 66, 0.4);
  border-radius: 50%;
  padding: 0.5rem 0.625rem;
  font-family: var(--font-script);
  font-size: 20px;
  line-height: 1;
  color: #5d452a;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.35);
}

.envelope-names {
  animation: fade-in 0.9s ease-out both;
  font-family: var(--font-display);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ink-70);
}

.envelope-names .amp {
  color: var(--sand-dark);
}

/* ============================================================
   TELA 2 · CONVITE
   ============================================================ */
.invitation {
  max-width: 28rem;
  margin: 0 auto;
  padding: 0.75rem 1.5rem 4rem;
  animation: fade-in 1.1s ease-out both;
}

/* Revelação ao rolar */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Player de áudio ---------- */
.audio-bar {
  position: sticky;
  top: 0.75rem;
  z-index: 40;
  display: flex;
  justify-content: center;
}

.audio-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(210, 180, 140, 0.5);
  background: rgba(249, 248, 246, 0.9);
  border-radius: 9999px;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  box-shadow: 0 4px 14px -6px rgba(44, 53, 49, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform 0.15s ease;
}

.audio-toggle:active {
  transform: scale(0.95);
}

.audio-icon {
  display: flex;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(138, 154, 134, 0.15);
  color: var(--sage-deep);
}

.audio-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ink-70);
}

.equalizer {
  display: none;
  align-items: flex-end;
  gap: 2.5px;
  height: 12px;
}

.audio-toggle.playing .equalizer {
  display: flex;
}

.equalizer i {
  width: 2.5px;
  border-radius: 2px;
  background: var(--sand-dark);
  transform-origin: bottom;
  animation: equalize 0.9s ease-in-out infinite alternate;
}

.equalizer i:nth-child(1) { height: 6px; }
.equalizer i:nth-child(2) { height: 9px; animation-delay: 0.18s; }
.equalizer i:nth-child(3) { height: 12px; animation-delay: 0.36s; }

/* ---------- Fotos com efeito rasgado ---------- */
.photo-header {
  margin-top: 1.5rem;
}

.torn-photo {
  margin: 0 auto;
  filter: drop-shadow(0 14px 28px rgba(44, 53, 49, 0.18));
}

.torn-photo-header { width: 16rem; }
.torn-photo-footer { width: 15rem; }

.torn-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  /* máscara rasgada aplicada via JS (mask-image) */
}

.torn-img {
  width: 100%;
  object-fit: cover;
  filter: sepia(0.4) contrast(0.92) brightness(1.03);
}

.aspect-45 { aspect-ratio: 4 / 5; }
.aspect-54 { aspect-ratio: 5 / 4; }

.vignette {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(90, 70, 45, 0.18) 100%);
}

/* ---------- Cabeçalho textual ---------- */
.invite-header {
  margin-top: 2.5rem;
  text-align: center;
}

.title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  line-height: 1.6;
  color: var(--sage-deep);
}

.title-big {
  display: block;
  margin-top: 0.25rem;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.verse {
  max-width: 290px;
  margin: 1.25rem auto 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink-70);
}

.verse-ref {
  margin-top: 0.375rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--sand-deep);
}

.ornament {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--sage);
}

.ornament-line {
  height: 1px;
  width: 3rem;
}

.ornament-line.left {
  background: linear-gradient(to right, transparent, rgba(138, 154, 134, 0.6));
}

.ornament-line.right {
  background: linear-gradient(to left, transparent, rgba(138, 154, 134, 0.6));
}

.names {
  font-family: var(--font-script);
  font-size: 52px;
  line-height: 1.15;
  color: var(--sage-dark);
}

.names-amp {
  margin: 0 0.5rem;
  font-size: 38px;
  color: var(--sand-dark);
}

.invite-text {
  max-width: 300px;
  margin: 1rem auto 0;
  font-size: 11px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.22em;
  color: var(--ink-70);
}

/* ---------- Contagem regressiva ---------- */
.countdown-section {
  margin-top: 3rem;
  text-align: center;
}

.overline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--sage-deep);
}

.date-line {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.date-de {
  color: var(--sand-dark);
}

.date-sub {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--ink-70);
}

.date-dot {
  color: var(--sand-dark);
}

.countdown {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.625rem;
}

.cd-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(210, 180, 140, 0.4);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0.75rem;
  padding: 0.75rem 0.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.cd-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  color: var(--sage-deep);
  font-variant-numeric: tabular-nums;
}

.cd-label {
  margin-top: 0.375rem;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-70);
}

.countdown-done {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--sage-deep);
}

/* ---------- Local da cerimônia ---------- */
.church-card {
  margin-top: 3.5rem;
  border: 1px solid rgba(210, 180, 140, 0.35);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem 1.75rem;
  box-shadow: 0 10px 30px -18px rgba(44, 53, 49, 0.3);
  text-align: center;
}

.church-svg {
  display: block;
  height: 8rem;
  width: auto;
  margin: 0 auto;
  color: var(--sage-dark);
}

.church-overline {
  margin-top: 1.25rem;
}

.church-name {
  margin-top: 0.375rem;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--sage-deep);
}

.church-addr {
  margin-top: 0.25rem;
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-70);
}

/* ---------- Botões de ação ---------- */
.actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.action-card {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(210, 180, 140, 0.4);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 1rem;
  padding: 0.875rem 1rem;
  text-align: left;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 18px -10px rgba(44, 53, 49, 0.25);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.action-card:hover {
  border-color: var(--sand);
}

.action-card:active {
  transform: scale(0.98);
}

.action-icon {
  flex: none;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(138, 154, 134, 0.15);
  color: var(--sage-deep);
}

.action-text {
  min-width: 0;
  flex: 1;
}

.action-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: var(--ink);
}

.action-sub {
  margin-top: 0.125rem;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* até 2 linhas em telas estreitas */
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 11px;
  font-weight: 300;
  color: var(--ink-70);
}

.action-chevron {
  flex: none;
  color: var(--sand-dark);
}

/* ---------- Rodapé ---------- */
.invite-footer {
  margin-top: 4rem;
  text-align: center;
}

.monogram {
  width: 4rem;
  height: 4rem;
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(210, 180, 140, 0.6);
  border-radius: 50%;
}

.monogram span {
  font-family: var(--font-script);
  font-size: 22px;
  line-height: 1;
  color: var(--sage-deep);
}

.footer-date {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--ink-70);
}

.footer-note {
  margin-top: 1.5rem;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: rgba(44, 53, 49, 0.35); /* decorativo */
}

/* ============================================================
   MODAIS (bottom sheet com <dialog>)
   ============================================================ */
dialog.sheet {
  position: fixed;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 28rem;
  border: none;
  border-radius: 1.5rem 1.5rem 0 0;
  background: var(--cream);
  color: var(--ink);
  padding: 0.75rem 1.5rem max(2rem, env(safe-area-inset-bottom));
  box-shadow: 0 -12px 40px rgba(44, 53, 49, 0.25);
}

dialog.sheet[open] {
  animation: sheet-up 0.35s cubic-bezier(0.32, 0.72, 0.28, 1) both;
}

dialog.sheet::backdrop {
  background: rgba(44, 53, 49, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

body.modal-open {
  overflow: hidden;
}

.sheet-inner {
  outline: none;
}

.sheet-handle {
  margin: 0 auto 1rem;
  height: 4px;
  width: 2.5rem;
  border-radius: 9999px;
  background: rgba(44, 53, 49, 0.15);
}

.sheet-head {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sheet-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--sage-deep);
}

.sheet-close {
  width: 2.75rem; /* 44px de área de toque */
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(44, 53, 49, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: rgba(44, 53, 49, 0.6);
  transition: transform 0.1s ease;
}

.sheet-close:active {
  transform: scale(0.9);
}

.sheet-body {
  max-height: 70dvh;
  overflow-y: auto;
  padding-bottom: 0.25rem;
}

.sheet-text {
  margin-bottom: 1.25rem;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-70);
}

.sheet-text strong {
  font-weight: 500;
  color: var(--sage-deep);
}

.heart-inline {
  display: inline;
  vertical-align: -1px;
  color: var(--sand-dark);
}

.sheet-note {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 10px;
  font-weight: 300;
  color: var(--ink-70);
}

/* ---------- Formulário RSVP ---------- */
.field {
  display: block;
  margin-bottom: 1rem;
}

.field-last {
  margin-bottom: 1.5rem;
}

.field-label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-70);
}

.field input,
.field select {
  width: 100%;
  border: 1px solid rgba(210, 180, 140, 0.5);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--ink);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
}

.field input::placeholder {
  color: rgba(44, 53, 49, 0.3);
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 2px rgba(138, 154, 134, 0.25);
}

.field-hint {
  display: block;
  margin-top: 0.375rem;
  font-size: 11px;
  font-weight: 300;
  color: var(--ink-70);
}

/* ---------- Botão primário ---------- */
.btn-primary {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  color: #fff;
  background: var(--sage-dark);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: background 0.2s ease, transform 0.1s ease;
}

.btn-primary:hover {
  background: var(--sage-deep);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-primary.is-disabled {
  cursor: not-allowed;
  background: rgba(44, 53, 49, 0.1);
  color: rgba(44, 53, 49, 0.6);
}

.btn-primary.is-disabled:hover {
  background: rgba(44, 53, 49, 0.1);
}

.gift-list-btn {
  margin-bottom: 1rem;
}

/* ---------- PIX ---------- */
.pix-card {
  border: 1px solid rgba(210, 180, 140, 0.5);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 1rem;
  padding: 1.25rem;
}

.pix-label {
  margin-bottom: 0.25rem;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--sand-deep);
}

.pix-owner {
  margin-bottom: 1rem;
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-70);
}

.pix-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px dashed rgba(138, 154, 134, 0.4);
  background: var(--cream);
  border-radius: 0.75rem;
  padding: 0.75rem 0.875rem;
}

.pix-key {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(44, 53, 49, 0.8);
}

.pix-copy {
  position: relative;
  flex: none;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--sage-dark);
  color: #fff;
  transition: transform 0.1s ease, background 0.2s ease, color 0.2s ease;
}

/* Área de toque estendida (~44px) sem mudar o visual */
.pix-copy::before {
  content: "";
  position: absolute;
  inset: -8px -4px;
}

.pix-copy:active {
  transform: scale(0.95);
}

.pix-copy.copied {
  background: rgba(138, 154, 134, 0.2);
  color: var(--sage-deep);
}

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


.dev-ass {
  color: var(--sand-dark);
}