/* BTC Trading Desk — estilos (Cloudflare Pages friendly, sem build step) */

:root {
  color-scheme: dark;
  --bg: #09090b;
  --zinc-950: #09090b;
  --zinc-900: #18181b;
  --zinc-800: #27272a;
  --zinc-700: #3f3f46;
  --zinc-600: #52525b;
  --zinc-500: #71717a;
  --zinc-400: #a1a1aa;
  --zinc-300: #d4d4d8;
  --zinc-200: #e4e4e7;
  --zinc-100: #f4f4f5;
  --zinc-50: #fafafa;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --rose-400: #fb7185;
  --rose-500: #f43f5e;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --fuchsia-400: #e879f9;
  --fuchsia-600: #c026d3;
  --violet-600: #7c3aed;
  --cyan-300: #67e8f9;
  --cyan-500: #06b6d4;

  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;

  --shadow-glow: 0 0 40px -15px rgba(168, 85, 247, 0.35);
  --transition-fast: 150ms ease;
  --transition-base: 220ms ease;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg);
  color: var(--zinc-100);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-feature-settings: "tnum" 1, "cv02" 1;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  min-height: 100dvh;
}

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

button,
input {
  font: inherit;
  color: inherit;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, "Courier New", monospace;
}

/* ---------- Acessibilidade ---------- */

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

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 100;
  background: var(--fuchsia-600);
  color: #fff;
  padding: 0.625rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--fuchsia-400);
  outline-offset: 2px;
}

/* ---------- Layout ---------- */

.bg-decor {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(124, 58, 237, 0.1), transparent 55%),
    radial-gradient(circle at bottom right, rgba(6, 182, 212, 0.06), transparent 50%);
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.875rem 0.75rem 1.5rem;
  padding-top: max(0.875rem, env(safe-area-inset-top, 0px));
}

@media (min-width: 480px) {
  .page {
    padding: 1.125rem 1rem 1.5rem;
    gap: 1.125rem;
  }
}

@media (min-width: 640px) {
  .page {
    padding: 1.5rem;
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .page {
    padding: 1.75rem 2rem;
    gap: 1.5rem;
  }
}

main#main-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  main#main-content {
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  main#main-content {
    gap: 1.5rem;
  }
}

/* ---------- Header ---------- */

header.app-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  header.app-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
}

.brand-icon {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--fuchsia-600), var(--cyan-500));
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 10px 25px -8px rgba(112, 26, 117, 0.45);
  color: #fff;
  flex-shrink: 0;
}

.brand h1 {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--zinc-50);
}

@media (min-width: 640px) {
  .brand h1 {
    font-size: 1.1875rem;
  }
}

.brand p {
  margin: 0;
  font-size: 11.5px;
  color: var(--zinc-500);
}

.status-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.status-pill {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 9999px;
  border: 1px solid var(--zinc-800);
  background: rgba(24, 24, 27, 0.6);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.7rem;
  font-size: 11px;
  font-weight: 500;
  color: var(--zinc-400);
  white-space: nowrap;
}

.status-dot {
  height: 0.375rem;
  width: 0.375rem;
  border-radius: 9999px;
  flex-shrink: 0;
}

.status-pill .value {
  color: var(--zinc-300);
}

.dot-connecting {
  background: var(--amber-400);
  animation: pulse-soft 1.4s ease-in-out infinite;
}
.dot-open {
  background: var(--emerald-400);
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
}
.dot-closed,
.dot-error {
  background: var(--rose-500);
  animation: pulse-soft 1.4s ease-in-out infinite;
}

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

/* ---------- Hero Ticker ---------- */

.hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--zinc-800);
  background: rgba(9, 9, 11, 0.8);
  padding: 1.25rem;
  box-shadow: var(--shadow-glow);
  transition: background-color var(--transition-base);
}

@media (min-width: 480px) {
  .hero {
    padding: 1.5rem;
  }
}

@media (min-width: 640px) {
  .hero {
    padding: 2rem;
  }
}

.hero-glow-1,
.hero-glow-2 {
  pointer-events: none;
  position: absolute;
  border-radius: 9999px;
  filter: blur(64px);
}
.hero-glow-1 {
  right: -6rem;
  top: -6rem;
  height: 16rem;
  width: 16rem;
  background: rgba(192, 38, 211, 0.12);
}
.hero-glow-2 {
  bottom: -6rem;
  left: -4rem;
  height: 14rem;
  width: 14rem;
  background: rgba(6, 182, 212, 0.1);
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .hero-inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
  }
}

.hero-main {
  min-width: 0;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fuchsia-400);
}

.hero-label .coin {
  display: flex;
  height: 1.5rem;
  width: 1.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  font-size: 11px;
  color: var(--zinc-950);
  flex-shrink: 0;
}

.hero-price-row {
  margin-top: 0.625rem;
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.hero-price {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--zinc-50);
  transition: color var(--transition-fast);
  font-variant-numeric: tabular-nums;
  word-break: break-word;
}

@media (min-width: 400px) {
  .hero-price {
    font-size: 2.5rem;
  }
}

