/* rutycuy.com — hlavny.css — Matrix #12 Cyberpunk Minimalism */

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --clr-black: #0a0a0a;
  --clr-white: #f5f5f5;
  --clr-neon: #39ff14;
  --clr-neon-dim: rgba(57,255,20,0.15);
  --clr-neon-mid: rgba(57,255,20,0.4);
  --clr-surface: #111111;
  --clr-border: rgba(57,255,20,0.25);
  --font-mono: 'Courier New', Courier, monospace;
  --nav-w: 64px;
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--clr-black);
  color: var(--clr-white);
  font-family: var(--font-mono);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--clr-neon);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* ═══════════════════════════════════════════
   CSS GRID BACKGROUND PATTERN
═══════════════════════════════════════════ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(57,255,20,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,20,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   ICON-ONLY NAV — .b10
═══════════════════════════════════════════ */
.b10 {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: var(--nav-w);
  background: #0d0d0d;
  border-right: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0;
  z-index: 1000;
  gap: 8px;
}

.b10__logo {
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  border: 1px solid var(--clr-neon);
  padding: 4px;
}

.b10__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid transparent;
  color: var(--clr-white);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.b10__item:hover,
.b10__item.active {
  border-color: var(--clr-neon);
  color: var(--clr-neon);
  background: var(--clr-neon-dim);
  text-decoration: none;
}

.b10__item svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

/* Tooltip */
.b10__item::after {
  content: attr(data-tip);
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: var(--clr-surface);
  border: 1px solid var(--clr-neon);
  color: var(--clr-neon);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 2000;
}

.b10__item:hover::after {
  opacity: 1;
}

.b10__divider {
  width: 24px;
  height: 1px;
  background: var(--clr-border);
  margin: 8px 0;
}

/* ═══════════════════════════════════════════
   PAGE WRAPPER
═══════════════════════════════════════════ */
.b11 {
  margin-left: var(--nav-w);
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════
   HERO — .b12 (fullscreen parallax CSS)
═══════════════════════════════════════════ */
.b12 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--clr-border);
}

.b12__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.b12__bg-img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  opacity: 0.18;
  transform: translateY(0);
  transition: transform 0.1s linear;
}

.b12__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 50%, rgba(57,255,20,0.04) 100%);
  z-index: 1;
}

.b12__scan {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.08) 3px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
}

.b12__content {
  position: relative;
  z-index: 3;
  padding: 80px 64px;
  max-width: 900px;
}

.b12__eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-neon);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.b12__eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--clr-neon);
}

.b12__title {
  font-family: var(--font-mono);
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--clr-white);
  margin-bottom: 28px;
}

.b12__title em {
  color: var(--clr-neon);
  font-style: normal;
  text-shadow: 0 0 20px rgba(57,255,20,0.5);
}

.b12__sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245,245,245,0.65);
  max-width: 560px;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.b12__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.b12__cta {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--clr-neon);
  color: var(--clr-black);
  background: var(--clr-neon);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.b12__cta:hover {
  background: transparent;
  color: var(--clr-neon);
  text-decoration: none;
  box-shadow: 0 0 20px rgba(57,255,20,0.3);
}

.b12__cta--ghost {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(245,245,245,0.3);
}

.b12__cta--ghost:hover {
  border-color: var(--clr-white);
  color: var(--clr-white);
  box-shadow: none;
}

/* ═══════════════════════════════════════════
   ASCII DIVIDER
═══════════════════════════════════════════ */
.e10 {
  text-align: center;
  padding: 24px 64px;
  color: var(--clr-neon-mid);
  font-size: 11px;
  letter-spacing: 0.1em;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

/* ═══════════════════════════════════════════
   NUMBERED SERVICES LIST — .w10
═══════════════════════════════════════════ */
.w10 {
  padding: 96px 64px;
  border-bottom: 1px solid var(--clr-border);
}

.w10__label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-neon);
  margin-bottom: 64px;
}

.w10__list {
  list-style: none;
  display: grid;
  gap: 0;
}

.w10__item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid var(--clr-border);
  transition: var(--transition);
  cursor: default;
}

.w10__item:hover {
  background: var(--clr-neon-dim);
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 -16px;
}

.w10__num {
  font-size: 56px;
  font-weight: 700;
  color: var(--clr-neon);
  line-height: 1;
  opacity: 0.4;
  font-family: var(--font-mono);
  transition: var(--transition);
}

.w10__item:hover .w10__num {
  opacity: 1;
}

.w10__body h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.w10__body p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(245,245,245,0.55);
  max-width: 520px;
}

.w10__arrow {
  font-size: 24px;
  color: var(--clr-border);
  align-self: center;
  transition: var(--transition);
}

.w10__item:hover .w10__arrow {
  color: var(--clr-neon);
  transform: translateX(8px);
}

