/* ═══════════════════════════════════════
   TORQUEBYTE — Dual Core Experience
   ═══════════════════════════════════════ */

:root {
  --void: #050508;
  --auto: #ff6b35;
  --auto-glow: rgba(255, 107, 53, 0.4);
  --auto-dark: #1a0a00;
  --it: #00e5ff;
  --it-glow: rgba(0, 229, 255, 0.35);
  --it-dark: #000a12;
  --text: #f0f2f5;
  --muted: #6b7280;
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--void);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; }

.desktop-only { display: block; }
.mobile-only { display: none; }

/* ── Grain & Cursor ── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: background 0.4s ease;
  background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);
  mix-blend-mode: screen;
}

body.zone-it .cursor-glow {
  background: radial-gradient(circle, rgba(0,229,255,0.08) 0%, transparent 70%);
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  mix-blend-mode: difference;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
}

.logo-mark img { height: 32px; }
.logo-byte { color: var(--it); }

.site-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.site-nav a:hover { opacity: 1; }

.nav-cta {
  padding: 0.5rem 1.25rem !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  border-radius: 100px;
  opacity: 1 !important;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
}

/* ═══ SPLIT HERO ═══ */
.split-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.split-layer {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.05s linear;
}

.split-it {
  clip-path: inset(0 0 0 50%);
}

.split-auto {
  background: var(--auto-dark);
  background-image:
    radial-gradient(ellipse 80% 60% at 30% 70%, rgba(255,107,53,0.15) 0%, transparent 60%);
}

.split-it {
  background: var(--it-dark);
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(0,229,255,0.12) 0%, transparent 60%);
}

#matrix-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.road-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(255,107,53,0.06) 80px,
    rgba(255,107,53,0.06) 81px
  );
  animation: roadScroll 8s linear infinite;
}

@keyframes roadScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-81px); }
}

.split-content {
  position: absolute;
  bottom: 15%;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.split-content-left { left: 3rem; text-align: left; }
.split-content-right { right: 3rem; text-align: right; }

.split-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 0.75rem;
}

.split-auto .split-tag { color: var(--auto); }
.split-it .split-tag { color: var(--it); }

.split-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.split-content h2 em {
  font-style: normal;
  opacity: 0.6;
  font-weight: 500;
}

.split-content p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.split-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

.divider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, #fff 20%, #fff 80%, transparent);
  box-shadow: 0 0 20px rgba(255,255,255,0.5), 0 0 60px rgba(255,255,255,0.2);
}

.divider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--void);
  border: 2px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(255,255,255,0.3);
}

.divider-handle img { width: 32px; height: 32px; }

.split-center {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.center-logo {
  width: clamp(80px, 12vw, 120px);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 30px rgba(255,255,255,0.2));
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.center-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.title-torque { color: var(--auto); text-shadow: 0 0 40px var(--auto-glow); }
.title-byte { color: var(--it); text-shadow: 0 0 40px var(--it-glow); }

.center-sub {
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}

.center-hint {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.15em;
  animation: hintPulse 2s ease-in-out infinite;
}

@keyframes hintPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.center-actions {
  display: flex;
  gap: 1rem;
  pointer-events: all;
}

.pill {
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.pill-auto {
  background: rgba(255,107,53,0.2);
  border: 1px solid var(--auto);
  color: var(--auto);
}

.pill-it {
  background: rgba(0,229,255,0.1);
  border: 1px solid var(--it);
  color: var(--it);
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-cue span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--muted), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ═══ WORLDS ═══ */
.world {
  position: relative;
  min-height: 100vh;
  padding: 8rem 2.5rem 6rem;
  overflow: hidden;
}

.world-auto {
  background: var(--void);
  border-top: 1px solid rgba(255,107,53,0.15);
}

.world-it {
  background: #030308;
  border-top: 1px solid rgba(0,229,255,0.15);
}

.world-bg {
  position: absolute;
  top: 2rem;
  right: 2rem;
  opacity: 0.15;
  pointer-events: none;
}

.tacho { width: min(400px, 40vw); }

.tacho-arc {
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  animation: tachoFill 3s ease-out forwards;
}

@keyframes tachoFill {
  to { stroke-dashoffset: 88; }
}

.tacho-needle {
  transform-origin: 200px 180px;
  animation: needleSwing 4s ease-in-out infinite alternate;
}

@keyframes needleSwing {
  from { transform: rotate(-60deg); }
  to { transform: rotate(30deg); }
}

.world-bg-it { right: auto; left: 2rem; }

.code-rain {
  width: 300px;
  height: 400px;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 20px,
    rgba(0,229,255,0.03) 20px,
    rgba(0,229,255,0.03) 21px
  );
  font-family: var(--font-mono);
}

.world-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.world-header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 4rem;
}

