/* =========================================================
   모카의 마지막 라이브 — style.css
   색을 바꾸고 싶으면 아래 :root 의 변수만 고치면 됩니다.
   ========================================================= */
:root {
  --bg-1: #EEF1F8;
  --bg-2: #DDD9ED;
  --bg-3: #F3E3EB;
  --text: #34354A;
  --text-sub: #686A80;
  --accent: #77649C;
  --pink: #C58EA5;
  --warm: #E8D5AD;

  --card-bg: rgba(255, 255, 255, 0.58);
  --card-border: rgba(255, 255, 255, 0.78);
  --card-shadow: 0 12px 36px rgba(84, 72, 120, 0.12), 0 2px 8px rgba(52, 53, 74, 0.06);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;

  --font-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji";
  --font-ko: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "맑은 고딕",
    "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, -apple-system, "Segoe UI", sans-serif, var(--font-emoji);
  --font-ja: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "Yu Gothic", "Meiryo", "Noto Sans JP",
    "Apple SD Gothic Neo", "Malgun Gothic", system-ui, -apple-system, "Segoe UI", sans-serif, var(--font-emoji);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  -webkit-text-size-adjust: 100%;
  background: var(--bg-2);
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  font-family: var(--font-ko);
  color: var(--text);
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

html:lang(ja) body {
  font-family: var(--font-ja);
  word-break: normal;
  line-break: strict;
}

p,
h1,
h2,
dl,
dd {
  margin: 0;
}

button {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

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

/* ---------- 배경: 그라데이션 + 희미한 무대 조명 ---------- */
.stage-light {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 42% at 50% 36%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 70%),
    radial-gradient(ellipse 36% 26% at 50% 26%, rgba(232, 213, 173, 0.34), rgba(232, 213, 173, 0) 72%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(197, 142, 165, 0.16), rgba(197, 142, 165, 0) 70%),
    linear-gradient(165deg, var(--bg-1) 0%, var(--bg-2) 52%, var(--bg-3) 100%);
}

/* 위에서 내려오는 부드러운 스포트라이트 */
.stage-light::before {
  content: "";
  position: absolute;
  top: -5%;
  left: 50%;
  width: min(760px, 120vw);
  height: 75%;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, rgba(232, 213, 173, 0.3), rgba(255, 255, 255, 0.12) 55%, rgba(255, 255, 255, 0));
  clip-path: polygon(42% 0, 58% 0, 88% 100%, 12% 100%);
  filter: blur(18px);
  animation: light-breathe 12s ease-in-out infinite alternate;
}

@keyframes light-breathe {
  from { opacity: 0.7; }
  to { opacity: 1; }
}

/* ---------- 떠다니는 이모지 (장식) ---------- */
.emoji-layer {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.emoji {
  position: absolute;
  top: calc(var(--y) * 1%);
  left: clamp(0px, calc(var(--x) * 1% - var(--size) / 2), calc(100% - var(--size)));
  font-family: var(--font-emoji), sans-serif;
  font-size: var(--size);
  line-height: 1;
  opacity: var(--alpha);
  animation-duration: var(--dur);
  animation-delay: var(--delay);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  will-change: transform, opacity;
}

.emoji--cheer {
  filter: saturate(0.85);
}

.emoji.is-fall { animation-name: emoji-fall; }
.emoji.is-sway { animation-name: emoji-sway; animation-direction: alternate; }
.emoji.is-rise { animation-name: emoji-rise; }
.emoji.is-glow { animation-name: emoji-glow; animation-direction: alternate; }

/* 슬픈 이모지: 천천히 내려옴 */
@keyframes emoji-fall {
  0% { transform: translate(0, -40px) rotate(-6deg); opacity: 0; }
  15% { opacity: var(--alpha); }
  50% { transform: translate(8px, 20px) rotate(4deg); }
  85% { opacity: var(--alpha); }
  100% { transform: translate(0, 80px) rotate(-4deg); opacity: 0; }
}

/* 슬픈 이모지: 작게 흔들림 */
@keyframes emoji-sway {
  0% { transform: translate(-12px, -8px) rotate(-10deg); }
  50% { transform: translate(4px, 6px) rotate(3deg); }
  100% { transform: translate(12px, 14px) rotate(10deg); }
}

/* 응원 이모지: 부드럽게 떠오름 */
@keyframes emoji-rise {
  0% { transform: translate(0, 40px) scale(0.92); opacity: 0; }
  18% { opacity: var(--alpha); }
  50% { transform: translate(-8px, -10px) scale(1); }
  82% { opacity: var(--alpha); }
  100% { transform: translate(0, -70px) scale(1.04); opacity: 0; }
}

/* 응원 이모지: 은은하게 반짝임 */
@keyframes emoji-glow {
  0% { transform: translateY(10px) scale(0.86); opacity: calc(var(--alpha) * 0.45); }
  100% { transform: translateY(-14px) scale(1.12); opacity: var(--alpha); }
}

/* ---------- 페이지 뼈대 ---------- */
.page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: max(12px, env(safe-area-inset-top)) 16px max(20px, env(safe-area-inset-bottom));
  overflow: hidden;
}