/* ═══════════════════════════════════════════
   COUNTER + FORM BLOCK — .w11
═══════════════════════════════════════════ */
.w11 {
  padding: 96px 64px;
  border-bottom: 1px solid var(--clr-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.w11__counters {
  display: grid;
  gap: 48px;
}

.w11__label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-neon);
  margin-bottom: 48px;
}

.w11__stat {
  border-left: 2px solid var(--clr-neon);
  padding-left: 24px;
}

.w11__num {
  font-size: 52px;
  font-weight: 700;
  color: var(--clr-neon);
  line-height: 1;
  font-family: var(--font-mono);
  text-shadow: 0 0 20px rgba(57,255,20,0.3);
}

.w11__desc {
  font-size: 13px;
  color: rgba(245,245,245,0.5);
  margin-top: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* FORM */
.w11__form-wrap {
  border: 1px solid var(--clr-border);
  padding: 40px;
  background: #0d0d0d;
}

.w11__form-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.w11__form-sub {
  font-size: 12px;
  color: rgba(245,245,245,0.4);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}

.w11__field {
  margin-bottom: 20px;
}

.w11__field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-neon);
  margin-bottom: 8px;
}

.w11__field input,
.w11__field textarea,
.w11__field select {
  width: 100%;
  background: var(--clr-black);
  border: 1px solid rgba(57,255,20,0.2);
  color: var(--clr-white);
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}

.w11__field input:focus,
.w11__field textarea:focus,
.w11__field select:focus {
  border-color: var(--clr-neon);
  box-shadow: 0 0 8px rgba(57,255,20,0.15);
}

.w11__field input.invalid,
.w11__field textarea.invalid {
  border-color: #ff3a3a;
}

.w11__field textarea {
  resize: vertical;
  min-height: 100px;
}

.w11__field--error {
  font-size: 10px;
  color: #ff3a3a;
  margin-top: 4px;
  display: none;
}

.w11__field--error.show {
  display: block;
}

.w11__submit {
  width: 100%;
  padding: 14px;
  background: var(--clr-neon);
  border: none;
  color: var(--clr-black);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}

.w11__submit:hover {
  background: transparent;
  color: var(--clr-neon);
  border: 1px solid var(--clr-neon);
  box-shadow: 0 0 16px rgba(57,255,20,0.2);
}

/* ═══════════════════════════════════════════
   CASE STUDIES — HORIZONTAL SCROLL SNAP — .e11
═══════════════════════════════════════════ */
.e11 {
  padding: 96px 0 96px 64px;
  border-bottom: 1px solid var(--clr-border);
  overflow: hidden;
}

.e11__label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-neon);
  margin-bottom: 48px;
  padding-right: 64px;
}

.e11__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--clr-neon) var(--clr-surface);
  padding-bottom: 16px;
  padding-right: 64px;
}

.e11__track::-webkit-scrollbar {
  height: 2px;
}

.e11__track::-webkit-scrollbar-track {
  background: var(--clr-surface);
}

.e11__track::-webkit-scrollbar-thumb {
  background: var(--clr-neon);
}

.e11__card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border: 1px solid var(--clr-border);
  padding: 32px;
  background: #0d0d0d;
  transition: border-color var(--transition);
}

.e11__card:hover {
  border-color: var(--clr-neon);
}

.e11__num {
  font-size: 11px;
  color: var(--clr-neon);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  opacity: 0.7;
}

.e11__heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.e11__text {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(245,245,245,0.5);
  margin-bottom: 20px;
}

.e11__result {
  font-size: 11px;
  color: var(--clr-neon);
  border-top: 1px solid var(--clr-border);
  padding-top: 16px;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════
   IMAGE SECTION
═══════════════════════════════════════════ */
.b13 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  border-bottom: 1px solid var(--clr-border);
}

.b13__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  display: block;
  filter: grayscale(30%) contrast(1.1);
}

.b13__text {
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #0d0d0d;
}

.b13__text h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.b13__text h2 em {
  color: var(--clr-neon);
  font-style: normal;
}

.b13__text p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245,245,245,0.55);
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════
   FOOTER — .e12
═══════════════════════════════════════════ */
.e12 {
  padding: 64px;
  border-top: 1px solid var(--clr-border);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  background: #080808;
}

.e12__brand {
  grid-column: 1;
}

.e12__logo {
  width: 48px;
  margin-bottom: 16px;
}

.e12__tagline {
  font-size: 12px;
  color: rgba(245,245,245,0.4);
  line-height: 1.6;
  margin-bottom: 20px;
}

.e12__contact {
  font-size: 12px;
  color: rgba(245,245,245,0.5);
  line-height: 2;
}

.e12__contact a {
  color: var(--clr-neon);
}

.e12__nav h4,
.e12__legal h4 {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-neon);
  margin-bottom: 20px;
}

.e12__nav ul,
.e12__legal ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.e12__nav ul a,
.e12__legal ul a {
  font-size: 13px;
  color: rgba(245,245,245,0.55);
  transition: color var(--transition);
  text-decoration: none;
}

.e12__nav ul a:hover,
.e12__legal ul a:hover {
  color: var(--clr-neon);
}