.world-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.08;
}

.world-auto .world-num { color: var(--auto); }
.world-it .world-num { color: var(--it); }

.world-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.label-auto { color: var(--auto); }
.label-it { color: var(--it); }

.world-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
}

.world-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

.world-grid-reverse { direction: rtl; }
.world-grid-reverse > * { direction: ltr; }

.world-lead {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.world-lead a {
  color: var(--auto);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.spec-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.spec-card {
  padding: 1.5rem;
  border-left: 3px solid var(--auto);
  background: rgba(255,107,53,0.04);
  transition: background 0.3s, transform 0.3s;
}

.spec-card:hover {
  background: rgba(255,107,53,0.08);
  transform: translateX(4px);
}

.spec-card-it {
  border-left-color: var(--it);
  background: rgba(0,229,255,0.03);
}

.spec-card-it:hover {
  background: rgba(0,229,255,0.07);
}

.spec-code {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--auto);
  display: block;
  margin-bottom: 0.5rem;
}

.spec-card-it .spec-code { color: var(--it); }

.spec-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.spec-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.world-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  transition: all 0.3s;
  cursor: none;
}

.cta-auto {
  color: var(--auto);
  border: 1px solid var(--auto);
  background: rgba(255,107,53,0.08);
}

.cta-auto:hover {
  background: var(--auto);
  color: var(--void);
  box-shadow: 0 0 40px var(--auto-glow);
}

.cta-it {
  color: var(--it);
  border: 1px solid var(--it);
  background: rgba(0,229,255,0.06);
}

.cta-it:hover {
  background: var(--it);
  color: var(--void);
  box-shadow: 0 0 40px var(--it-glow);
}

/* HUD Panel */
.hud-panel {
  background: rgba(255,107,53,0.05);
  border: 1px solid rgba(255,107,53,0.2);
  padding: 2rem;
  font-family: var(--font-mono);
}

.hud-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,107,53,0.1);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.hud-row span:first-child { color: var(--muted); }
.hud-val { color: var(--auto); font-weight: 700; }
.hud-ok { color: #4ade80; }

.hud-bar {
  height: 4px;
  background: rgba(255,107,53,0.15);
  margin-top: 1.5rem;
  border-radius: 2px;
  overflow: hidden;
}

.hud-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--auto), #ff0040);
  border-radius: 2px;
  transition: width 0.1s;
}

.hud-bar-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

/* Terminal */
.terminal {
  background: #0a0a0f;
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0,229,255,0.05);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1rem;
  background: rgba(0,229,255,0.05);
  border-bottom: 1px solid rgba(0,229,255,0.1);
}

