/* ══════════════════════════════════════════════════════════════
   Endless Balatro — main menu styling
   Palette lifted from the game's own colour constants.
   ══════════════════════════════════════════════════════════════ */

@font-face {
  font-family: "Balatro";
  /* Uses the real m6x11plus if it is installed locally or dropped into fonts/ */
  src: local("m6x11plus"), local("m6x11"), url("../fonts/m6x11plus.ttf") format("truetype");
  font-display: swap;
}

:root {
  --black:    #374244;
  --l-black:  #4f6367;
  --d-black:  #202b2d;
  --white:    #ffffff;
  --red:      #fe5f55;
  --blue:     #009dff;
  --orange:   #fda200;
  --green:    #4bc292;
  --gold:     #eac058;
  --purple:   #8867a5;
  --money:    #f3b958;

  --ink:      rgba(0, 0, 0, 0.45);
  --shelf:    0.32rem;
  --radius:   0.55rem;

  --font: "Balatro", "Pixelify Sans", "Trebuchet MS", system-ui, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  font-family: var(--font);
  color: var(--white);
  background: #17282e;
  overflow: hidden;
  -webkit-font-smoothing: none;
  font-smooth: never;
  text-rendering: optimizeSpeed;
  letter-spacing: 0.02em;
}

/* ─────────────  BACKGROUND  ───────────── */

#bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  /* fallback if WebGL is unavailable */
  background:
    radial-gradient(120% 80% at 20% 15%, rgba(254, 95, 85, 0.30), transparent 60%),
    radial-gradient(110% 90% at 85% 80%, rgba(0, 157, 255, 0.28), transparent 62%),
    linear-gradient(160deg, #1d3740, #16262c 60%, #101d22);
}

#suits {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

#suits span {
  position: absolute;
  bottom: -12vh;
  font-size: var(--size, 3rem);
  color: var(--tint, rgba(255, 255, 255, 0.09));
  text-shadow: 0 0.2rem 0 rgba(0, 0, 0, 0.18);
  animation: drift var(--dur, 30s) linear var(--delay, 0s) infinite;
  will-change: transform;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to   { transform: translate3d(var(--dx, 4vw), -125vh, 0) rotate(var(--spin, 220deg)); }
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(130% 100% at 50% 45%, transparent 45%, rgba(0, 0, 0, 0.55) 100%),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0 1px, transparent 1px 3px);
}

/* ─────────────  LAYOUT  ───────────── */

.screen {
  position: relative;
  z-index: 3;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.4rem, 4vh, 3rem);
  padding: 8vh 1.25rem 12vh;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

body.is-playing #menu {
  /* the menu stays, it just makes room for the run panel */
  transform: translateY(-0.5rem);
}

/* ─────────────  LOGO  ───────────── */

.logo {
  position: relative;
  margin: 0;
  text-align: center;
  line-height: 0.9;
  user-select: none;
}

.logo-card {
  display: inline-flex;
  gap: clamp(0.1rem, 0.6vw, 0.45rem);
  padding: clamp(0.5rem, 1.6vw, 1.1rem) clamp(0.9rem, 3vw, 2.2rem);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(55, 66, 68, 0.86), rgba(28, 38, 40, 0.92));
  box-shadow:
    inset 0 0 0 0.28rem rgba(0, 0, 0, 0.35),
    0 0.7rem 0 rgba(0, 0, 0, 0.35),
    0 1.4rem 2.6rem rgba(0, 0, 0, 0.45);
  transform: rotate(-1.2deg);
}

.logo .l {
  display: inline-block;
  font-size: clamp(3rem, 11vw, 8.5rem);
  font-weight: 700;
  color: var(--red);
  text-shadow:
    -0.06em 0 0 #000, 0.06em 0 0 #000, 0 -0.06em 0 #000, 0 0.06em 0 #000,
    -0.06em -0.06em 0 #000, 0.06em -0.06em 0 #000, -0.06em 0.06em 0 #000, 0.06em 0.06em 0 #000,
    0 0.14em 0 rgba(0, 0, 0, 0.55);
  animation: letter-bob 2.6s ease-in-out infinite;
  animation-delay: calc(var(--i) * -0.28s);
  will-change: transform;
}

