/* =====================================================
   WOLF RECORDS — FULL CSS (100% COVERAGE / LIGHT PRO)
   Respeta TU HTML exacto y TU :root
   Logo B/N OK
===================================================== */

/* =====================================================
   0) TOKENS (TU ROOT — SIN TOCAR)
===================================================== */
:root{
  --bg:#f4f1ec;
  --bg-soft:#ebe6de;
  --bg-elev:#e2dbd0;

  --ink:#121212;
  --ink-soft:#2a2a2a;
  --ink-muted:#6b6b6b;

  --accent:#c6a574;
  --accent-strong:#b8945c;
}

/* Tokens internos (no cambian tu paleta) */
:root{
  --panel:rgba(255,255,255,.72);
  --panel-2:rgba(255,255,255,.86);
  --stroke:rgba(18,18,18,.12);
  --stroke-soft:rgba(18,18,18,.08);
  --shadow:0 18px 60px rgba(18,18,18,.12);
  --shadow-strong:0 28px 90px rgba(18,18,18,.16);
  --radius:22px;
}

/* =====================================================
   1) RESET / BASE
===================================================== */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
  color:var(--ink);
  background:var(--bg);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input{font:inherit}
button{
  appearance:none;
  -webkit-appearance:none;
  border:0;
  background:none;
  cursor:pointer;
}
:focus-visible{
  outline:2px solid rgba(198,165,116,.75);
  outline-offset:3px;
  border-radius:12px;
}
::selection{
  background:rgba(198,165,116,.30);
}

/* =====================================================
   2) LAYOUT
===================================================== */
.wrap{
  max-width:1200px;
  margin:0 auto;
  padding:120px 24px 180px;
}
@media (max-width:520px){
  .wrap{padding:110px 18px 190px}
}

/* =====================================================
   3) AMBIENT (LIGHT)
===================================================== */
.ambient{position:fixed;inset:0;z-index:-1}
#bgCanvas{width:100%;height:100%;display:block}

.grain{
  position:absolute;inset:0;
  opacity:.07;
  pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode:multiply;
}

.vignette{
  position:absolute;inset:-12%;
  pointer-events:none;
  background:
    radial-gradient(70% 70% at 50% 35%, rgba(244,241,236,0) 45%, rgba(244,241,236,.92) 100%);
}

/* =====================================================
   4) TOPBAR
===================================================== */
.topbar{
  position:fixed;
  top:0;left:0;right:0;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 20px;
  background:linear-gradient(180deg, rgba(244,241,236,.96), rgba(244,241,236,0));
  backdrop-filter:blur(10px);
}

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

.brand-logo{
  width:38px;
  height:38px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
}

.brand-logo svg,
.brand-logo img{
  width:100%;
  height:100%;
  display:block;
}

/* Logo B/N: no filtros raros */
.brand-logo svg image{image-rendering:auto}

.brand-name{
  font-weight:700;
  letter-spacing:-.02em;
  white-space:nowrap;
}

.nav{
  display:flex;
  gap:22px;
}

.nav a{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(18,18,18,.55);
  padding:8px 0;
  position:relative;
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;
  height:2px;
  background:linear-gradient(90deg, rgba(198,165,116,.85), rgba(198,165,116,0));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .18s ease;
}

.nav a:hover{color:rgba(18,18,18,.9)}
.nav a:hover::after{transform:scaleX(1)}

.pill{
  font-size:12px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:var(--panel);
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
  white-space:nowrap;
}

.pill:hover{
  transform:translateY(-1px);
  background:var(--panel-2);
  border-color:rgba(198,165,116,.55);
}

@media (max-width:700px){
  .nav{display:none}
}

/* =====================================================
   5) HERO
===================================================== */
.hero{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:48px;
  align-items:center;
  min-height:85vh;
}

.hero-left,.hero-right{position:relative}

@media (max-width:980px){
  .hero{grid-template-columns:1fr;min-height:auto;gap:26px}
  .hero-right{justify-content:flex-start}
}

.kicker{
  margin:0 0 18px;
  font-size:11px;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:rgba(18,18,18,.45);
}

.hero h1{
  margin:0 0 20px;
  font-size:clamp(44px,6vw,84px);
  line-height:.98;
  letter-spacing:-.045em;
}

