/* =============================================================================
   Try Not To Umm   |   styles.css
   Single stylesheet. Organized: variables → base → components → screens →
   animations. No frameworks, no build step.
   ============================================================================= */

/* ---------- Design tokens ---------- */
:root {
  --bg:        #0e1020;
  --bg-2:      #171a33;
  --panel:     #1e2242;
  --panel-2:   #262b52;
  --ink:       #eef0ff;
  --ink-soft:  #a6acd8;
  --ink-faint: #6b719e;
  --line:      #333861;

  --brand:     #ffc123;   /* the "Umm" yellow */
  --brand-ink: #2a2400;

  --a:         #7c5cff;   /* Word A (adjective) accent — purple */
  --a-2:       #9d84ff;
  --b:         #23c9b7;   /* Word B (noun) accent — teal */
  --b-2:       #4fe0d0;

  --success:   #3ecf7a;
  --skip:      #ff9f43;
  --danger:    #ff5d6c;

  --radius:    16px;
  --radius-lg: 24px;
  --shadow:    0 18px 40px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 6px 16px rgba(0, 0, 0, 0.35);

  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

/* The HTML `hidden` attribute must win over component display rules
   (e.g. .modal{display:flex}, .controls-active{display:grid}). */
[hidden] { display: none !important; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

/* Reserve the scrollbar's space on both sides so the centered column doesn't
   shift sideways when a scrollbar appears/disappears between screens. */
html { scrollbar-gutter: stable both-edges; }

/* Cards fling past their slot when discarded; clip that at the viewport edge so
   it never produces a horizontal scrollbar (especially on mobile). */
body { overflow-x: hidden; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 15% -10%, #23285010, transparent),
    radial-gradient(900px 600px at 110% 10%, #7c5cff22, transparent),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}

.app {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 18px 48px;
  min-height: 100vh;
}

/* ---------- Screen switching ---------- */
.screen { display: none; }
.screen.is-active { display: block; animation: screen-in 0.35s var(--ease); }

@keyframes screen-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Buttons ---------- */
.btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--panel-2);
  cursor: pointer;
  transition: transform 0.12s var(--ease), background 0.2s, box-shadow 0.2s, opacity 0.2s;
  user-select: none;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.btn:focus-visible { outline: 3px solid var(--a-2); outline-offset: 2px; }

.btn--big   { padding: 16px 26px; font-size: 1.15rem; width: 100%; }
.btn--sm    { padding: 8px 14px; font-size: 0.9rem; }

.btn--primary { background: linear-gradient(135deg, var(--brand), #ffb300); color: var(--brand-ink); box-shadow: var(--shadow-sm); }
.btn--success { background: linear-gradient(135deg, var(--success), #2fb267); color: #04240f; box-shadow: var(--shadow-sm); }
.btn--skip    { background: linear-gradient(135deg, var(--skip), #f6851b); color: #2a1400; box-shadow: var(--shadow-sm); }
.btn--ghost   { background: transparent; border-color: var(--line); color: var(--ink-soft); }
.btn--ghost:hover { color: var(--ink); border-color: var(--ink-faint); }
.btn--danger  { color: var(--danger); border-color: #5a2a35; }
.btn--danger:hover { background: #2a1620; }

/* ---------- Setup screen ---------- */
.setup-header { text-align: center; margin: 14px 0 22px; }
.logo {
  font-size: clamp(2.2rem, 8vw, 3.2rem);
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.logo-umm {
  color: var(--brand-ink);
  background: var(--brand);
  padding: 0 0.25em;
  border-radius: 10px;
  display: inline-block;
  transform: rotate(-3deg);
  box-shadow: var(--shadow-sm);
}
.tagline { color: var(--ink-soft); margin: 12px 0 0; }
.unofficial { color: var(--ink-faint); margin: 8px 0 0; font-size: 0.82rem; font-style: italic; }

.panel {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
}

.field { margin-bottom: 22px; }
.field-label { display: block; font-weight: 700; margin-bottom: 10px; }
.field-label--sm { font-size: 0.9rem; color: var(--ink-soft); }
.field-hint { color: var(--ink-faint); font-size: 0.85rem; margin: 8px 0 0; }

/* Stepper */
.stepper {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 6px;
}
.stepper-btn {
  width: 46px; height: 46px;
  border: none; border-radius: 10px;
  background: var(--panel-2);
  color: var(--ink);
  font-size: 1.5rem; font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.stepper-btn:hover { background: var(--a); }
.stepper-btn:active { transform: scale(0.92); }
.stepper-value {
  min-width: 46px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 900;
}

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}
.chip:hover { border-color: var(--a); color: var(--ink); }
.chip.is-selected {
  background: var(--a);
  border-color: var(--a);
  color: #fff;
}
.custom-time { display: flex; align-items: center; gap: 10px; margin-top: 12px; }

.field-optional { color: var(--ink-faint); font-weight: 400; font-size: 0.85rem; }

/* Team-name inputs (one per team, rendered from the team count). */
.team-names { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 460px) { .team-names { grid-template-columns: 1fr; } }

/* Text inputs */
.text-input {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  padding: 11px 13px;
  font-size: 1rem;
  width: 100%;
}
.text-input:focus { outline: none; border-color: var(--a); }
.text-input--sm { width: 90px; }

/* Custom words */
.custom-words { border: 1px dashed var(--line); border-radius: var(--radius); padding: 14px 16px; }
.custom-words[open] { background: rgba(0,0,0,0.15); }
.custom-words-summary { cursor: pointer; font-weight: 700; list-style: none; }
.custom-words-summary::-webkit-details-marker { display: none; }
.custom-words-summary::before { content: "＋ "; color: var(--brand); }
.custom-words[open] .custom-words-summary::before { content: "－ "; }
.custom-words-count { color: var(--ink-faint); font-weight: 400; font-size: 0.85rem; }

.custom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 14px; }
.add-row { display: flex; gap: 8px; margin: 8px 0; }
.tag-list { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--panel-2);
  border-radius: 999px;
  padding: 4px 6px 4px 12px;
  font-size: 0.85rem;
}
.tag button {
  border: none; background: transparent; color: var(--ink-faint);
  cursor: pointer; font-size: 1rem; line-height: 1; padding: 0 2px;
}
.tag button:hover { color: var(--danger); }

.pool-note { color: var(--ink-faint); font-size: 0.85rem; text-align: center; margin: 6px 0 18px; }
.footnote { color: var(--ink-faint); text-align: center; font-size: 0.85rem; margin-top: 20px; }

/* ---------- Game screen ---------- */
/* 3 equal columns so the round pill is truly centered on the page regardless
   of how wide the side buttons are. */
.game-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px; margin-bottom: 8px;
}
.game-topbar-left  { justify-self: start; }
.game-topbar-right { justify-self: end; }
.round-pill {
  justify-self: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 16px;
  font-weight: 700; font-size: 0.9rem;
  color: var(--ink-soft);
  white-space: nowrap;
}

.team-banner {
  text-align: center;
  margin: 14px 0 6px;
  animation: pop-in 0.4s var(--ease);
}
.team-banner-label { display: block; color: var(--ink-faint); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; }
.team-banner-name {
  display: inline-block;
  font-size: clamp(1.8rem, 7vw, 2.6rem);
  font-weight: 900;
  margin-top: 4px;
}
@keyframes pop-in {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

/* Timer ring — it's a <button>; clicking pauses/resumes an active round. */
.timer-wrap { display: flex; justify-content: center; }
.timer {
  position: relative;
  width: 148px; height: 148px;
  margin: 10px 0 6px;
  padding: 0; border: none; background: transparent;
  color: var(--ink);            /* buttons reset color; restore it */
  cursor: pointer;
  border-radius: 50%;
}
.timer:disabled { cursor: default; opacity: 1; }
.timer:focus-visible { outline: 3px solid var(--a-2); outline-offset: 4px; }
.timer-ring { width: 100%; height: 100%; transform: rotate(-90deg); display: block; }
.timer-ring-track {
  fill: none; stroke: var(--line); stroke-width: 8;
}
.timer-ring-progress {
  fill: none;
  stroke: var(--b);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 339.292;   /* 2πr, r = 54 */
  stroke-dashoffset: 0;
  transition: stroke 0.4s;
}
.timer-readout {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; font-weight: 900;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.timer.is-idle .timer-ring-progress { stroke: var(--ink-faint); }
.timer.is-warning .timer-ring-progress { stroke: var(--skip); }
.timer.is-danger  .timer-ring-progress { stroke: var(--danger); }
.timer.is-danger  .timer-readout { color: var(--danger); animation: pulse 0.6s infinite; }
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.12); }
}

/* Little pause "||" glyph shown at the bottom of the ring while running, and a
   play "▶" while paused, so the click-to-pause affordance is discoverable. */
.timer-pause-icon {
  position: absolute;
  left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 14px; height: 12px;
  opacity: 0; transition: opacity 0.2s;
}
.timer-pause-icon::before,
.timer-pause-icon::after {
  content: ""; position: absolute; top: 0;
  width: 4px; height: 12px; border-radius: 2px;
  background: var(--ink-faint);
}
.timer-pause-icon::before { left: 2px; }
.timer-pause-icon::after  { right: 2px; }
.timer:hover .timer-pause-icon { opacity: 0.7; }

/* Paused: dim the readout, freeze color to purple, show a play triangle. */
.timer.is-paused .timer-ring-progress { stroke: var(--a); }
.timer.is-paused .timer-readout { opacity: 0.45; animation: none; }
.timer.is-paused .timer-pause-icon { opacity: 1; }
.timer.is-paused .timer-pause-icon::before {
  left: 3px; top: 0;
  width: 0; height: 0; border-radius: 0; background: transparent;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--a-2);
}
.timer.is-paused .timer-pause-icon::after { display: none; }

/* Cards */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 18px 0 24px;
}
.card-slot { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.card-tag {
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 700;
}

/* .card is the static frame. It holds the faux "stack" panels (which never
   move) plus .card-top (the single top card that flips and flies away). This
   separation is what makes the pile look like it stays put on discard. */
.card {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
}

/* The faux "stack" — face-down cards sitting behind the top card. They stay put
   at all times so the pile keeps a constant height while cards are dealt. */
.card-stack {
  position: absolute; inset: 0;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, rgba(124, 92, 255, 0.10) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
}
.card-stack--2 { transform: translate(5px, 6px); }
.card-stack--3 { transform: translate(10px, 12px); opacity: 0.85; }

/* The top card. Perspective lives HERE (the direct parent of the flipping
   element) so the 3D flip renders correctly instead of glitching. */
.card-top {
  position: absolute; inset: 0;
  perspective: 1200px;
}

.card-inner {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}
.card-top.is-flipped .card-inner { transform: rotateY(180deg); }

.card-face {
  position: absolute; inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  padding: 14px; text-align: center;
  box-shadow: var(--shadow-sm);
  /* keep each face a solid, fully opaque layer so the other face never
     bleeds through mid-flip */
  overflow: hidden;
}
.card-face--back {
  background:
    repeating-linear-gradient(45deg, rgba(124, 92, 255, 0.12) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
}
.card-back-mark {
  font-size: 3rem; font-weight: 900; color: var(--ink-faint);
  opacity: 0.5;
}
.card-face--front { transform: rotateY(180deg); }
.card-face--a { background: linear-gradient(160deg, #2b2660, #1c1940); border: 1px solid var(--a); }
.card-face--b { background: linear-gradient(160deg, #123f3d, #0e2e2c); border: 1px solid var(--b); }
.card-word {
  font-size: clamp(1.2rem, 5.5vw, 1.9rem);
  font-weight: 900;
  line-height: 1.1;
  word-break: break-word;
}
.card-face--a .card-word { color: var(--a-2); }
.card-face--b .card-word { color: var(--b-2); }

/* Only the TOP card leaves to a pile — the stack panels behind it stay put. */
.card-top.to-discard { animation: fly-discard 0.3s var(--ease) forwards; }
.card-top.to-skip    { animation: fly-skip 0.3s var(--ease) forwards; }
.card-top.card-in    { animation: card-in 0.4s var(--ease); }
@keyframes fly-discard {
  to { transform: translate(-34%, 62%) rotate(-18deg) scale(0.62); opacity: 0; }
}
@keyframes fly-skip {
  to { transform: translate(34%, 62%) rotate(18deg) scale(0.62); opacity: 0; }
}
@keyframes card-in {
  from { transform: translateY(-22px) scale(0.92); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

/* Controls */
.controls { margin-top: 6px; }
.controls-active {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 12px;
  align-items: center;
}

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 50; display: flex; align-items: center; justify-content: center; padding: 18px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(6, 8, 20, 0.7); backdrop-filter: blur(3px); animation: screen-in 0.25s; }
.modal-box {
  position: relative;
  width: 100%; max-width: 560px;
  max-height: 82vh; overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  animation: pop-in 0.28s var(--ease);
}
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.modal-head h2 { margin: 0; font-size: 1.3rem; }
.icon-btn { border: none; background: transparent; color: var(--ink-soft); font-size: 1.6rem; cursor: pointer; line-height: 1; }
.icon-btn:hover { color: var(--ink); }

.team-tabs { display: flex; gap: 6px; flex-wrap: wrap; padding: 14px 20px 0; }
.team-tab {
  border: 1px solid var(--line); background: var(--bg);
  color: var(--ink-soft); border-radius: 999px; padding: 6px 14px;
  cursor: pointer; font-weight: 700; font-size: 0.9rem;
}
.team-tab.is-active { background: var(--a); border-color: var(--a); color: #fff; }

/* Two big pile "tiles" — each drawn as a little stack of cards with a count.
   Clicking a tile shows that pile's words in the list below. */
.pile-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 16px 20px 8px; }
.pile-tile {
  position: relative;
  appearance: none;
  width: 100%;
  font: inherit; color: var(--ink);
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: var(--radius);
  padding: 16px 14px 14px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s, transform 0.12s, background 0.15s;
}
.pile-tile:focus-visible { outline: 3px solid var(--sel); outline-offset: 2px; }
.pile-tile:hover { transform: translateY(-2px); }
.pile-tile.is-active { border-color: var(--sel); background: var(--sel-bg); }

/* the stacked-cards graphic */
.pile-tile__stack {
  position: relative;
  width: 54px; height: 72px;
  margin: 4px auto 12px;
}
.pile-tile__stack span {
  position: absolute; inset: 0;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
}
.pile-tile__stack span:nth-child(1) { transform: translate(-6px, 6px) rotate(-6deg); opacity: 0.6; }
.pile-tile__stack span:nth-child(2) { transform: translate(3px, 3px) rotate(4deg); opacity: 0.8; }
.pile-tile__stack span:nth-child(3) {
  border-color: var(--sel);
  background: var(--sel-card);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.3rem; color: var(--sel);
}
.pile-tile__stack.is-empty span:nth-child(3) { border-color: var(--line); color: var(--ink-faint); background: var(--panel); }
.pile-tile__label { font-weight: 800; font-size: 0.95rem; }
.pile-tile__count { color: var(--ink-faint); font-size: 0.85rem; margin-top: 2px; }

/* Per-pile accent: Played = teal, Skipped = orange */
.pile-tile[data-pile="discard"] { --sel: var(--b-2); --sel-bg: rgba(35,201,183,0.08); --sel-card: rgba(35,201,183,0.14); }
.pile-tile[data-pile="skip"]    { --sel: var(--skip);  --sel-bg: rgba(255,159,67,0.08);  --sel-card: rgba(255,159,67,0.14); }

.pile-list-wrap { padding: 6px 20px 20px; overflow-y: auto; }
.pile-list-head {
  display: flex; align-items: center; gap: 8px;
  margin: 6px 0 10px; font-weight: 700; font-size: 0.9rem; color: var(--ink-soft);
}
.pile-items { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.pile-item {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 10px; padding: 9px 13px; font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
  animation: pile-item-in 0.25s var(--ease);
}
.pile-item .pa { color: var(--a-2); font-weight: 700; }
.pile-item .pb { color: var(--b-2); font-weight: 700; }
.pile-item .pdot { color: var(--ink-faint); }
.pile-item .pnum { margin-left: auto; color: var(--ink-faint); font-size: 0.8rem; font-variant-numeric: tabular-nums; }
.pile-empty { color: var(--ink-faint); font-size: 0.9rem; padding: 14px 0; text-align: center; }
@keyframes pile-item-in { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* ---------- End screen ---------- */
.end-panel { text-align: center; margin-top: 30px; }
.end-title { font-size: 2rem; margin: 0 0 6px; }
.end-sub { color: var(--ink-soft); margin: 0 0 20px; }
.end-summary { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.end-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 12px; padding: 12px 16px;
}
.end-row-name { font-weight: 800; }
.end-row-stats { color: var(--ink-soft); font-size: 0.9rem; }

/* ---------- Responsive ---------- */
@media (max-width: 560px) {
  .app { padding: 14px 12px 36px; }

  /* Setup */
  .custom-grid { grid-template-columns: 1fr; }
  .logo { font-size: clamp(2rem, 11vw, 2.8rem); }
  .setup-header { margin: 8px 0 16px; }
  .panel { padding: 18px 15px; border-radius: 20px; }

  /* Give every tappable control a comfortable touch target (~48px). */
  .btn { padding: 13px 16px; }
  .btn--sm { padding: 10px 14px; }
  .chip { padding: 11px 18px; }

  /* Game screen: tighten the vertical rhythm so it fits without scrolling. */
  .team-banner { margin: 8px 0 2px; }
  .team-banner-label { font-size: 0.72rem; }
  .timer { width: 124px; height: 124px; margin: 6px 0 2px; }
  .timer-readout { font-size: 2rem; }
  .timer-pause-icon { bottom: 20px; }

  .cards { gap: 12px; margin: 14px 0 18px; }
  .card-word { font-size: clamp(1.05rem, 6.5vw, 1.7rem); }
  .card-face { padding: 10px; }
  .card-stack--2 { transform: translate(4px, 5px); }
  .card-stack--3 { transform: translate(8px, 10px); }

  /* Controls: a big full-width Next on top, Skip + Undo beneath it. */
  .controls-active { grid-template-columns: 1fr 1fr; gap: 10px; }
  .controls-active #btn-next { grid-column: 1 / -1; order: -1; }
  .controls-active .btn { min-height: 50px; }

  /* Modal fills more of the small screen. */
  .modal { padding: 10px; }
  .modal-box { max-height: 88vh; }
  .pile-tiles { gap: 10px; padding: 14px 16px 6px; }
  .pile-list-wrap { padding: 6px 16px 16px; }
}

/* Very narrow phones: shrink the timer a touch more. */
@media (max-width: 360px) {
  .timer { width: 108px; height: 108px; }
  .timer-readout { font-size: 1.7rem; }
  .card-word { font-size: clamp(0.95rem, 6vw, 1.4rem); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}