.logo .l:nth-child(even) { color: #ff7d6f; }

@keyframes letter-bob {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%      { transform: translateY(-0.13em) rotate(1.5deg); }
}

.logo-sub {
  display: block;
  margin-top: 0.7rem;
  font-size: clamp(0.85rem, 2.1vw, 1.5rem);
  letter-spacing: 0.55em;
  text-indent: 0.55em;
  color: var(--gold);
  text-shadow: 0 0.12em 0 rgba(0, 0, 0, 0.6);
}

.tagline {
  margin: 0;
  font-size: clamp(0.8rem, 1.7vw, 1.1rem);
  color: rgba(255, 255, 255, 0.62);
  text-shadow: 0 0.1em 0 rgba(0, 0, 0, 0.5);
  text-align: center;
}

/* ─────────────  BUTTONS  ───────────── */

.menu-buttons {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.8rem;
  width: min(24rem, 86vw);
}

.btn-row {
  display: flex;
  gap: 0.8rem;
}

.btn-row .btn { flex: 1; }

.btn {
  --btn: var(--l-black);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72em 1.1em;
  border: 0;
  border-radius: var(--radius);
  background: var(--btn);
  color: var(--white);
  font-family: inherit;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-shadow: 0 0.09em 0 rgba(0, 0, 0, 0.45);
  box-shadow:
    inset 0 0.14em 0 rgba(255, 255, 255, 0.22),
    inset 0 -0.3em 0 rgba(0, 0, 0, 0.18),
    0 var(--shelf) 0 var(--ink),
    0 0.5rem 0.9rem rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 0.07s ease, box-shadow 0.07s ease, filter 0.15s ease;
}

.btn:hover  { filter: brightness(1.1); transform: translateY(-0.1rem); }
.btn:active { transform: translateY(var(--shelf)); box-shadow: inset 0 0.14em 0 rgba(255, 255, 255, 0.18), inset 0 -0.3em 0 rgba(0, 0, 0, 0.18); }
.btn:focus-visible { outline: 0.2rem solid var(--gold); outline-offset: 0.2rem; }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; filter: grayscale(0.5); }
.btn[disabled]:hover { transform: none; filter: grayscale(0.5); }

.btn-blue   { --btn: var(--blue); }
.btn-red    { --btn: var(--red); }
.btn-orange { --btn: var(--orange); }
.btn-green  { --btn: var(--green); }
.btn-ghost  { --btn: var(--l-black); align-self: center; }

.btn-big {
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
  padding: 0.6em 1em;
  letter-spacing: 0.08em;
}

.btn-small {
  font-size: clamp(0.8rem, 1.7vw, 1rem);
  padding: 0.6em 0.9em;
}

.btn-quit { align-self: center; width: 60%; }

body.is-playing .btn-big .btn-label::after {
  content: "ING";
  opacity: 0.55;
}

/* ─────────────  RUN HUD  ───────────── */

.hud {
  position: fixed;
  left: clamp(0.6rem, 2vw, 1.6rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: min(15rem, 42vw);
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  border-radius: 0.9rem;
  background: linear-gradient(180deg, rgba(55, 66, 68, 0.94), rgba(32, 43, 45, 0.94));
  box-shadow:
    inset 0 0 0 0.22rem rgba(0, 0, 0, 0.3),
    0 0.5rem 0 rgba(0, 0, 0, 0.32),
    0 1rem 2rem rgba(0, 0, 0, 0.42);
  animation: hud-in 0.4s cubic-bezier(0.2, 1.4, 0.5, 1) both;
}

@keyframes hud-in {
  from { opacity: 0; transform: translate(-1.5rem, -50%) scale(0.94); }
  to   { opacity: 1; transform: translate(0, -50%) scale(1); }
}

.hud[hidden] { display: none; }

.hud-blind {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem;
  border-radius: 0.55rem;
  background: var(--accent, var(--blue));
  box-shadow: inset 0 -0.25em 0 rgba(0, 0, 0, 0.2), inset 0 0.14em 0 rgba(255, 255, 255, 0.2);
  transition: background 0.6s ease;
}

.hud-blind-chip {
  flex: 0 0 auto;
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  text-shadow: 0 0.08em 0 rgba(0, 0, 0, 0.5);
  animation: chip-pulse 3.6s ease-in-out infinite;
}

@keyframes chip-pulse {
  0%, 100% { transform: scale(1) rotate(-4deg); }
  50%      { transform: scale(1.09) rotate(4deg); }
}

.hud-blind-text { min-width: 0; }

.hud-state {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 0.09em 0 rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hud-theme {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hud-stats { display: flex; gap: 0.55rem; }

.stat {
  flex: 1;
  padding: 0.45rem 0.5rem;
  border-radius: 0.45rem;
  background: rgba(0, 0, 0, 0.32);
  text-align: center;
  box-shadow: inset 0 0 0 0.12rem rgba(0, 0, 0, 0.25);
}

.stat-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.6);
}

.stat-value { font-size: 1.25rem; font-weight: 700; }
.stat-ante  .stat-value b { color: var(--orange); }
.stat-round .stat-value   { color: var(--blue); }
.stat-value i { font-style: normal; opacity: 0.55; font-size: 0.8em; }

.hud-seed {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
}

.hud-seed b { color: var(--gold); }

/* game-over wobble */
body.is-losing .hud { animation: losing 0.9s ease-in-out infinite; }
@keyframes losing {
  0%, 100% { filter: saturate(0.5) brightness(0.85); }
  50%      { filter: saturate(0.2) brightness(0.7); }
}

/* ─────────────  OVERLAY PANELS  ───────────── */

.overlay {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(10, 16, 18, 0.72);
  backdrop-filter: blur(3px);
  animation: fade-in 0.2s ease both;
}

.overlay[hidden] { display: none; }

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

.panel {
  width: min(28rem, 94vw);
  max-height: 88vh;
  overflow: auto;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, #3d4a4c, #2b3739);
  box-shadow:
    inset 0 0 0 0.28rem rgba(0, 0, 0, 0.34),
    0 0.7rem 0 rgba(0, 0, 0, 0.35),
    0 1.5rem 3rem rgba(0, 0, 0, 0.5);
  animation: panel-in 0.28s cubic-bezier(0.2, 1.35, 0.45, 1) both;
}

.panel[hidden] { display: none; }
.panel-wide  { width: min(42rem, 94vw); }
.panel-small { width: min(22rem, 94vw); }

@keyframes panel-in {
  from { opacity: 0; transform: translateY(1.2rem) scale(0.96) rotate(-0.6deg); }
  to   { opacity: 1; transform: none; }
}

.panel-title {
  margin: 0;
  text-align: center;
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  color: var(--gold);
  text-shadow: 0 0.1em 0 rgba(0, 0, 0, 0.55);
}

.panel-body { display: flex; flex-direction: column; gap: 0.9rem; }

.panel-close { align-self: center; min-width: 8rem; }

.panel-actions {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
}

.note {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
}

.note-lead { font-size: 0.92rem; color: rgba(255, 255, 255, 0.8); }
.note a { color: var(--blue); }
.note code {
  font-family: ui-monospace, monospace;
  font-size: 0.9em;
  padding: 0.05em 0.3em;
  border-radius: 0.25rem;
  background: rgba(0, 0, 0, 0.3);
}

/* ─────────────  FORM CONTROLS  ───────────── */

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.24);
  box-shadow: inset 0 0 0 0.12rem rgba(0, 0, 0, 0.25);
}

