:root {
  --bg: #0e0c0b;
  --fg: #e8e0d4;
  --muted: #6b6560;
  --accent: #d4a054;
  --border: rgba(212, 160, 84, 0.2);
  --ok: #6dbe6d;
  --err: #d46a54;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  width: 100vw;
  height: 100vh;
  background: transparent;
  overflow: hidden;
  font-family: "IBM Plex Mono", monospace;
  color: var(--fg);
}
#cv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
#ov {
  position: absolute;
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  pointer-events: none;
  z-index: 2;
}
#oc {
  display: inline-block;
  animation: bk 0.75s step-end infinite;
}
@keyframes bk {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
#sl {
  position: fixed;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  box-shadow:
    0 0 14px var(--accent),
    0 0 28px rgba(212, 160, 84, 0.4);
  opacity: 0;
  pointer-events: none;
  z-index: 50;
}
#cp {
  display: none;
  width: 100vw;
  height: 100vh;
  background: var(--bg);
  overflow: hidden;
}
#cp.on {
  display: flex;
  flex-direction: column;
}
.hdr {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.hdr h1 {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.badge {
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(212, 160, 84, 0.15);
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hdr-h {
  font-size: 10px;
  color: var(--muted);
  margin-left: auto;
}
.body {
  flex: 1;
  display: flex;
  overflow: hidden;
}
.ctrl {
  width: 310px;
  flex-shrink: 0;
  overflow-y: auto;
  padding: 14px 16px;
  border-right: 1px solid var(--border);
}
.ctrl::-webkit-scrollbar {
  width: 3px;
}
.ctrl::-webkit-scrollbar-thumb {
  background: var(--muted);
  border-radius: 2px;
}
.st {
  font-size: 9px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 14px 0 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
}
.st:first-child {
  margin-top: 0;
}
.cg {
  margin-bottom: 9px;
}
.cl {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  display: block;
}
.cr {
  display: flex;
  gap: 8px;
  align-items: center;
}
input[type="text"],
textarea,
select {
  width: 100%;
  background: rgb(34, 33, 34);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  color: var(--fg);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  outline: none;
  transition: border-color 0.2s;
}
input[type="text"]:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
}
textarea {
  resize: vertical;
  min-height: 60px;
  line-height: 1.5;
}
select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.sw {
  position: relative;
}
.sw::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  font-size: 11px;
}
#fs {
  padding-right: 28px;
}
input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 6px rgba(212, 160, 84, 0.4);
}
input[type="color"] {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  background: transparent;
  padding: 2px;
  flex-shrink: 0;
}
input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}
input[type="color"]::-webkit-color-swatch {
  border: none;
  border-radius: 4px;
}
.rv {
  font-size: 11px;
  color: var(--accent);
  min-width: 42px;
  text-align: right;
  flex-shrink: 0;
}
.tw {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tg {
  position: relative;
  width: 36px;
  height: 19px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s;
  flex-shrink: 0;
}
.tg.on {
  background: var(--accent);
}
.tg::after {
  content: "";
  position: absolute;
  top: 2.5px;
  left: 2.5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.25s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.tg.on::after {
  transform: translateX(17px);
}
.pg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  width: 78px;
}
.pb {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: all 0.2s;
}
.pb:hover {
  background: rgba(255, 255, 255, 0.08);
}
.pb.on {
  background: var(--accent);
  border-color: var(--accent);
}
.ag {
  display: flex;
  gap: 3px;
}
.ab {
  flex: 1;
  height: 26px;
  border-radius: 5px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
}
.ab:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--fg);
}
.ab.on {
  background: var(--accent);
  border-color: var(--accent);
  color: #1a1410;
}
.gsg {
  margin-top: 6px;
}
.fst {
  font-size: 10px;
  color: var(--muted);
  margin-top: 3px;
  min-height: 14px;
}
.fst.ok {
  color: var(--ok);
}
.fst.err {
  color: var(--err);
}
.fpv {
  margin-top: 4px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 15px;
  color: var(--fg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 26px;
  transition: font-family 0.15s;
}
.bsc {
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--fg);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.bsc:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
}
.prv {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 14px;
  gap: 10px;
  min-width: 0;
}
.prv-lbl {
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.prv-stage {
  flex: 1;
  position: relative;
  background:
    repeating-conic-gradient(
        rgba(255, 255, 255, 0.03) 0% 25%,
        transparent 0% 50%
      )
      0 0/20px 20px,
    #0a0908;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
#pt {
  position: absolute;
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  pointer-events: none;
  z-index: 2;
}
#pcv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
#psl {
  position: absolute;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
  opacity: 0;
  pointer-events: none;
  z-index: 50;
}
.note {
  font-size: 9px;
  color: var(--muted);
  font-style: italic;
  margin-top: 3px;
  min-height: 13px;
  opacity: 0.8;
}
.inst {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.7;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  border: 1px solid var(--border);
}
.inst strong {
  color: var(--accent);
  font-weight: 700;
}
.ftr {
  border-top: 1px solid var(--border);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.3);
}
.ftr label {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.ubox {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 12px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--fg);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  user-select: all;
}
.btn {
  padding: 7px 14px;
  border: none;
  border-radius: 6px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn1 {
  background: var(--accent);
  color: #1a1410;
}
.btn1:hover {
  background: #e0b06a;
  transform: translateY(-1px);
}
.btn1.copied {
  background: var(--ok);
}
.btn2 {
  background: rgba(255, 255, 255, 0.06);
  color: var(--fg);
  border: 1px solid var(--border);
}
.btn2:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
}
.steps {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}
.step {
  flex: 1;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
}
.step-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: #1a1410;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 4px;
}
.step-t {
  font-size: 9px;
  color: var(--muted);
  line-height: 1.4;
}
.auto-sub {
  padding-left: 12px;
}
.auto-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  margin-top: 6px;
  transition: all 0.3s;
}
.auto-status .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  transition: background 0.3s;
}
.auto-status.playing .dot {
  background: var(--ok);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
.auto-status.waiting .dot {
  background: var(--accent);
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.fx-neon {
  animation: fxNeon 3s infinite;
}
@keyframes fxNeon {
  0%,
  19%,
  21%,
  23%,
  25%,
  54%,
  56%,
  100% {
    opacity: 1;
  }
  20%,
  24%,
  55% {
    opacity: 0.12;
  }
}
.fx-glitch {
  position: relative;
}
.fx-glitch::before,
.fx-glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.fx-glitch::before {
  color: #ff0040;
  animation: gl1 2s infinite;
  clip-path: inset(0 0 55% 0);
  mix-blend-mode: screen;
}
.fx-glitch::after {
  color: #00ffcc;
  animation: gl2 2s infinite;
  clip-path: inset(55% 0 0 0);
  mix-blend-mode: screen;
}
@keyframes gl1 {
  0%,
  100% {
    transform: translate(0);
  }
  20% {
    transform: translate(-5px, 2px);
  }
  40% {
    transform: translate(5px, -2px);
  }
  60% {
    transform: translate(-3px, 1px);
  }
  80% {
    transform: translate(4px, -1px);
  }
}
@keyframes gl2 {
  0%,
  100% {
    transform: translate(0);
  }
  20% {
    transform: translate(5px, -2px);
  }
  40% {
    transform: translate(-5px, 2px);
  }
  60% {
    transform: translate(3px, -1px);
  }
  80% {
    transform: translate(-4px, 1px);
  }
}
.fx-wl {
  display: inline-block;
  animation: fxWave 2s ease-in-out infinite;
}
@keyframes fxWave {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
.fx-shake {
  animation: fxShake 0.06s infinite;
}
@keyframes fxShake {
  0% {
    transform: translate(2px, 1px) rotate(0.5deg);
  }
  25% {
    transform: translate(-2px, -1px) rotate(-0.5deg);
  }
  50% {
    transform: translate(1px, -2px) rotate(0.3deg);
  }
  75% {
    transform: translate(-1px, 2px) rotate(-0.3deg);
  }
  100% {
    transform: translate(2px, 1px) rotate(0.5deg);
  }
}
.fx-ripple {
  animation: fxRipple 1.5s ease-in-out infinite;
}
@keyframes fxRipple {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
.fx-chrome {
  background: linear-gradient(
    90deg,
    #8b6914,
    #ffd700,
    #fff8dc,
    #ffd700,
    #b8860b,
    #ffd700,
    #fff8dc,
    #8b6914
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fxChrome 3s linear infinite;
}
@keyframes fxChrome {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}
/* FIXED RAINBOW: Gradient text animation */
.fx-rainbow {
  background-image: linear-gradient(
    90deg,
    #ff0000,
    #ff8800,
    #ffff00,
    #00ff00,
    #00ffff,
    #0000ff,
    #ff00ff,
    #ff0000
  );
  background-size: 400% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fxRainbow 4s linear infinite;
}
@keyframes fxRainbow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 400% 50%;
  }
}

.fx-ice {
  animation: fxIce 3s ease-in-out infinite;
}
@keyframes fxIce {
  0%,
  100% {
    filter: brightness(1) saturate(1);
  }
  50% {
    filter: brightness(1.3) saturate(0.7);
  }
}
.fx-fire-text {
  animation: fxFT 0.12s infinite alternate;
}
@keyframes fxFT {
  from {
    text-shadow:
      0 0 10px #ff6600,
      0 -4px 20px #ff3300;
  }
  to {
    text-shadow:
      0 0 18px #ffaa00,
      0 -8px 35px #ff6600;
  }
}
.fx-sl {
  animation: fxSL 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes fxSL {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.fx-sr {
  animation: fxSR 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes fxSR {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.fx-fd {
  animation: fxFD 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes fxFD {
  from {
    transform: translateY(-120%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.fx-ru {
  animation: fxRU 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes fxRU {
  from {
    transform: translateY(120%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.fx-ri {
  animation: fxRI 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes fxRI {
  from {
    transform: rotate(-180deg) scale(0);
    opacity: 0;
  }
  to {
    transform: rotate(0) scale(1);
    opacity: 1;
  }
}
.fx-bi {
  animation: fxBI 0.9s ease-out both;
}
@keyframes fxBI {
  from {
    filter: blur(20px);
    opacity: 0;
  }
  to {
    filter: blur(0);
    opacity: 1;
  }
}
.fx-pi {
  animation: fxPI 1.2s steps(10) both;
}
@keyframes fxPI {
  from {
    filter: blur(10px) contrast(0.5);
    opacity: 0;
  }
  to {
    filter: blur(0) contrast(1);
    opacity: 1;
  }
}
/* FIXED FADE IN: Simple fade in, no blink */
.fx-fi {
  animation: fxFI 1s ease-out forwards;
}
@keyframes fxFI {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fx-ms {
  animation: fxMS 1.2s ease-in-out both;
  clip-path: inset(0 100% 0 0);
}
@keyframes fxMS {
  to {
    clip-path: inset(0 0% 0 0);
  }
}
.fx-zi {
  animation: fxZI 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes fxZI {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.fx-al {
  display: inline-block;
  opacity: 0;
  animation: fxAL 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes fxAL {
  from {
    transform: translate(var(--sx), var(--sy)) rotate(var(--sr));
    opacity: 0;
  }
  to {
    transform: translate(0, 0) rotate(0);
    opacity: 1;
  }
}
.fx-scl {
  display: inline-block;
  animation: fxSCL 1.4s ease-in both;
}
@keyframes fxSCL {
  to {
    opacity: 0;
    transform: translate(var(--sx), var(--sy)) rotate(var(--sr));
  }
}
.fx-stamp {
  animation: fxSt 0.12s ease-out both;
}
@keyframes fxSt {
  0% {
    transform: scale(1.4) rotate(-3deg);
    opacity: 0.5;
  }
  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}
.fx-pour {
  display: inline-block;
  opacity: 0;
  animation: fxPour 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes fxPour {
  0% {
    transform: translateY(-280px) translateX(var(--px, 0px))
      rotate(var(--pr, 0deg));
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  65% {
    transform: translateY(8px) translateX(0) rotate(0deg);
  }
  80% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 1;
  }
}

/* ==================== DISAPPEARING EFFECTS CSS ==================== */
.fx-sl-exit {
  animation: fxSLexit 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes fxSLexit {
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}
.fx-sr-exit {
  animation: fxSRexit 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes fxSRexit {
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
.fx-fd-exit {
  animation: fxDexit 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes fxDexit {
  to {
    transform: translateY(120%);
    opacity: 0;
  }
}
.fx-ru-exit {
  animation: fxRUexit 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes fxRUexit {
  to {
    transform: translateY(-120%);
    opacity: 0;
  }
}
.fx-ri-exit {
  animation: fxRIexit 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes fxRIexit {
  to {
    transform: rotate(180deg) scale(0);
    opacity: 0;
  }
}
.fx-bi-exit {
  animation: fxBIexit 0.9s ease-in forwards;
}
@keyframes fxBIexit {
  to {
    filter: blur(20px);
    opacity: 0;
  }
}
.fx-pi-exit {
  animation: fxPIexit 1.2s steps(10) forwards;
}
@keyframes fxPIexit {
  to {
    filter: blur(10px) contrast(0.5);
    opacity: 0;
  }
}
.fx-fi-exit {
  animation: fxFIexit 0.7s ease-out forwards;
}
@keyframes fxFIexit {
  to {
    opacity: 0;
  }
}
.fx-zi-exit {
  animation: fxZIexit 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes fxZIexit {
  to {
    transform: scale(0);
    opacity: 0;
  }
}
.fx-ms-exit {
  animation: fxMSexit 1.2s ease-in forwards;
  clip-path: inset(0 0 0 0);
}
@keyframes fxMSexit {
  to {
    clip-path: inset(0 0 0 100%);
  }
}
.fx-shrink-exit {
  transform-origin: center;
  animation: fxShrinkExit 0.6s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards;
}
@keyframes fxShrinkExit {
  to {
    transform: scale(0);
    opacity: 0;
  }
}

.glass-shard-container {
  position: absolute;
  overflow: hidden;
  z-index: 10;
  pointer-events: none;
}
.glass-shard {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#nc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ns-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.ns-rem-btn {
  width: 18px;
  height: 28px;
  border: 1px solid var(--border);
  background: rgba(255, 50, 50, 0.1);
  color: #ff6b6b;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.ns-rem-btn:hover {
  background: rgba(255, 50, 50, 0.25);
  border-color: #ff6b6b;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    opacity: 1 !important;
  }
}