.accent{
  background:linear-gradient(90deg,var(--accent),#e7d5b5);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.lead{
  margin:0;
  max-width:620px;
  font-size:17px;
  line-height:1.65;
  color:rgba(18,18,18,.62);
}

.hero-cta{
  display:flex;
  gap:14px;
  margin-top:26px;
  flex-wrap:wrap;
}

.btn{
  padding:12px 18px;
  border-radius:16px;
  border:1px solid var(--stroke);
  background:var(--panel);
  font-weight:650;
  transition:transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.btn:hover{
  transform:translateY(-2px);
  background:var(--panel-2);
  border-color:rgba(198,165,116,.55);
  box-shadow:var(--shadow);
}

.btn.primary{
  background:linear-gradient(135deg, rgba(198,165,116,.92), rgba(255,255,255,.65));
  border-color:rgba(198,165,116,.55);
}

.btn.ghost{
  background:rgba(255,255,255,.58);
}

.hero-meta{
  margin-top:22px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.meta-chip{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  background:var(--panel);
  border:1px solid var(--stroke-soft);
  font-size:13px;
  color:rgba(18,18,18,.6);
}

.dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--accent-strong);
  box-shadow:0 0 0 6px rgba(198,165,116,.14);
}

.inline{
  text-decoration:underline;
  text-decoration-color:rgba(198,165,116,.55);
  text-underline-offset:3px;
}

.sep{opacity:.65;margin:0 6px}

/* =====================================================
   6) POSTER (HERO RIGHT)
===================================================== */
.hero-right{
  display:flex;
  justify-content:flex-end;
}

.poster{
  width:min(520px,100%);
  position:relative;
  border-radius:28px;
  padding:22px;
  background:
    radial-gradient(900px 420px at 20% 0%, rgba(198,165,116,.20), transparent 60%),
    var(--panel);
  border:1px solid var(--stroke);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.poster-inner{
  display:flex;
  flex-direction:column;
  gap:0;
  position:relative;
  z-index:2;
}

.poster-glow{
  position:absolute;inset:-1px;
  pointer-events:none;
  z-index:1;
  background:
    radial-gradient(700px 260px at 22% 10%, rgba(198,165,116,.14), transparent 60%),
    radial-gradient(700px 260px at 85% 80%, rgba(0,0,0,.06), transparent 65%);
}

.poster-tag{
  display:inline-flex;
  align-self:flex-start;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.65);
  border:1px solid var(--stroke-soft);
  color:rgba(18,18,18,.55);
}

.poster-title{
  margin:18px 0 6px;
  font-size:22px;
  font-weight:800;
  letter-spacing:-.02em;
}

.poster-sub{
  font-size:13px;
  color:rgba(18,18,18,.55);
}

.poster-cover{
  margin-top:18px;
  height:320px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--stroke-soft);
  background:linear-gradient(180deg,#efe7dc,#ded4c5);
  position:relative;
  display:grid;
  place-items:center;
}

@media (max-width:520px){
  .poster-cover{height:260px}
}

/* La imagen real del track (si existe) */
.poster-cover img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity .2s ease, transform .6s ease;
}
.poster:hover .poster-cover img{transform:scale(1.02)}

/* Fallback HC */
.cover-fallback{
  position:absolute;inset:0;
  display:grid;
  place-items:center;
  text-align:center;
  padding:26px;
}

.sig{
  font-size:64px;
  font-weight:900;
  letter-spacing:-.06em;
}

.sig-sub{
  margin-top:8px;
  color:rgba(18,18,18,.55);
}

.poster-actions{
  margin-top:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.icon-btn{
  width:46px;height:46px;
  border-radius:16px;
  background:rgba(255,255,255,.65);
  border:1px solid var(--stroke);
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}

.icon-btn:hover{
  transform:translateY(-2px);
  background:var(--panel-2);
  border-color:rgba(198,165,116,.55);
}

.tiny{
  font-size:12px;
  color:rgba(18,18,18,.55);
  white-space:nowrap;
}

/* =====================================================
   7) SECTIONS (HEAD / ACTIONS / FILTER / SEARCH)
===================================================== */
.section{margin-top:90px}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.section-head h2{
  margin:0;
  font-size:13px;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:rgba(18,18,18,.55);
}

.section-actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.muted{color:rgba(18,18,18,.55)}

.segmented{
  display:flex;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--stroke);
  background:var(--panel);
}

.seg{
  padding:10px 12px;
  font-size:12px;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-weight:700;
  color:rgba(18,18,18,.55);
  transition:background .18s ease, color .18s ease;
}

.seg:hover{
  background:rgba(198,165,116,.16);
  color:rgba(18,18,18,.9);
}

.seg.active{
  background:rgba(198,165,116,.24);
  color:rgba(18,18,18,.95);
}

.search{position:relative}

.search input{
  width:min(260px,72vw);
  padding:11px 12px;
  border-radius:16px;
  border:1px solid var(--stroke);
  background:var(--panel);
  color:rgba(18,18,18,.92);
  outline:none;
}

.search input::placeholder{
  color:rgba(18,18,18,.45);
}

/* =====================================================
   8) TRACKS GRID + MICRO ELEMENTS
===================================================== */
.tracks{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:18px;
}

.track{
  padding:18px 18px 16px;
  border-radius:22px;
  background:var(--panel);
  border:1px solid var(--stroke);
  transition:transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  cursor:pointer;
}