.field-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.field-label b { color: var(--gold); }
.field-label small {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}

.field-toggle {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.field-toggle .field-label { flex: 1; flex-direction: column; align-items: flex-start; gap: 0.1rem; }
.field-toggle input { position: absolute; opacity: 0; pointer-events: none; }

.switch {
  flex: 0 0 auto;
  width: 3rem;
  height: 1.6rem;
  border-radius: 0.8rem;
  background: var(--l-black);
  box-shadow: inset 0 0.2em 0.3em rgba(0, 0, 0, 0.4);
  position: relative;
  transition: background 0.15s ease;
}

.switch::after {
  content: "";
  position: absolute;
  top: 0.18rem;
  left: 0.18rem;
  width: 1.24rem;
  height: 1.24rem;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0.14rem 0 rgba(0, 0, 0, 0.35);
  transition: transform 0.15s cubic-bezier(0.3, 1.5, 0.5, 1);
}

.field-toggle input:checked ~ .switch { background: var(--green); }
.field-toggle input:checked ~ .switch::after { transform: translateX(1.4rem); }
.field-toggle input:focus-visible ~ .switch { outline: 0.18rem solid var(--gold); outline-offset: 0.15rem; }

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 0.7rem;
  border-radius: 0.35rem;
  background: linear-gradient(90deg, var(--blue) var(--pct, 70%), rgba(0, 0, 0, 0.35) var(--pct, 70%));
  box-shadow: inset 0 0.15em 0.25em rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.35rem;
  border: 0;
  background: var(--gold);
  box-shadow: 0 0.18rem 0 rgba(0, 0, 0, 0.4);
}

input[type="range"]::-moz-range-thumb {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.35rem;
  border: 0;
  background: var(--gold);
  box-shadow: 0 0.18rem 0 rgba(0, 0, 0, 0.4);
}

.field-inline { display: flex; gap: 0.5rem; }

input[type="text"] {
  flex: 1;
  min-width: 0;
  padding: 0.55em 0.7em;
  border: 0;
  border-radius: 0.45rem;
  background: rgba(0, 0, 0, 0.4);
  color: var(--gold);
  font-family: inherit;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: inset 0 0.15em 0.3em rgba(0, 0, 0, 0.5);
}

input[type="text"]:focus-visible { outline: 0.18rem solid var(--gold); }

/* ─────────────  LOADER  ───────────── */