@media (min-width: 640px) {
  .hero-price {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-price {
    font-size: 3.75rem;
  }
}

.hero-price.up {
  color: var(--emerald-400);
}
.hero-price.down {
  color: var(--rose-400);
}

.hero-change {
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.6rem;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .hero-change {
    font-size: 1rem;
  }
}

.hero-change.positive {
  background: rgba(16, 185, 129, 0.12);
  color: var(--emerald-400);
}
.hero-change.negative {
  background: rgba(244, 63, 94, 0.12);
  color: var(--rose-400);
}

.hero-brl {
  margin: 0.625rem 0 0;
  font-size: 1.0625rem;
  color: var(--zinc-400);
}

@media (min-width: 640px) {
  .hero-brl {
    font-size: 1.25rem;
  }
}

.hero-brl .rate {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: var(--zinc-600);
  display: inline-block;
}

.hero-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
  font-size: 11px;
  color: var(--zinc-500);
}

@media (min-width: 640px) {
  .hero-meta {
    flex-direction: column;
    align-items: flex-end;
  }
}

.hero-meta .clock {
  color: var(--zinc-400);
}

.animate-flash-up {
  animation: flash-up 700ms ease-out;
}
.animate-flash-down {
  animation: flash-down 700ms ease-out;
}

@keyframes flash-up {
  0% {
    background-color: rgba(16, 185, 129, 0.28);
    box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.45), 0 0 24px rgba(16, 185, 129, 0.25);
  }
  100% {
    background-color: rgba(9, 9, 11, 0.8);
    box-shadow: 0 0 0 1px rgba(16, 185, 129, 0);
  }
}

@keyframes flash-down {
  0% {
    background-color: rgba(244, 63, 94, 0.28);
    box-shadow: 0 0 0 1px rgba(244, 63, 94, 0.45), 0 0 24px rgba(244, 63, 94, 0.25);
  }
  100% {
    background-color: rgba(9, 9, 11, 0.8);
    box-shadow: 0 0 0 1px rgba(244, 63, 94, 0);
  }
}

/* ---------- Price alert ---------- */

.alert-card {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--zinc-800);
  background: rgba(9, 9, 11, 0.6);
  padding: 1rem;
  transition: background-color var(--transition-base), border-color var(--transition-base);
}

@media (min-width: 640px) {
  .alert-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.alert-card.triggered {
  border-color: var(--amber-400);
  background: rgba(245, 158, 11, 0.1);
  animation: alert-banner 1s ease-in-out infinite;
}

@keyframes alert-banner {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.alert-left {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
}

.alert-icon {
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.12);
  font-size: 1.05rem;
}

.alert-left .title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--zinc-200);
}

.alert-left .subtitle {
  margin: 0;
  font-size: 11.5px;
  color: var(--zinc-500);
  overflow-wrap: anywhere;
}

.alert-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.input-wrap {
  position: relative;
  flex: 1 1 auto;
}

.input-wrap .prefix {
  pointer-events: none;
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--zinc-500);
}

.input-wrap input {
  width: 100%;
  min-width: 8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--zinc-700);
  background: var(--zinc-900);
  padding: 0.55rem 0.75rem 0.55rem 1.5rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.875rem;
  color: var(--zinc-100);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

@media (min-width: 640px) {
  .input-wrap input {
    width: 9rem;
  }
}

.input-wrap input:focus {
  border-color: var(--fuchsia-600);
  box-shadow: 0 0 0 3px rgba(192, 38, 211, 0.2);
}

.btn {
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.85rem;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.btn-arm {
  background: linear-gradient(135deg, var(--fuchsia-600), var(--violet-600));
  color: #fff;
  box-shadow: 0 10px 25px -8px rgba(112, 26, 117, 0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.btn-arm:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px rgba(112, 26, 117, 0.5);
}
.btn-arm:active {
  transform: translateY(0);
}

.btn-disarm {
  background: rgba(244, 63, 94, 0.1);
  color: var(--rose-400);
  transition: background-color var(--transition-fast);
}
.btn-disarm:hover {
  background: rgba(244, 63, 94, 0.2);
}

/* ---------- Metric cards ---------- */

.metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
}

@media (min-width: 480px) {
  .metrics {
    gap: 0.75rem;
  }
}

@media (min-width: 768px) {
  .metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.metric-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--zinc-800);
  background: rgba(24, 24, 27, 0.5);
  padding: 0.875rem;
  transition: border-color var(--transition-base), transform var(--transition-base);
  min-width: 0;
}

@media (min-width: 480px) {
  .metric-card {
    padding: 1rem;
  }
}

.metric-card:hover {
  border-color: var(--zinc-700);
  transform: translateY(-1px);
}

.metric-card .label {
  margin: 0;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--zinc-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 480px) {
  .metric-card .label {
    font-size: 11px;
  }
}

.metric-card .value {
  margin: 0.375rem 0 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 1rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 480px) {
  .metric-card .value {
    font-size: 1.125rem;
  }
}

@media (min-width: 640px) {
  .metric-card .value {
    font-size: 1.25rem;
  }
}