.e12__bottom {
  grid-column: 1 / -1;
  border-top: 1px solid var(--clr-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(245,245,245,0.3);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════
   TOAST
═══════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-neon);
  color: var(--clr-neon);
  padding: 14px 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 320px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast--error {
  border-color: #ff3a3a;
  color: #ff3a3a;
}

/* ═══════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════ */
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 32px;
}

.cookie-box {
  background: #0d0d0d;
  border: 1px solid var(--clr-neon);
  padding: 40px;
  max-width: 640px;
  width: 100%;
  box-shadow: 0 0 40px rgba(57,255,20,0.1);
}

.cookie-box h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-neon);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cookie-box p {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(245,245,245,0.6);
  margin-bottom: 24px;
}

.cookie-box p a {
  color: var(--clr-neon);
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 10px 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--clr-neon);
  transition: var(--transition);
}

.cookie-btn--accept {
  background: var(--clr-neon);
  color: var(--clr-black);
}

.cookie-btn--accept:hover {
  background: transparent;
  color: var(--clr-neon);
}

.cookie-btn--reject {
  background: transparent;
  color: rgba(245,245,245,0.5);
  border-color: rgba(245,245,245,0.2);
}

.cookie-btn--reject:hover {
  border-color: var(--clr-white);
  color: var(--clr-white);
}

/* ═══════════════════════════════════════════
   INNER PAGE STYLES
═══════════════════════════════════════════ */
.w12 {
  padding: 80px 64px;
  max-width: 900px;
}

.w12 h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.w12 .e10 {
  padding: 0;
  text-align: left;
  margin-bottom: 48px;
}

.w12 h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-neon);
  margin: 40px 0 16px;
  letter-spacing: 0.05em;
}

.w12 h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-white);
  margin: 28px 0 10px;
}

.w12 p {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(245,245,245,0.6);
  margin-bottom: 16px;
}

.w12 ul {
  margin: 12px 0 20px 20px;
  color: rgba(245,245,245,0.6);
  font-size: 13px;
  line-height: 1.8;
}

.w12 table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 12px;
}

.w12 table th,
.w12 table td {
  border: 1px solid var(--clr-border);
  padding: 10px 14px;
  text-align: left;
}

.w12 table th {
  background: var(--clr-neon-dim);
  color: var(--clr-neon);
  letter-spacing: 0.05em;
  font-size: 11px;
  text-transform: uppercase;
}

.w12 table td {
  color: rgba(245,245,245,0.6);
}

/* ═══════════════════════════════════════════
   404 PAGE
═══════════════════════════════════════════ */
.b14 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px;
}

.b14__code {
  font-size: 120px;
  font-weight: 700;
  color: var(--clr-neon);
  line-height: 1;
  text-shadow: 0 0 40px rgba(57,255,20,0.4);
  opacity: 0.9;
  margin-bottom: 24px;
}

.b14__msg {
  font-size: 18px;
  color: rgba(245,245,245,0.6);
  margin-bottom: 8px;
}

.b14__sub {
  font-size: 13px;
  color: rgba(245,245,245,0.35);
  margin-bottom: 40px;
}

/* ═══════════════════════════════════════════
   CONTACT PAGE EXTRAS
═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 80px 64px;
}

.contact-info h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.contact-info-item {
  margin-bottom: 32px;
}

.contact-info-item dt {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-neon);
  margin-bottom: 8px;
}

.contact-info-item dd {
  font-size: 14px;
  color: rgba(245,245,245,0.65);
  line-height: 1.6;
}

.contact-info-item dd a {
  color: var(--clr-white);
}

/* ═══════════════════════════════════════════
   SUBPAGE NAV BANNER
═══════════════════════════════════════════ */
.b15 {
  padding: 48px 64px 32px;
  border-bottom: 1px solid var(--clr-border);
}

.b15__back {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.4);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
  margin-bottom: 24px;
}

.b15__back:hover {
  color: var(--clr-neon);
  text-decoration: none;
}

.b15__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: -0.02em;
}

.b15__title em {
  color: var(--clr-neon);
  font-style: normal;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --nav-w: 0px; }

  .b10 {
    display: none;
  }

  .b11 {
    margin-left: 0;
  }

  .b12__content {
    padding: 48px 24px;
  }

  .w10 {
    padding: 64px 24px;
  }

  .w10__item {
    grid-template-columns: 56px 1fr;
  }

  .w10__arrow { display: none; }

  .w11 {
    grid-template-columns: 1fr;
    padding: 64px 24px;
    gap: 48px;
  }

  .e11 {
    padding: 64px 0 64px 24px;
  }

  .b13 {
    grid-template-columns: 1fr;
  }

  .b13__text {
    padding: 48px 24px;
  }

  .e12 {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 32px;
  }

  .e12__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .w12 {
    padding: 48px 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 40px;
  }

  .b15 {
    padding: 32px 24px;
  }

  .e10 { padding: 16px 24px; }

  .b12__title { font-size: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