.track:hover{
  transform:translateY(-2px);
  background:var(--panel-2);
  border-color:rgba(198,165,116,.55);
  box-shadow:var(--shadow);
}

.track-title{
  font-weight:850;
  font-size:16px;
  letter-spacing:-.01em;
}

.track-sub{
  margin-top:4px;
  font-size:12px;
  color:rgba(18,18,18,.55);
}

.track-row{
  margin-top:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.badge{
  display:inline-flex;
  align-items:center;
  white-space:nowrap;
  font-size:11px;
  letter-spacing:.10em;
  text-transform:uppercase;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.65);
  border:1px solid var(--stroke-soft);
  color:rgba(18,18,18,.55);
}

.pulse{
  width:10px;height:10px;border-radius:50%;
  background:rgba(18,18,18,.18);
}

.pulse.on{
  background:rgba(198,165,116,.95);
  box-shadow:0 0 0 6px rgba(198,165,116,.14);
}

/* =====================================================
   9) ARTISTS GRID + DETAILS
===================================================== */
.artists{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:18px;
  margin-top:18px;
}

.artist-card{
  text-align:left;
  padding:22px;
  border-radius:26px;
  background:var(--panel);
  border:1px solid var(--stroke);
  transition:transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.artist-card:hover{
  transform:translateY(-2px);
  background:var(--panel-2);
  border-color:rgba(198,165,116,.55);
  box-shadow:var(--shadow);
}

.artist-card.disabled{
  opacity:.55;
  cursor:not-allowed;
}

.artist-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
}

.artist-name{
  font-size:20px;
  font-weight:900;
  letter-spacing:-.02em;
}

.artist-pill{
  flex:0 0 auto;
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--stroke-soft);
  background:rgba(255,255,255,.65);
  color:rgba(18,18,18,.55);
}

.artist-desc{
  margin-top:12px;
  color:rgba(18,18,18,.62);
  line-height:1.6;
}

.artist-links{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.artist-link{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--stroke-soft);
  background:rgba(255,255,255,.62);
  color:rgba(18,18,18,.65);
}

.artist-link.disabled{opacity:.55}

/* =====================================================
   10) PITCH
===================================================== */
.pitch{margin-top:80px}

.pitch-card{
  max-width:960px;
  margin:0 auto;
  padding:28px;
  border-radius:28px;
  background:var(--panel);
  border:1px solid var(--stroke);
  box-shadow:var(--shadow);
}

.pitch-card h3{
  margin:0 0 10px;
  font-size:26px;
  letter-spacing:-.02em;
  line-height:1.15;
}

.pitch-card p{
  margin:0 0 16px;
  color:rgba(18,18,18,.62);
  line-height:1.7;
}

.pitch-cta{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:10px;
}

.fine{
  margin-top:14px;
  font-size:12px;
  color:rgba(18,18,18,.52);
}

/* =====================================================
   11) FOOTER
===================================================== */
.footer{
  margin-top:90px;
  padding-top:26px;
  border-top:1px solid var(--stroke);
  color:rgba(18,18,18,.55);
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.footer span{font-size:13px}

/* =====================================================
   12) DOCK (PLAYER) — TODO CUBIERTO
===================================================== */
.dock{
  position:fixed;
  left:16px;right:16px;bottom:16px;
  z-index:80;
  padding:14px;
  border-radius:28px;
  background:rgba(255,255,255,.82);
  border:1px solid var(--stroke);
  backdrop-filter:blur(12px);
  box-shadow:var(--shadow-strong);

  display:grid;
  grid-template-columns:1fr 1.6fr 1fr;
  gap:14px;
}

.dock-left{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.dock-cover{
  width:48px;height:48px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--stroke-soft);
  background:rgba(255,255,255,.65);
  position:relative;
  flex:0 0 auto;
}

.dock-cover img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:none; /* JS lo puede activar */
}

.dock-fallback{
  position:absolute;inset:0;
  display:grid;
  place-items:center;
  font-weight:900;
  letter-spacing:-.04em;
  color:rgba(18,18,18,.72);
}