.top-bar {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.lang-switch,
.utility {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.content {
  flex: 1 0 auto;
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 0 6px;
}

.view {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: view-in 0.6s ease both;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.view--countdown.is-leaving {
  opacity: 0;
  transform: translateY(-10px);
}

@keyframes view-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* ---------- 버튼 ---------- */
.chip-btn {
  min-height: 34px;
  padding: 6px 14px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.6);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(52, 53, 74, 0.06);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.chip-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

.chip-btn[aria-pressed="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.chip-btn--small {
  min-height: 30px;
  padding: 4px 12px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-sub);
}

.chip-btn:disabled {
  cursor: default;
  opacity: 0.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  border: 0;
  background: linear-gradient(135deg, var(--accent), #8E7AB4);
  color: #fff;
  box-shadow: 0 6px 18px rgba(119, 100, 156, 0.28);
}

.btn--primary:hover {
  box-shadow: 0 8px 22px rgba(119, 100, 156, 0.36);
}

.btn--ghost {
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.6);
  color: var(--accent);
  font-size: 0.82rem;
  min-height: 40px;
}

/* ---------- 카드 공통 ---------- */
.card {
  position: relative;
  padding: 22px 20px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  text-align: center;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .card {
    background: rgba(255, 255, 255, 0.82);
  }
}

.eyebrow {
  align-self: center;
  padding: 5px 14px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.5);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

/* ---------- 메인 카드 ---------- */
.card--hero {
  padding-top: 28px;
  padding-bottom: 26px;
  overflow: hidden;
}

.card--hero::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  width: 240px;
  height: 120px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(232, 213, 173, 0.55), rgba(232, 213, 173, 0) 70%);
  pointer-events: none;
}

.hero-title {
  position: relative;
  font-size: clamp(1.6rem, 7vw, 2.1rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  position: relative;
  margin-top: 10px;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 600;
}

.hero-lead {
  position: relative;
  margin-top: 6px;
  color: var(--text-sub);
  font-size: 0.9rem;
}

/* ---------- 카운트다운 ---------- */
.timer-caption {
  color: var(--text-sub);
  font-size: 0.88rem;
  font-weight: 600;
}

.dday-badge {
  display: inline-block;
  margin: 10px 0 14px;
  padding: 4px 18px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent), #9583B8);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 4px 14px rgba(119, 100, 156, 0.25);
}

.timer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.timer-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 2px 10px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
}

