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

:root {
  /* Colores principales */
  --primary: #667eea;
  --secondary: #764ba2;
  --accent: #f093fb;
  --cyan: #00d4ff;
  
  /* Gradientes */
  --gradient-main: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  --gradient-card: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(240, 147, 251, 0.1) 100%);
  
  /* Colores de tecnología */
  --laravel: #FF2D20;
  --php: #777BB4;
  --html: #E34F26;
  --css: #1572B6;
  --vue: #4FC08D;
  --angular: #DD0031;
  --js: #F7DF1E;
  --sass: #CC6699;
  --github: #FFFFFF;
  --gitlab: #FC6D26;
  --docker: #2496ED;
  --figma: #F24E1E;
  --dribble: #EA4C89;
  
  /* Fuente */
  --fuente: 'Kumbh Sans', sans-serif;
  
  /* Sombras */
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.4);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #0a0e27;
  position: relative;
  font-family: var(--fuente);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  color: #ffffff;
}

/* Fondo animado con gradientes */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(240, 147, 251, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.app {
  width: 1200px;
  max-width: 100%;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* ============================================
   HEADER - GLASSMORPHISM MODERNO
   ============================================ */
header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 1100px;
  max-width: 95%;
  padding: 18px 40px;
  
  /* Glassmorphism effect */
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 
    0 12px 48px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 60px rgba(102, 126, 234, 0.2);
}

/* Botón hamburguesa */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Toggle de idioma */
.idioma {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.idioma:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
}

.idioma span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Switch mejorado */
.switch {
  position: relative;
  width: 54px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.slider:before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 3px;
  background: linear-gradient(135deg, #ffffff, #e0e0e0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

input:checked + .slider {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

input:checked + .slider:before {
  transform: translateX(26px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* Navegación */
.links {
  display: flex;
  gap: 8px;
}

.links-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.links-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(240, 147, 251, 0.15));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.links-btn:hover::before {
  opacity: 1;
}

.links-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.links-btn i {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.links-btn:hover i {
  color: var(--accent);
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px rgba(240, 147, 251, 0.6));
}

.links-btn a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
}

/* ============================================
   MAIN
   ============================================ */
main {
  padding: 140px 40px 100px;
  display: grid;
  gap: 120px;
}

.section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PRESENTACIÓN - HERO SECTION
   ============================================ */
.presentacion {
  min-height: calc(100vh - 180px);
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

/* Imagen de perfil con efectos modernos */
.presentacion-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.presentacion-img::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  background: var(--gradient-main);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

.presentacion-img img {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  
  /* Borde con gradiente */
  border: 6px solid transparent;
  background: 
    linear-gradient(#0a0e27, #0a0e27) padding-box,
    var(--gradient-main) border-box;
  
  box-shadow: 
    0 0 0 12px rgba(255, 255, 255, 0.05),
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 0 40px rgba(0, 0, 0, 0.2);
  
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.presentacion-img img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 
    0 0 0 12px rgba(255, 255, 255, 0.08),
    0 30px 80px rgba(102, 126, 234, 0.4),
    inset 0 0 40px rgba(0, 0, 0, 0.2);
}

/* Información de presentación */
.presentacion-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.presentacion-info-nombre {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.presentacion-info-nombre h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.presentacion-info-nombre h1 span:first-child {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.presentacion-info-nombre h1 .name {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
  filter: drop-shadow(0 0 30px rgba(102, 126, 234, 0.5));
  animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(102, 126, 234, 0.7));
  }
}

.presentacion-info-nombre img {
  width: 60px;
  height: 60px;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.4));
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.presentacion-info-desc p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Botones mejorados */
.presentacion-info-botones {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.btn:hover i {
  transform: scale(1.2);
}

.btn-linkedin {
  background: linear-gradient(135deg, #0077B5, #005582);
  color: white;
  box-shadow: 0 8px 24px rgba(0, 119, 181, 0.3);
}

.btn-linkedin:hover {
  box-shadow: 0 12px 40px rgba(0, 119, 181, 0.5);
}

.btn-github {
  background: linear-gradient(135deg, #24292e, #1a1e22);
  color: white;
  box-shadow: 0 8px 24px rgba(36, 41, 46, 0.3);
}

.btn-github:hover {
  box-shadow: 0 12px 40px rgba(36, 41, 46, 0.5);
}

.btn-resume {
  background: var(--gradient-main);
  color: white;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.btn-resume:hover {
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.5);
}

/* ============================================
   TÍTULOS DE SECCIONES
   ============================================ */
.titulo {
  margin-bottom: 60px;
  position: relative;
}

.titulo-text {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.titulo-text h3 {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  position: relative;
}

.titulo-text img {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 4px 20px rgba(102, 126, 234, 0.6));
}

.titulo-hr hr {
  border: none;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
  border-radius: 4px;
  opacity: 0.5;
}

/* ============================================
   PROYECTOS - GRID MODERNO
   ============================================ */
.proyectos-lista {
  display: grid;
  gap: 40px;
}

.proyectos-lista-proyecto {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 40px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.proyectos-lista-proyecto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-card);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.proyectos-lista-proyecto:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(102, 126, 234, 0.2);
}

.proyectos-lista-proyecto:hover::before {
  opacity: 1;
}

.proyectos-lista-proyecto .img {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.proyectos-lista-proyecto .img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.proyectos-lista-proyecto:hover .img img {
  transform: scale(1.1);
}

.proyectos-lista-proyecto .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.info-titulo {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.8;
}

.info-tech {
  display: flex;
  gap: 16px;
  font-size: 2.5rem;
  flex-wrap: wrap;
}

.info-tech i {
  transition: all 0.3s ease;
  cursor: pointer;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.5));
}

.info-tech i:hover {
  transform: translateY(-8px) scale(1.25);
  filter: drop-shadow(0 8px 16px rgba(102, 126, 234, 0.5));
}

/* ============================================
   EXPERIENCIAS
   ============================================ */
.experiencias-lista {
  display: grid;
  gap: 32px;
}

.exp {
  padding: 48px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.exp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.exp:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(12px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.exp:hover::before {
  opacity: 1;
}

.exp-titulo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.exp-titulo h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.exp-titulo img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.4));
}

.exp-desc {
  display: flex;
  gap: 32px;
  align-items: center;
}

.exp-desc p {
  flex: 1;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.9;
}

.exp-desc img {
  width: 180px;
  height: auto;
  opacity: 0.6;
  filter: drop-shadow(0 8px 24px rgba(102, 126, 234, 0.3));
  transition: all 0.4s ease;
}

.exp:hover .exp-desc img {
  opacity: 0.9;
  transform: scale(1.05);
}

/* ============================================
   TECNOLOGÍAS - BENTO GRID
   ============================================ */
.tecnologias-lista {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.tech {
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-card);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tech:hover {
  transform: translateY(-12px) scale(1.02);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 24px 64px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(102, 126, 234, 0.25);
}

.tech:hover::before {
  opacity: 1;
}

.tech-titulo {
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.tech-titulo h4 {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-tecnologias {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 3.5rem;
  position: relative;
  z-index: 1;
}

.tech-tecnologias i {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.tech-tecnologias i:hover {
  transform: translateY(-12px) scale(1.3);
  filter: drop-shadow(0 12px 24px rgba(102, 126, 234, 0.6));
}

/* Colores de tecnologías con glow */
.laravel { color: var(--laravel); }
.php { color: var(--php); }
.html { color: var(--html); }
.css { color: var(--css); }
.vue { color: var(--vue); }
.angular { color: var(--angular); }
.js { color: var(--js); }
.sass { color: var(--sass); }
.github { color: var(--github); }
.gitlab { color: var(--gitlab); }
.docker { color: var(--docker); }
.figma { color: var(--figma); }
.dribble { color: var(--dribble); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .app {
    width: 95%;
  }
  
  header {
    width: 95%;
  }
  
  .presentacion {
    grid-template-columns: 350px 1fr;
    gap: 60px;
  }
  
  .presentacion-img img {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 968px) {
  header {
    padding: 16px 24px;
    top: 10px;
  }
  
  /* Mostrar hamburguesa */
  .hamburger {
    display: flex;
  }
  
  /* Ocultar idioma en mobile */
  .options {
    display: none;
  }
  
  /* Menú mobile */
  .links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    z-index: 999;
  }
  
  .links.active {
    transform: translateX(0);
    opacity: 1;
  }
  
  .links-btn {
    padding: 16px 32px;
    width: 80%;
    max-width: 300px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
  }
  
  .links-btn::before {
    opacity: 1;
  }
  
  .links-btn a {
    font-size: 1.2rem;
  }
  
  .links-btn i {
    font-size: 1.5rem;
  }
  
  /* Ajustes de secciones */
  main {
    padding: 120px 24px 80px;
    gap: 100px;
  }
  
  .presentacion {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .presentacion-img {
    justify-content: center;
  }
  
  .presentacion-img img {
    width: 300px;
    height: 300px;
  }
  
  .presentacion-info-nombre {
    justify-content: center;
  }
  
  .presentacion-info-nombre h1 {
    font-size: 3rem;
  }
  
  .presentacion-info-botones {
    justify-content: center;
  }
  
  .proyectos-lista-proyecto {
    grid-template-columns: 1fr;
    padding: 32px;
  }
  
  .exp-desc {
    flex-direction: column;
  }
  
  .titulo-text h3 {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  header {
    padding: 14px 20px;
  }
  
  .presentacion-img img {
    width: 260px;
    height: 260px;
  }
  
  .presentacion-info-nombre h1 {
    font-size: 2.5rem;
  }
  
  .presentacion-info-nombre h1 span:first-child {
    font-size: 2rem;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 15px;
  }
  
  .titulo-text h3 {
    font-size: 2rem;
  }
  
  .tech-tecnologias {
    font-size: 2.5rem;
  }
  
  .links-btn {
    width: 90%;
  }
}

/* ============================================
   ACCESIBILIDAD
   ============================================ */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