.terminal-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.terminal-bar span:first-child { background: #ff5f57; }
.terminal-bar span:nth-child(2) { background: #febc2e; }
.terminal-bar span:nth-child(3) { background: #28c840; }

.terminal-bar code {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
}

.terminal-body {
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.8;
}

.t-prompt { color: var(--it); }
.t-success { color: #4ade80; }
.t-dim { color: var(--muted); }

.t-cursor {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* ═══ NEXUS ═══ */
.nexus {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  overflow: hidden;
}

.nexus-split {
  position: absolute;
  inset: 0;
  display: flex;
}

.nexus-half { flex: 1; }
.nexus-auto { background: linear-gradient(135deg, var(--auto-dark) 0%, var(--void) 100%); }
.nexus-it { background: linear-gradient(225deg, var(--it-dark) 0%, var(--void) 100%); }

.nexus-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 560px;
  padding: 3rem;
  background: rgba(5,5,8,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
}

.nexus-content img {
  width: 72px;
  margin-bottom: 1.5rem;
}

.nexus-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.nexus-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.nexus-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nexus-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

.nexus-link:hover { opacity: 0.7; }
.nexus-link-auto { color: var(--auto); }
.nexus-link-it { color: var(--it); }

/* ═══ CONTACT ═══ */
.contact {
  padding: 6rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-inner { max-width: 600px; margin: 0 auto; }

.contact h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-email {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4vw, 2rem);
  color: var(--text);
  text-decoration: none;
  margin-bottom: 3rem;
  transition: color 0.3s;
}

.contact-email:hover {
  background: linear-gradient(90deg, var(--auto), var(--it));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-split {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}

.contact-zone {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-zone span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.contact-zone a {
  font-size: 0.95rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-zone a:hover { opacity: 0.7; }

.contact-zone-auto { background: rgba(255,107,53,0.05); }
.contact-zone-auto a { color: var(--auto); }
.contact-zone-it { background: rgba(0,229,255,0.04); }
.contact-zone-it a { color: var(--it); }

.contact-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
}

footer {
  padding: 2rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor-glow { display: none; }

  .site-nav {
    display: none;
    position: fixed;
    inset: 0;
    top: 0;
    background: rgba(5,5,8,0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 300;
  }

  .site-nav.open { display: flex; }
  .site-nav a { font-size: 1rem; }
  .menu-btn { display: flex; z-index: 301; }

  .desktop-only { display: none; }
  .mobile-only { display: flex; }

  .split-hero {
    height: 100dvh;
    height: 100svh;
    min-height: -webkit-fill-available;
  }

  .split-layer { clip-path: inset(0 0 50% 0) !important; }
  .split-it { clip-path: inset(50% 0 0 0) !important; }

  .split-divider {
    top: 50%;
    left: 0;
    right: 0;
    bottom: auto;
    height: 2px;
    width: 100%;
    transform: none;
  }

  .divider-line {
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
  }

  .divider-handle { display: none; }

  /* Etiquetas nos cantos — fora do bloco central */
  .split-content {
    opacity: 0.85;
    max-width: calc(50% - 1rem);
  }

  .split-content h2 {
    font-size: clamp(0.85rem, 3.5vw, 1.1rem);
    margin-bottom: 0.25rem;
  }

  .split-content p {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }

  .split-tag {
    font-size: 0.6rem;
    margin-bottom: 0.35rem;
  }

  .split-content-left {
    top: calc(4.5rem + env(safe-area-inset-top, 0px));
    bottom: auto;
    left: 1rem;
    right: auto;
    text-align: left;
  }

  .split-content-right {
    top: auto;
    bottom: calc(3.5rem + env(safe-area-inset-bottom, 0px));
    left: auto;
    right: 1rem;
    text-align: right;
  }

  .split-center {
    padding: calc(4.5rem + env(safe-area-inset-top, 0px)) 1rem calc(3rem + env(safe-area-inset-bottom, 0px));
    justify-content: center;
    gap: 0;
  }

  .center-logo {
    width: clamp(56px, 14vw, 72px);
    margin-bottom: 0.75rem;
  }

  .center-title {
    font-size: clamp(1.6rem, 9vw, 2.25rem);
    margin-bottom: 0.5rem;
  }

  .center-sub {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
  }

  .center-actions {
    flex-direction: column;
    width: min(100%, 260px);
    gap: 0.65rem;
  }

  .pill {
    width: 100%;
    text-align: center;
    padding: 0.65rem 1rem;
    font-size: 0.7rem;
  }

  .scroll-cue {
    bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  }

  .scroll-line { height: 28px; }

  .world { padding: 6rem 1.5rem 4rem; }
  .world-grid { grid-template-columns: 1fr; gap: 2rem; }
  .world-grid-reverse { direction: ltr; }
  .world-num { font-size: 3rem; }
  .world-bg { opacity: 0.08; }

  .contact-split { flex-direction: column; }
  .contact-divider { width: 100%; height: 1px; }

  .site-header {
    padding: calc(1rem + env(safe-area-inset-top, 0px)) calc(1.25rem + env(safe-area-inset-right, 0px)) 1rem calc(1.25rem + env(safe-area-inset-left, 0px));
  }
}

@media (max-width: 900px) and (max-height: 740px) {
  .center-logo {
    width: 48px;
    margin-bottom: 0.5rem;
  }

  .center-title { font-size: 1.45rem; }

  .center-sub {
    margin-bottom: 0.85rem;
    font-size: 0.6rem;
  }

  .split-content h2 { font-size: 0.8rem; }

  .split-content-left { top: calc(3.75rem + env(safe-area-inset-top, 0px)); }

  .split-content-right { bottom: calc(2.75rem + env(safe-area-inset-bottom, 0px)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