.timer-num {
  font-size: clamp(1.6rem, 8.4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}

.timer-unit {
  margin-top: 2px;
  color: var(--text-sub);
  font-size: 0.76rem;
  font-weight: 600;
}

/* ---------- 일정 ---------- */
.card--schedule {
  padding: 18px 20px;
}

.schedule-date {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.schedule-title {
  margin-top: 2px;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
}

.schedule-note {
  margin-top: 6px;
  color: var(--text-sub);
  font-size: 0.86rem;
}

/* ---------- 감정 문구 ---------- */
.mood {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.mood-ratio {
  padding: 4px 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, rgba(119, 100, 156, 0.16) 0 70%, rgba(232, 213, 173, 0.55) 70% 100%);
  font-size: 0.84rem;
  font-weight: 700;
}

.mood-line {
  color: var(--text-sub);
  font-size: 0.86rem;
}

/* ---------- 푸터 ---------- */
.site-footer {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding-top: 10px;
  text-align: center;
}

.utility {
  margin-bottom: 10px;
}

.footer-name {
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
}

.footer-line {
  color: var(--text-sub);
  font-size: 0.76rem;
}

/* ---------- 이벤트: 봉투 ---------- */
.envelope-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  padding: 130px 0 10px;
  animation: envelope-in 0.7s ease both;
}

.envelope-stage::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 50%;
  width: 320px;
  height: 260px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(232, 213, 173, 0.45), rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.envelope-stage .btn {
  transition: opacity 0.4s ease;
}

[data-scene="reveal"] .envelope-stage .btn {
  opacity: 0;
}

@keyframes envelope-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.envelope {
  position: relative;
  isolation: isolate;
  width: min(260px, 72vw);
  aspect-ratio: 3 / 2;
  perspective: 900px;
}

.envelope-back,
.envelope-front {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  transition: opacity 0.5s ease, transform 0.6s ease-in;
}

.envelope-back {
  z-index: 1;
  background: linear-gradient(180deg, #E6DFF1, #D8CFE8);
  box-shadow: var(--card-shadow);
}

/* 편지지: 앞주머니(front) 뒤에 있다가 위로 밀려 나옴 */
.envelope-paper {
  position: absolute;
  z-index: 2;
  top: 6%;
  left: 7%;
  right: 7%;
  height: 86%;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 14% 12% 0;
  border-radius: 10px;
  background: #FFFDF8;
  box-shadow: 0 2px 10px rgba(52, 53, 74, 0.1);
  transform: translateY(0) scale(1);
  transition: transform 0.9s cubic-bezier(0.3, 1.25, 0.5, 1), box-shadow 0.9s ease, opacity 0.3s ease 0.3s;
}

.envelope-paper span {
  height: 5px;
  border-radius: 3px;
  background: rgba(119, 100, 156, 0.22);
}

.envelope-paper span:nth-child(2) { width: 82%; }
.envelope-paper span:nth-child(3) { width: 60%; background: rgba(197, 142, 165, 0.35); }

.envelope-front {
  z-index: 3;
  background: linear-gradient(160deg, #F5F1FA, #E7DEF1);
  clip-path: polygon(0 0, 50% 56%, 100% 0, 100% 100%, 0 100%);
}

.envelope-flap {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  transform-origin: top center;
  background: linear-gradient(180deg, #DDD2EC, #CFC2E4);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  border-radius: 14px 14px 0 0;
  transform: translateY(0) rotateX(0deg);
  transition: transform 0.9s ease, opacity 0.5s ease, z-index 0s linear 0.45s;
}

.envelope-seal {
  position: absolute;
  z-index: 5;
  top: 60%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(197, 142, 165, 0.4);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* 1) open: 도장이 떨어지고 뚜껑이 위로 제쳐짐 (절반쥐 돌면 편지지 뒤로 넘어감) */
[data-scene="open"] .envelope-flap,
[data-scene="rise"] .envelope-flap {
  z-index: 0;
  transform: translateY(0) rotateX(180deg);
}

[data-scene="open"] .envelope-seal,
[data-scene="rise"] .envelope-seal,
[data-scene="reveal"] .envelope-seal {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.35);
}

/* 2) rise: 편지지가 봉투 밖으로 밀려 나옴 (아랫부분은 아직 앞주머니 안) */
[data-scene="rise"] .envelope-paper {
  transform: translateY(-40%) scale(1);
  box-shadow: 0 10px 24px rgba(52, 53, 74, 0.14);
}

/* 3) reveal: 봉투는 아래로 빠지고, 편지지는 더 올라가 커지며 편지 카드로 이어짐 */
[data-scene="reveal"] .envelope-back,
[data-scene="reveal"] .envelope-front {
  opacity: 0;
  transform: translateY(36px);
}

[data-scene="reveal"] .envelope-flap {
  z-index: 0;
  opacity: 0;
  transform: translateY(36px) rotateX(180deg);
}

[data-scene="reveal"] .envelope-paper {
  opacity: 0;
  transform: translateY(-88%) scale(1.14);
  box-shadow: 0 16px 36px rgba(52, 53, 74, 0.16);
}

/* ---------- 이벤트: 편지 카드 ---------- */
/* 밀려 올라온 편지지가 위에서부터 펼쳐지듯 등장 (끝난 뒤엔 transform 을 남기지 않음) */
.card--letter {
  padding: 28px 22px 24px;
  transform-origin: top center;
  animation: letter-unfold 0.9s cubic-bezier(0.22, 0.8, 0.3, 1) backwards;
}

@keyframes letter-unfold {
  0% { opacity: 0; transform: perspective(1000px) translateY(-36px) rotateX(-40deg) scale(0.8); }
  40% { opacity: 1; }
  100% { opacity: 1; transform: perspective(1000px) translateY(0) rotateX(0deg) scale(1); }
}

/* 편지가 열릴 때 카드 테두리에서 바깥으로 은은하게 퍼지는 이모지 (글자 뒤에 깔림) */
.letter-burst {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  user-select: none;
}

.burst-emoji {
  position: absolute;
  top: var(--sy);
  left: var(--sx);
  font-family: var(--font-emoji), sans-serif;
  font-size: var(--size);
  line-height: 1;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  animation: letter-burst var(--dur) cubic-bezier(0.22, 0.61, 0.36, 1) var(--delay) both;
  will-change: transform, opacity;
}

.burst-emoji--cheer {
  filter: saturate(0.85);
}

.burst-emoji.is-spin {
  animation-name: letter-burst-spin;
}

@keyframes letter-burst {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.6) rotate(0deg); }
  22% { opacity: var(--alpha); }
  65% { opacity: calc(var(--alpha) * 0.75); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1) rotate(var(--rot)); }
}