.dropzone {
  padding: 1.6rem 1rem;
  border-radius: 0.7rem;
  border: 0.22rem dashed rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.22);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.dropzone:hover, .dropzone:focus-visible, .dropzone.is-over {
  border-color: var(--gold);
  background: rgba(234, 192, 88, 0.12);
  transform: translateY(-0.1rem);
  outline: none;
}

.dropzone-inner { display: flex; flex-direction: column; gap: 0.3rem; align-items: center; }
.dropzone-suit { font-size: 2rem; color: var(--red); }
.dropzone-inner strong { font-size: 1.1rem; }
.dropzone-inner span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.55); }

.slots {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.slot {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.65rem;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.26);
  box-shadow: inset 0 0 0 0.12rem rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: background 0.15s ease;
}

.slot:hover { background: rgba(0, 0, 0, 0.4); }
.slot.is-filled { box-shadow: inset 0 0 0 0.12rem var(--slot-color, var(--green)); }
.slot.is-target { background: rgba(234, 192, 88, 0.18); }

.slot-pip {
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 0.35rem;
  background: var(--slot-color, var(--l-black));
  font-size: 0.9rem;
  font-weight: 700;
}

.slot-name { flex: 1; font-size: 0.95rem; }
.slot-file {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 45%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.slot.is-filled .slot-file { color: var(--green); }

/* ─────────────  COLLECTION CARDS  ───────────── */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
  gap: 0.7rem;
}

.theme-card {
  position: relative;
  padding: 0.8rem 0.6rem;
  border-radius: 0.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.28));
  box-shadow: inset 0 0 0 0.16rem rgba(0, 0, 0, 0.3), 0 0.3rem 0 rgba(0, 0, 0, 0.28);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: transform 0.25s cubic-bezier(0.2, 1.4, 0.5, 1), box-shadow 0.25s ease;
}

.theme-card.is-active {
  transform: translateY(-0.45rem) rotate(-1.5deg);
  box-shadow:
    inset 0 0 0 0.16rem var(--card-color, var(--gold)),
    0 0.6rem 0 rgba(0, 0, 0, 0.3),
    0 0 1.6rem var(--card-color, var(--gold));
}

.theme-card .card-suit {
  font-size: 1.9rem;
  color: var(--card-color, var(--white));
  text-shadow: 0 0.1em 0 rgba(0, 0, 0, 0.45);
}

.theme-card .card-name { font-size: 0.92rem; font-weight: 700; line-height: 1.15; }
.theme-card .card-when { font-size: 0.72rem; color: rgba(255, 255, 255, 0.55); line-height: 1.25; }

.theme-card .card-state {
  margin-top: 0.15rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}

.theme-card.is-loaded .card-state { color: var(--green); }
.theme-card.is-active  .card-state { color: var(--gold); }

/* ─────────────  FOOTER  ───────────── */

.footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.9rem;
  padding: 0.7rem 1rem;
  background: linear-gradient(0deg, rgba(10, 16, 18, 0.75), transparent);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35em 0.8em;
  border-radius: 0.45rem;
  background: rgba(55, 66, 68, 0.85);
  color: var(--white);
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: inset 0 0.1em 0 rgba(255, 255, 255, 0.16), 0 0.2rem 0 rgba(0, 0, 0, 0.35);
  transition: transform 0.1s ease, filter 0.15s ease;
}

.chip:hover { transform: translateY(-0.1rem); filter: brightness(1.2); }
.chip-suit { color: var(--red); }
.chip:nth-of-type(2) .chip-suit { color: var(--white); }

.credit {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.credit b { color: rgba(255, 255, 255, 0.7); }

/* ─────────────  TOAST  ───────────── */

.toast {
  position: fixed;
  z-index: 20;
  left: 50%;
  bottom: 4.5rem;
  transform: translateX(-50%);
  padding: 0.6em 1em;
  border-radius: 0.5rem;
  background: var(--black);
  font-size: 0.9rem;
  box-shadow: inset 0 0 0 0.16rem rgba(0, 0, 0, 0.35), 0 0.35rem 0 rgba(0, 0, 0, 0.35);
  animation: toast-in 0.25s cubic-bezier(0.2, 1.4, 0.5, 1) both;
}

.toast[hidden] { display: none; }

@keyframes toast-in {
  from { opacity: 0; transform: translate(-50%, 0.8rem); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

/* ─────────────  RESPONSIVE  ───────────── */

@media (max-width: 46rem) {
  .hud {
    top: auto;
    bottom: 3.6rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(22rem, 92vw);
    flex-direction: row;
    align-items: center;
    animation: none;
  }
  .hud-stats { flex: 0 0 auto; }
  .hud-seed { display: none; }
  .screen { padding-bottom: 16vh; }
  .credit { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  #suits { display: none; }
}