.dock-meta{min-width:0}
.dock-meta strong{
  display:block;
  font-weight:850;
  font-size:14px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.dock-meta span{
  display:block;
  font-size:12px;
  color:rgba(18,18,18,.55);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.dock-center{
  display:flex;
  flex-direction:column;
  gap:8px;
  align-items:center;
  min-width:0;
}

.dock-controls{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.dock-btn{
  width:44px;height:44px;
  border-radius:18px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.65);
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
  color:rgba(18,18,18,.85);
}

.dock-btn:hover{
  transform:translateY(-1px);
  background:var(--panel-2);
  border-color:rgba(198,165,116,.55);
}

.dock-btn.big{
  width:58px;height:46px;
  border-radius:18px;
  background:rgba(18,18,18,.92);
  color:#fff;
  border-color:rgba(18,18,18,.2);
}

.dock-bar{
  width:100%;
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}

.time{
  width:46px;
  text-align:center;
  font-size:12px;
  color:rgba(18,18,18,.55);
  flex:0 0 auto;
}

#seek{
  width:100%;
  appearance:none;
  -webkit-appearance:none;
  height:4px;
  border-radius:999px;
  background:rgba(18,18,18,.18);
  outline:none;
}

#seek::-webkit-slider-thumb{
  -webkit-appearance:none;
  appearance:none;
  width:14px;height:14px;border-radius:50%;
  background:#fff;
  border:2px solid rgba(198,165,116,.75);
  box-shadow:0 6px 18px rgba(18,18,18,.18);
}

#seek::-moz-range-thumb{
  width:14px;height:14px;border-radius:50%;
  background:#fff;
  border:2px solid rgba(198,165,116,.75);
}

#viz{
  width:100%;
  height:48px;
  border-radius:16px;
  background:rgba(255,255,255,.55);
  border:1px solid var(--stroke-soft);
  pointer-events:none;
}

.dock-right{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:10px;
  min-width:0;
}

.dock-chip{
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.65);
  font-size:12px;
  font-weight:700;
  color:rgba(18,18,18,.72);
  white-space:nowrap;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}

.dock-chip:hover{
  transform:translateY(-1px);
  background:var(--panel-2);
  border-color:rgba(198,165,116,.55);
}

@media (max-width:980px){
  .dock{grid-template-columns:1fr;gap:12px}
  .dock-right{justify-content:flex-start;flex-wrap:wrap}
}

/* =====================================================
   13) MODAL (ARTIST) — TODO CUBIERTO
===================================================== */
.modal{
  position:fixed;
  inset:0;
  z-index:120;
  padding:24px;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(244,241,236,.82);
  backdrop-filter:blur(12px);
}

.modal[aria-hidden="true"]{display:none}
.modal[aria-hidden="false"]{display:flex}

.modal-card{
  width:min(960px,100%);
  border-radius:28px;
  border:1px solid var(--stroke);
  background:
    radial-gradient(900px 420px at 18% 0%, rgba(198,165,116,.18), transparent 60%),
    rgba(255,255,255,.92);
  box-shadow:var(--shadow-strong);
  padding:22px;
  position:relative;
}

.modal-close{
  position:absolute;
  top:16px;
  right:16px;
  width:44px;height:44px;
  border-radius:16px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.70);
  font-size:24px;
  line-height:1;
  display:grid;
  place-items:center;
  color:rgba(18,18,18,.75);
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}

.modal-close:hover{
  transform:translateY(-1px);
  background:var(--panel-2);
  border-color:rgba(198,165,116,.55);
}

.modal-head{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  align-items:flex-start;
}

.modal-head h3{
  margin:0 0 8px;
  font-size:30px;
  letter-spacing:-.02em;
}

.modal-head p{
  margin:0;
  max-width:520px;
}

.modal-badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:flex-start;
}

.modal-grid{
  margin-top:16px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

@media (max-width:820px){
  .modal-grid{grid-template-columns:1fr}
}

.modal-block{
  padding:16px;
  border-radius:18px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.78);
}

.modal-block.full{grid-column:1/-1}

.modal-block h4{
  margin:0 0 10px;
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(18,18,18,.55);
}

.modal-block p{
  margin:0;
  color:rgba(18,18,18,.62);
  line-height:1.7;
}

.pill-grid{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.pill-link{
  display:inline-flex;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.70);
  font-size:13px;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}

.pill-link:hover{
  transform:translateY(-1px);
  background:var(--panel-2);
  border-color:rgba(198,165,116,.55);
}

.pill-link.disabled{
  opacity:.55;
  cursor:default;
}

.mini-tracks{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:12px;
}

.mini-track{
  padding:12px;
  border-radius:16px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.72);
  cursor:pointer;
  transition:background .18s ease, border-color .18s ease, transform .18s ease;
}

.mini-track:hover{
  transform:translateY(-1px);
  background:var(--panel-2);
  border-color:rgba(198,165,116,.55);
}

.mini-track strong{
  display:block;
  font-weight:850;
  font-size:14px;
}

.mini-track span{
  display:block;
  margin-top:4px;
  font-size:12px;
  color:rgba(18,18,18,.55);
}

/* =====================================================
   14) REVEAL (SI LO USAS EN JS)
===================================================== */
.reveal{opacity:0;transform:translateY(10px);transition:.6s ease}
.reveal.in{opacity:1;transform:translateY(0)}

/* =====================================================
   15) REDUCED MOTION
===================================================== */
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *{transition:none !important}
}