/* 회전하며 퍼지는 이모지: 중간에 살짝 커졌다가 작아짐 */
@keyframes letter-burst-spin {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5) rotate(0deg); }
  22% { opacity: var(--alpha); }
  55% { transform: translate(calc(-50% + var(--dx) * 0.6), calc(-50% + var(--dy) * 0.6)) scale(1.08) rotate(calc(var(--rot) * 0.6)); }
  65% { opacity: calc(var(--alpha) * 0.75); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(0.9) rotate(var(--rot)); }
}

.letter-eyebrow {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.letter-title {
  margin-top: 10px;
  font-size: clamp(1.3rem, 5.6vw, 1.55rem);
  font-weight: 800;
  line-height: 1.4;
}

.letter-title:focus {
  outline: none;
}

.letter-title:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: 8px;
}

.letter-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 12px auto 12px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--pink), var(--warm));
}

.letter-line {
  color: var(--text-sub);
  font-size: 0.95rem;
}

.status-list {
  display: grid;
  gap: 8px;
  margin: 20px 0 22px;
  text-align: left;
}

.status-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.status-row dt {
  color: var(--text-sub);
}

.status-row dd {
  color: var(--accent);
  font-weight: 700;
  text-align: right;
}

/* ---------- 미리보기/테스트 표시 ---------- */
.mode-badge {
  position: absolute;
  left: 12px;
  top: max(18px, env(safe-area-inset-top));
  z-index: 10;
  margin: 0;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(52, 53, 74, 0.72);
  color: #fff;
  font-size: 0.68rem;
  pointer-events: none;
}

.noscript-note {
  position: relative;
  z-index: 3;
  margin: 0 auto 20px;
  max-width: 480px;
  padding: 0 16px;
  color: var(--text-sub);
  font-size: 0.85rem;
  text-align: center;
}

/* ---------- 화면 크기 ---------- */
@media (max-width: 360px) {
  .page { padding-left: 12px; padding-right: 12px; }
  .card { padding-left: 14px; padding-right: 14px; }
  .timer { gap: 6px; }
  .timer-cell { padding: 10px 1px 8px; }
}

@media (max-height: 680px) {
  .content { justify-content: flex-start; }
  .view { gap: 10px; }
  .card { padding-top: 16px; padding-bottom: 16px; }
  .envelope-stage { padding-top: 110px; }
}

@media (min-width: 768px) {
  .page { padding: 20px 28px 28px; }
}

/* ---------- 움직임 줄이기 ('움직임 끄기' 또는 기기 설정. '움직임 켜기'를 고르면 .motion-on 이 기기 설정을 덮어씀) ---------- */
.motion-off *,
.motion-off *::before,
.motion-off *::after {
  animation: none !important;
  transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
  html:not(.motion-on) *,
  html:not(.motion-on) *::before,
  html:not(.motion-on) *::after {
    animation: none !important;
    transition: none !important;
  }
}