.metric-card .hint {
  margin: 0.125rem 0 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  color: var(--zinc-600);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-emerald { color: var(--emerald-400); }
.text-rose { color: var(--rose-400); }
.text-cyan { color: var(--cyan-300); }
.text-fuchsia { color: var(--fuchsia-400); }
.text-zinc-200 { color: var(--zinc-200); }

/* ---------- Chart + tape grid ---------- */

.main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .main-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
  }
}

@media (min-width: 1280px) {
  .main-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
  }
}

.chart-col {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.75rem;
}

.panel-height {
  height: 380px;
}

@media (min-width: 480px) {
  .panel-height {
    height: 420px;
  }
}

@media (min-width: 640px) {
  .panel-height {
    height: 480px;
  }
}

@media (min-width: 1024px) {
  .panel-height {
    height: 560px;
  }
}

/* Timeframe selector */

.timeframe-selector {
  display: flex;
  gap: 0.375rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.tf-btn {
  flex-shrink: 0;
  border: 1px solid transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.8rem;
  font-size: 12px;
  font-weight: 600;
  background: var(--zinc-900);
  color: var(--zinc-400);
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
}

.tf-btn:hover {
  background: var(--zinc-800);
  color: var(--zinc-200);
}

.tf-btn.active {
  background: linear-gradient(135deg, var(--fuchsia-600), var(--violet-600));
  color: #fff;
  box-shadow: 0 10px 25px -8px rgba(112, 26, 117, 0.4);
}

/* Chart panel */

.chart-panel {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 320px;
  width: 100%;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--zinc-800);
  background: rgba(9, 9, 11, 0.6);
  padding: 0.75rem;
}

@media (min-width: 640px) {
  .chart-panel {
    padding: 1rem;
  }
}

.chart-panel-header {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.panel-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--zinc-500);
}

.chart-mode-toggle {
  display: flex;
  gap: 0.25rem;
  border-radius: var(--radius-sm);
  background: var(--zinc-900);
  padding: 0.125rem;
  flex-shrink: 0;
}

.chart-mode-toggle button {
  border: none;
  cursor: pointer;
  border-radius: 0.375rem;
  padding: 0.3rem 0.7rem;
  font-size: 11px;
  font-weight: 500;
  background: transparent;
  color: var(--zinc-500);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.chart-mode-toggle button:hover {
  color: var(--zinc-300);
}

.chart-mode-toggle button.active {
  background: var(--zinc-700);
  color: var(--zinc-50);
}

.chart-container {
  min-height: 0;
  flex: 1 1 auto;
}

.chart-loading-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: rgba(9, 9, 11, 0.7);
  font-size: 0.875rem;
  color: var(--zinc-500);
  text-align: center;
  padding: 1rem;
}

/* Trade tape */

.tape-panel {
  display: flex;
  height: 100%;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--zinc-800);
  background: rgba(9, 9, 11, 0.6);
  padding: 0.75rem;
}

@media (min-width: 640px) {
  .tape-panel {
    padding: 1rem;
  }
}

.tape-live {
  font-size: 10px;
  color: var(--zinc-600);
  flex-shrink: 0;
}

.tape-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  border-bottom: 1px solid var(--zinc-800);
  padding-bottom: 0.375rem;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--zinc-600);
}

.tape-columns .right {
  text-align: right;
}

.tape-list {
  flex: 1 1 auto;
  overflow-y: auto;
}

.tape-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(24, 24, 27, 0.6);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.tape-row .qty {
  text-align: right;
  color: var(--zinc-400);
  overflow: hidden;
  text-overflow: ellipsis;
}

.tape-row .time {
  text-align: right;
  color: var(--zinc-600);
}

.tape-empty {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 12px;
  color: var(--zinc-600);
}

/* ---------- Conteúdo SEO ---------- */

.seo-content {
  border-radius: var(--radius-lg);
  border: 1px solid var(--zinc-800);
  background: rgba(24, 24, 27, 0.35);
  padding: 1.25rem;
}

@media (min-width: 640px) {
  .seo-content {
    padding: 1.75rem;
  }
}

.seo-content h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--zinc-100);
  letter-spacing: -0.01em;
}

@media (min-width: 640px) {
  .seo-content h2 {
    font-size: 1.125rem;
  }
}

.seo-content p {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--zinc-400);
  max-width: 76ch;
}

.seo-content p:last-child {
  margin-bottom: 0;
}

.seo-content strong {
  color: var(--zinc-200);
  font-weight: 600;
}

/* Footer */

footer.app-footer {
  margin-top: 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 0 1rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  text-align: center;
  font-size: 11px;
  color: var(--zinc-600);
}

footer.app-footer p {
  margin: 0;
  max-width: 60ch;
}

/* Scrollbar */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--zinc-700);
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--zinc-600);
}

/* Telas muito pequenas (<360px) */
@media (max-width: 359px) {
  .hero-price {
    font-size: 1.85rem;
  }
  .status-group {
    gap: 0.375rem;
  }
  .status-pill {
    font-size: 10px;
    padding: 0.25rem 0.55rem;
  }
}

/* Reduz movimento para quem preferir */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
