/* ===================================
   ATOMIC LAB - UTILITY CLASS SYSTEM
   Comprehensive utility-first classes
   =================================== */

/* ===================================
   BREAKPOINT SYSTEM
   Mobile-first responsive design
   =================================== */
/* 
  Breakpoint prefixes:
  - No prefix: All sizes
  - sm: ≥576px
  - md: ≥768px  
  - lg: ≥992px
  - xl: ≥1200px
  - xxl: ≥1400px
*/

/* ===================================
   SPACING UTILITIES - MARGIN
   =================================== */
/* Margin All Sides */
.m-0 { margin: 0 !important; }
.m-1 { margin: 0.25rem !important; }
.m-2 { margin: 0.5rem !important; }
.m-3 { margin: 1rem !important; }
.m-4 { margin: 1.5rem !important; }
.m-5 { margin: 3rem !important; }
.m-auto { margin: auto !important; }

/* Margin Top */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mt-auto { margin-top: auto !important; }

/* Margin Bottom */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mb-auto { margin-bottom: auto !important; }

/* Margin Left */
.ml-0 { margin-left: 0 !important; }
.ml-1 { margin-left: 0.25rem !important; }
.ml-2 { margin-left: 0.5rem !important; }
.ml-3 { margin-left: 1rem !important; }
.ml-4 { margin-left: 1.5rem !important; }
.ml-5 { margin-left: 3rem !important; }
.ml-auto { margin-left: auto !important; }

/* Margin Right */
.mr-0 { margin-right: 0 !important; }
.mr-1 { margin-right: 0.25rem !important; }
.mr-2 { margin-right: 0.5rem !important; }
.mr-3 { margin-right: 1rem !important; }
.mr-4 { margin-right: 1.5rem !important; }
.mr-5 { margin-right: 3rem !important; }
.mr-auto { margin-right: auto !important; }

/* Margin X-axis (left & right) */
.mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
.mx-1 { margin-left: 0.25rem !important; margin-right: 0.25rem !important; }
.mx-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
.mx-3 { margin-left: 1rem !important; margin-right: 1rem !important; }
.mx-4 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; }
.mx-5 { margin-left: 3rem !important; margin-right: 3rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

/* Margin Y-axis (top & bottom) */
.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.my-1 { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; }
.my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
.my-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }

/* ===================================
   SPACING UTILITIES - PADDING
   =================================== */
/* Padding All Sides */
.p-0 { padding: 0 !important; }
.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

/* Padding Top */
.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 3rem !important; }

/* Padding Bottom */
.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 0.25rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !important; }

/* Padding Left */
.pl-0 { padding-left: 0 !important; }
.pl-1 { padding-left: 0.25rem !important; }
.pl-2 { padding-left: 0.5rem !important; }
.pl-3 { padding-left: 1rem !important; }
.pl-4 { padding-left: 1.5rem !important; }
.pl-5 { padding-left: 3rem !important; }

/* Padding Right */
.pr-0 { padding-right: 0 !important; }
.pr-1 { padding-right: 0.25rem !important; }
.pr-2 { padding-right: 0.5rem !important; }
.pr-3 { padding-right: 1rem !important; }
.pr-4 { padding-right: 1.5rem !important; }
.pr-5 { padding-right: 3rem !important; }

/* Padding X-axis */
.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

/* Padding Y-axis */
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

/* ===================================
   SIZING UTILITIES - WIDTH
   =================================== */
.w-0 { width: 0 !important; }
.w-25 { width: 25% !important; }
.w-50 { width: 50% !important; }
.w-75 { width: 75% !important; }
.w-100 { width: 100% !important; }
.w-auto { width: auto !important; }
.w-screen { width: 100vw !important; }
.w-min { width: min-content !important; }
.w-max { width: max-content !important; }
.w-fit { width: fit-content !important; }

/* Max Width */
.max-w-none { max-width: none !important; }
.max-w-xs { max-width: 20rem !important; }
.max-w-sm { max-width: 24rem !important; }
.max-w-md { max-width: 28rem !important; }
.max-w-lg { max-width: 32rem !important; }
.max-w-xl { max-width: 36rem !important; }
.max-w-2xl { max-width: 42rem !important; }
.max-w-3xl { max-width: 48rem !important; }
.max-w-4xl { max-width: 56rem !important; }
.max-w-5xl { max-width: 64rem !important; }
.max-w-6xl { max-width: 72rem !important; }
.max-w-full { max-width: 100% !important; }

/* Min Width */
.min-w-0 { min-width: 0 !important; }
.min-w-full { min-width: 100% !important; }
.min-w-min { min-width: min-content !important; }
.min-w-max { min-width: max-content !important; }

/* ===================================
   SIZING UTILITIES - HEIGHT
   =================================== */
.h-0 { height: 0 !important; }
.h-25 { height: 25% !important; }
.h-50 { height: 50% !important; }
.h-75 { height: 75% !important; }
.h-100 { height: 100% !important; }
.h-auto { height: auto !important; }
.h-screen { height: 100vh !important; }
.h-min { height: min-content !important; }
.h-max { height: max-content !important; }
.h-fit { height: fit-content !important; }

/* Max Height */
.max-h-none { max-height: none !important; }
.max-h-full { max-height: 100% !important; }
.max-h-screen { max-height: 100vh !important; }

/* Min Height */
.min-h-0 { min-height: 0 !important; }
.min-h-full { min-height: 100% !important; }
.min-h-screen { min-height: 100vh !important; }

/* ===================================
   DISPLAY UTILITIES
   =================================== */
.d-none { display: none !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-block { display: block !important; }
.d-grid { display: grid !important; }
.d-table { display: table !important; }
.d-table-row { display: table-row !important; }
.d-table-cell { display: table-cell !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }

/* ===================================
   FLEXBOX UTILITIES
   =================================== */
/* Flex Direction */
.flex-row { flex-direction: row !important; }
.flex-row-reverse { flex-direction: row-reverse !important; }
.flex-column { flex-direction: column !important; }
.flex-column-reverse { flex-direction: column-reverse !important; }

/* Flex Wrap */
.flex-wrap { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }
.flex-wrap-reverse { flex-wrap: wrap-reverse !important; }

/* Justify Content */
.justify-start { justify-content: flex-start !important; }
.justify-end { justify-content: flex-end !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.justify-around { justify-content: space-around !important; }
.justify-evenly { justify-content: space-evenly !important; }

/* Align Items */
.items-start { align-items: flex-start !important; }
.items-end { align-items: flex-end !important; }
.items-center { align-items: center !important; }
.items-baseline { align-items: baseline !important; }
.items-stretch { align-items: stretch !important; }

/* Align Self */
.self-auto { align-self: auto !important; }
.self-start { align-self: flex-start !important; }
.self-end { align-self: flex-end !important; }
.self-center { align-self: center !important; }
.self-baseline { align-self: baseline !important; }
.self-stretch { align-self: stretch !important; }

/* Flex Grow/Shrink */
.flex-1 { flex: 1 1 0% !important; }
.flex-auto { flex: 1 1 auto !important; }
.flex-initial { flex: 0 1 auto !important; }
.flex-none { flex: none !important; }
.flex-grow-0 { flex-grow: 0 !important; }
.flex-grow-1 { flex-grow: 1 !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.flex-shrink-1 { flex-shrink: 1 !important; }

/* Gap */
.gap-0 { gap: 0 !important; }
.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.gap-5 { gap: 3rem !important; }

/* ===================================
   POSITION UTILITIES
   =================================== */
.position-static { position: static !important; }
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-fixed { position: fixed !important; }
.position-sticky { position: sticky !important; }

/* Position Values */
.top-0 { top: 0 !important; }
.top-50 { top: 50% !important; }
.top-100 { top: 100% !important; }
.bottom-0 { bottom: 0 !important; }
.bottom-50 { bottom: 50% !important; }
.bottom-100 { bottom: 100% !important; }
.left-0 { left: 0 !important; }
.left-50 { left: 50% !important; }
.left-100 { left: 100% !important; }
.right-0 { right: 0 !important; }
.right-50 { right: 50% !important; }
.right-100 { right: 100% !important; }

/* Inset */
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-x-0 { left: 0; right: 0; }
.inset-y-0 { top: 0; bottom: 0; }

/* ===================================
   OVERFLOW UTILITIES
   =================================== */
.overflow-auto { overflow: auto !important; }
.overflow-hidden { overflow: hidden !important; }
.overflow-visible { overflow: visible !important; }
.overflow-scroll { overflow: scroll !important; }
.overflow-x-auto { overflow-x: auto !important; }
.overflow-x-hidden { overflow-x: hidden !important; }
.overflow-x-visible { overflow-x: visible !important; }
.overflow-x-scroll { overflow-x: scroll !important; }
.overflow-y-auto { overflow-y: auto !important; }
.overflow-y-hidden { overflow-y: hidden !important; }
.overflow-y-visible { overflow-y: visible !important; }
.overflow-y-scroll { overflow-y: scroll !important; }

/* ===================================
   OPACITY UTILITIES
   =================================== */
.opacity-0 { opacity: 0 !important; }
.opacity-10 { opacity: 0.1 !important; }
.opacity-20 { opacity: 0.2 !important; }
.opacity-25 { opacity: 0.25 !important; }
.opacity-30 { opacity: 0.3 !important; }
.opacity-40 { opacity: 0.4 !important; }
.opacity-50 { opacity: 0.5 !important; }
.opacity-60 { opacity: 0.6 !important; }
.opacity-70 { opacity: 0.7 !important; }
.opacity-75 { opacity: 0.75 !important; }
.opacity-80 { opacity: 0.8 !important; }
.opacity-90 { opacity: 0.9 !important; }
.opacity-100 { opacity: 1 !important; }

/* ===================================
   FILTER UTILITIES
   =================================== */
.blur-none { filter: blur(0) !important; }
.blur-sm { filter: blur(4px) !important; }
.blur { filter: blur(8px) !important; }
.blur-md { filter: blur(12px) !important; }
.blur-lg { filter: blur(16px) !important; }
.blur-xl { filter: blur(24px) !important; }
.blur-2xl { filter: blur(40px) !important; }
.blur-3xl { filter: blur(64px) !important; }

/* Brightness */
.brightness-0 { filter: brightness(0) !important; }
.brightness-50 { filter: brightness(0.5) !important; }
.brightness-75 { filter: brightness(0.75) !important; }
.brightness-100 { filter: brightness(1) !important; }
.brightness-125 { filter: brightness(1.25) !important; }
.brightness-150 { filter: brightness(1.5) !important; }
.brightness-200 { filter: brightness(2) !important; }

/* Contrast */
.contrast-0 { filter: contrast(0) !important; }
.contrast-50 { filter: contrast(0.5) !important; }
.contrast-75 { filter: contrast(0.75) !important; }
.contrast-100 { filter: contrast(1) !important; }
.contrast-125 { filter: contrast(1.25) !important; }
.contrast-150 { filter: contrast(1.5) !important; }
.contrast-200 { filter: contrast(2) !important; }

/* Grayscale */
.grayscale-0 { filter: grayscale(0) !important; }
.grayscale { filter: grayscale(100%) !important; }

/* Saturate */
.saturate-0 { filter: saturate(0) !important; }
.saturate-50 { filter: saturate(0.5) !important; }
.saturate-100 { filter: saturate(1) !important; }
.saturate-150 { filter: saturate(1.5) !important; }
.saturate-200 { filter: saturate(2) !important; }

/* ===================================
   BACKDROP FILTER UTILITIES
   =================================== */
/* Backdrop Blur */
.backdrop-blur-none { backdrop-filter: blur(0) !important; }
.backdrop-blur-sm { backdrop-filter: blur(4px) !important; }
.backdrop-blur { backdrop-filter: blur(8px) !important; }
.backdrop-blur-md { backdrop-filter: blur(12px) !important; }
.backdrop-blur-lg { backdrop-filter: blur(16px) !important; }
.backdrop-blur-xl { backdrop-filter: blur(24px) !important; }
.backdrop-blur-2xl { backdrop-filter: blur(40px) !important; }
.backdrop-blur-3xl { backdrop-filter: blur(64px) !important; }

/* Backdrop Brightness */
.backdrop-brightness-0 { backdrop-filter: brightness(0) !important; }
.backdrop-brightness-50 { backdrop-filter: brightness(0.5) !important; }
.backdrop-brightness-75 { backdrop-filter: brightness(0.75) !important; }
.backdrop-brightness-100 { backdrop-filter: brightness(1) !important; }
.backdrop-brightness-125 { backdrop-filter: brightness(1.25) !important; }
.backdrop-brightness-150 { backdrop-filter: brightness(1.5) !important; }
.backdrop-brightness-200 { backdrop-filter: brightness(2) !important; }

/* Backdrop Contrast */
.backdrop-contrast-0 { backdrop-filter: contrast(0) !important; }
.backdrop-contrast-50 { backdrop-filter: contrast(0.5) !important; }
.backdrop-contrast-75 { backdrop-filter: contrast(0.75) !important; }
.backdrop-contrast-100 { backdrop-filter: contrast(1) !important; }
.backdrop-contrast-125 { backdrop-filter: contrast(1.25) !important; }
.backdrop-contrast-150 { backdrop-filter: contrast(1.5) !important; }
.backdrop-contrast-200 { backdrop-filter: contrast(2) !important; }

/* Backdrop Grayscale */
.backdrop-grayscale-0 { backdrop-filter: grayscale(0) !important; }
.backdrop-grayscale { backdrop-filter: grayscale(100%) !important; }

/* Backdrop Saturate */
.backdrop-saturate-0 { backdrop-filter: saturate(0) !important; }
.backdrop-saturate-50 { backdrop-filter: saturate(0.5) !important; }
.backdrop-saturate-100 { backdrop-filter: saturate(1) !important; }
.backdrop-saturate-150 { backdrop-filter: saturate(1.5) !important; }
.backdrop-saturate-200 { backdrop-filter: saturate(2) !important; }

/* Backdrop Sepia */
.backdrop-sepia-0 { backdrop-filter: sepia(0) !important; }
.backdrop-sepia { backdrop-filter: sepia(100%) !important; }

/* Backdrop Hue Rotate */
.backdrop-hue-rotate-0 { backdrop-filter: hue-rotate(0deg) !important; }
.backdrop-hue-rotate-15 { backdrop-filter: hue-rotate(15deg) !important; }
.backdrop-hue-rotate-30 { backdrop-filter: hue-rotate(30deg) !important; }
.backdrop-hue-rotate-60 { backdrop-filter: hue-rotate(60deg) !important; }
.backdrop-hue-rotate-90 { backdrop-filter: hue-rotate(90deg) !important; }
.backdrop-hue-rotate-180 { backdrop-filter: hue-rotate(180deg) !important; }

/* Backdrop Invert */
.backdrop-invert-0 { backdrop-filter: invert(0) !important; }
.backdrop-invert { backdrop-filter: invert(100%) !important; }

/* Backdrop Opacity */
.backdrop-opacity-0 { backdrop-filter: opacity(0) !important; }
.backdrop-opacity-25 { backdrop-filter: opacity(0.25) !important; }
.backdrop-opacity-50 { backdrop-filter: opacity(0.5) !important; }
.backdrop-opacity-75 { backdrop-filter: opacity(0.75) !important; }
.backdrop-opacity-100 { backdrop-filter: opacity(1) !important; }

/* ===================================
   TRANSFORM UTILITIES
   =================================== */
/* Scale */
.scale-0 { transform: scale(0) !important; }
.scale-50 { transform: scale(0.5) !important; }
.scale-75 { transform: scale(0.75) !important; }
.scale-90 { transform: scale(0.9) !important; }
.scale-95 { transform: scale(0.95) !important; }
.scale-100 { transform: scale(1) !important; }
.scale-105 { transform: scale(1.05) !important; }
.scale-110 { transform: scale(1.1) !important; }
.scale-125 { transform: scale(1.25) !important; }
.scale-150 { transform: scale(1.5) !important; }

/* Rotate */
.rotate-0 { transform: rotate(0deg) !important; }
.rotate-45 { transform: rotate(45deg) !important; }
.rotate-90 { transform: rotate(90deg) !important; }
.rotate-180 { transform: rotate(180deg) !important; }
.-rotate-45 { transform: rotate(-45deg) !important; }
.-rotate-90 { transform: rotate(-90deg) !important; }
.-rotate-180 { transform: rotate(-180deg) !important; }

/* Translate */
.translate-x-0 { transform: translateX(0) !important; }
.translate-x-full { transform: translateX(100%) !important; }
.-translate-x-full { transform: translateX(-100%) !important; }
.translate-y-0 { transform: translateY(0) !important; }
.translate-y-full { transform: translateY(100%) !important; }
.-translate-y-full { transform: translateY(-100%) !important; }

/* Transform Origin */
.origin-center { transform-origin: center !important; }
.origin-top { transform-origin: top !important; }
.origin-top-right { transform-origin: top right !important; }
.origin-right { transform-origin: right !important; }
.origin-bottom-right { transform-origin: bottom right !important; }
.origin-bottom { transform-origin: bottom !important; }
.origin-bottom-left { transform-origin: bottom left !important; }
.origin-left { transform-origin: left !important; }
.origin-top-left { transform-origin: top left !important; }

/* ===================================
   TRANSITION UTILITIES
   =================================== */
.transition-none { transition: none !important; }
.transition-all {
  transition-property: all !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}
.transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}
.transition-colors {
  transition-property: background-color, border-color, color, fill, stroke !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}
.transition-opacity {
  transition-property: opacity !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}
.transition-shadow {
  transition-property: box-shadow !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}
.transition-transform {
  transition-property: transform !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}

/* Duration */
.duration-75 { transition-duration: 75ms !important; }
.duration-100 { transition-duration: 100ms !important; }
.duration-150 { transition-duration: 150ms !important; }
.duration-200 { transition-duration: 200ms !important; }
.duration-300 { transition-duration: 300ms !important; }
.duration-500 { transition-duration: 500ms !important; }
.duration-700 { transition-duration: 700ms !important; }
.duration-1000 { transition-duration: 1000ms !important; }

/* Timing Function */
.ease-linear { transition-timing-function: linear !important; }
.ease-in { transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important; }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; }

/* ===================================
   GRADIENT UTILITIES (Atomic Lab Theme)
   =================================== */
/* Primary Gradients */
.gradient-neon-blue {
  background: linear-gradient(135deg, var(--neon-blue), var(--plasma-purple)) !important;
}
.gradient-radioactive {
  background: linear-gradient(135deg, var(--radioactive-green), var(--fusion-orange)) !important;
}
.gradient-quantum {
  background: linear-gradient(135deg, var(--quantum-black), var(--carbon-gray)) !important;
}
.gradient-hologram {
  background: linear-gradient(135deg, var(--neon-blue), var(--plasma-purple), var(--radioactive-green)) !important;
}
.gradient-energy {
  background: linear-gradient(135deg, var(--fusion-orange), var(--photon-yellow)) !important;
}
.gradient-dark-fade {
  background: linear-gradient(to bottom, transparent, rgba(10, 10, 15, 0.9)) !important;
}

/* Directional Gradients */
.gradient-to-t { background: linear-gradient(to top, rgba(10, 10, 15, 0), rgba(10, 10, 15, 1)) !important; }
.gradient-to-tr { background: linear-gradient(to top right, rgba(10, 10, 15, 0), rgba(10, 10, 15, 1)) !important; }
.gradient-to-r { background: linear-gradient(to right, rgba(10, 10, 15, 0), rgba(10, 10, 15, 1)) !important; }
.gradient-to-br { background: linear-gradient(to bottom right, rgba(10, 10, 15, 0), rgba(10, 10, 15, 1)) !important; }
.gradient-to-b { background: linear-gradient(to bottom, rgba(10, 10, 15, 0), rgba(10, 10, 15, 1)) !important; }
.gradient-to-bl { background: linear-gradient(to bottom left, rgba(10, 10, 15, 0), rgba(10, 10, 15, 1)) !important; }
.gradient-to-l { background: linear-gradient(to left, rgba(10, 10, 15, 0), rgba(10, 10, 15, 1)) !important; }
.gradient-to-tl { background: linear-gradient(to top left, rgba(10, 10, 15, 0), rgba(10, 10, 15, 1)) !important; }

/* Radial Gradients */
.gradient-radial { background: radial-gradient(circle, var(--neon-blue), transparent) !important; }
.gradient-radial-purple { background: radial-gradient(circle, var(--plasma-purple), transparent) !important; }
.gradient-radial-green { background: radial-gradient(circle, var(--radioactive-green), transparent) !important; }
.gradient-radial-orange { background: radial-gradient(circle, var(--fusion-orange), transparent) !important; }
.gradient-radial-dark { background: radial-gradient(circle, rgba(10, 10, 15, 0), rgba(10, 10, 15, 1)) !important; }

/* Special Effect Gradients */
.gradient-glow {
  background: radial-gradient(ellipse at center, var(--neon-blue) 0%, transparent 70%) !important;
}
.gradient-pulse {
  background: radial-gradient(circle at center, var(--radioactive-green) 0%, transparent 50%, var(--radioactive-green) 100%) !important;
}
.gradient-vortex {
  background: conic-gradient(from 180deg at 50% 50%, var(--neon-blue), var(--plasma-purple), var(--radioactive-green), var(--neon-blue)) !important;
}
.gradient-aurora {
  background: linear-gradient(135deg, #00ff41 0%, #00ffff 25%, #ff00ff 50%, #ffff00 75%, #00ff41 100%) !important;
}
.gradient-metal {
  background: linear-gradient(135deg, #2a2a2a 0%, #3d3d3d 50%, #2a2a2a 100%) !important;
}

/* ===================================
   CURSOR UTILITIES
   =================================== */
.cursor-auto { cursor: auto !important; }
.cursor-default { cursor: default !important; }
.cursor-pointer { cursor: pointer !important; }
.cursor-wait { cursor: wait !important; }
.cursor-text { cursor: text !important; }
.cursor-move { cursor: move !important; }
.cursor-help { cursor: help !important; }
.cursor-not-allowed { cursor: not-allowed !important; }
.cursor-none { cursor: none !important; }
.cursor-context-menu { cursor: context-menu !important; }
.cursor-progress { cursor: progress !important; }
.cursor-cell { cursor: cell !important; }
.cursor-crosshair { cursor: crosshair !important; }
.cursor-vertical-text { cursor: vertical-text !important; }
.cursor-alias { cursor: alias !important; }
.cursor-copy { cursor: copy !important; }
.cursor-no-drop { cursor: no-drop !important; }
.cursor-grab { cursor: grab !important; }
.cursor-grabbing { cursor: grabbing !important; }
.cursor-all-scroll { cursor: all-scroll !important; }
.cursor-zoom-in { cursor: zoom-in !important; }
.cursor-zoom-out { cursor: zoom-out !important; }

/* ===================================
   USER SELECT UTILITIES
   =================================== */
.user-select-none { user-select: none !important; }
.user-select-text { user-select: text !important; }
.user-select-all { user-select: all !important; }
.user-select-auto { user-select: auto !important; }

/* ===================================
   POINTER EVENTS UTILITIES
   =================================== */
.pointer-events-none { pointer-events: none !important; }
.pointer-events-auto { pointer-events: auto !important; }

/* ===================================
   TOUCH UTILITIES
   =================================== */
.touch-none { touch-action: none !important; }
.touch-auto { touch-action: auto !important; }
.touch-pan-x { touch-action: pan-x !important; }
.touch-pan-y { touch-action: pan-y !important; }
.touch-pan-left { touch-action: pan-left !important; }
.touch-pan-right { touch-action: pan-right !important; }
.touch-pan-up { touch-action: pan-up !important; }
.touch-pan-down { touch-action: pan-down !important; }
.touch-pinch-zoom { touch-action: pinch-zoom !important; }
.touch-manipulation { touch-action: manipulation !important; }

/* ===================================
   WILL CHANGE UTILITIES
   =================================== */
.will-change-auto { will-change: auto !important; }
.will-change-scroll { will-change: scroll-position !important; }
.will-change-contents { will-change: contents !important; }
.will-change-transform { will-change: transform !important; }
.will-change-opacity { will-change: opacity !important; }

/* ===================================
   ISOLATION UTILITIES
   =================================== */
.isolate { isolation: isolate !important; }
.isolation-auto { isolation: auto !important; }

/* ===================================
   MIX BLEND MODE UTILITIES
   =================================== */
.mix-blend-normal { mix-blend-mode: normal !important; }
.mix-blend-multiply { mix-blend-mode: multiply !important; }
.mix-blend-screen { mix-blend-mode: screen !important; }
.mix-blend-overlay { mix-blend-mode: overlay !important; }
.mix-blend-darken { mix-blend-mode: darken !important; }
.mix-blend-lighten { mix-blend-mode: lighten !important; }
.mix-blend-color-dodge { mix-blend-mode: color-dodge !important; }
.mix-blend-color-burn { mix-blend-mode: color-burn !important; }
.mix-blend-hard-light { mix-blend-mode: hard-light !important; }
.mix-blend-soft-light { mix-blend-mode: soft-light !important; }
.mix-blend-difference { mix-blend-mode: difference !important; }
.mix-blend-exclusion { mix-blend-mode: exclusion !important; }
.mix-blend-hue { mix-blend-mode: hue !important; }
.mix-blend-saturation { mix-blend-mode: saturation !important; }
.mix-blend-color { mix-blend-mode: color !important; }
.mix-blend-luminosity { mix-blend-mode: luminosity !important; }

/* ===================================
   BACKGROUND BLEND MODE UTILITIES
   =================================== */
.bg-blend-normal { background-blend-mode: normal !important; }
.bg-blend-multiply { background-blend-mode: multiply !important; }
.bg-blend-screen { background-blend-mode: screen !important; }
.bg-blend-overlay { background-blend-mode: overlay !important; }
.bg-blend-darken { background-blend-mode: darken !important; }
.bg-blend-lighten { background-blend-mode: lighten !important; }
.bg-blend-color-dodge { background-blend-mode: color-dodge !important; }
.bg-blend-color-burn { background-blend-mode: color-burn !important; }
.bg-blend-hard-light { background-blend-mode: hard-light !important; }
.bg-blend-soft-light { background-blend-mode: soft-light !important; }
.bg-blend-difference { background-blend-mode: difference !important; }
.bg-blend-exclusion { background-blend-mode: exclusion !important; }
.bg-blend-hue { background-blend-mode: hue !important; }
.bg-blend-saturation { background-blend-mode: saturation !important; }
.bg-blend-color { background-blend-mode: color !important; }
.bg-blend-luminosity { background-blend-mode: luminosity !important; }

/* ===================================
   SCROLL BEHAVIOR UTILITIES
   =================================== */
.scroll-auto { scroll-behavior: auto !important; }
.scroll-smooth { scroll-behavior: smooth !important; }

/* Scroll Snap */
.snap-none { scroll-snap-type: none !important; }
.snap-x { scroll-snap-type: x mandatory !important; }
.snap-y { scroll-snap-type: y mandatory !important; }
.snap-both { scroll-snap-type: both mandatory !important; }
.snap-start { scroll-snap-align: start !important; }
.snap-end { scroll-snap-align: end !important; }
.snap-center { scroll-snap-align: center !important; }

/* ===================================
   ASPECT RATIO UTILITIES
   =================================== */
.aspect-square { aspect-ratio: 1 / 1 !important; }
.aspect-video { aspect-ratio: 16 / 9 !important; }
.aspect-4-3 { aspect-ratio: 4 / 3 !important; }
.aspect-21-9 { aspect-ratio: 21 / 9 !important; }

/* ===================================
   OBJECT FIT UTILITIES
   =================================== */
.object-contain { object-fit: contain !important; }
.object-cover { object-fit: cover !important; }
.object-fill { object-fit: fill !important; }
.object-none { object-fit: none !important; }
.object-scale-down { object-fit: scale-down !important; }

/* Object Position */
.object-bottom { object-position: bottom !important; }
.object-center { object-position: center !important; }
.object-left { object-position: left !important; }
.object-left-bottom { object-position: left bottom !important; }
.object-left-top { object-position: left top !important; }
.object-right { object-position: right !important; }
.object-right-bottom { object-position: right bottom !important; }
.object-right-top { object-position: right top !important; }
.object-top { object-position: top !important; }

/* ===================================
   Z-INDEX UTILITIES
   =================================== */
.z-0 { z-index: 0 !important; }
.z-10 { z-index: 10 !important; }
.z-20 { z-index: 20 !important; }
.z-30 { z-index: 30 !important; }
.z-40 { z-index: 40 !important; }
.z-50 { z-index: 50 !important; }
.z-auto { z-index: auto !important; }
.-z-10 { z-index: -10 !important; }

/* ===================================
   TEXT UTILITIES
   =================================== */
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-justify { text-align: justify !important; }

/* Text Transform */
.uppercase { text-transform: uppercase !important; }
.lowercase { text-transform: lowercase !important; }
.capitalize { text-transform: capitalize !important; }
.normal-case { text-transform: none !important; }

/* Font Weight */
.font-thin { font-weight: 100 !important; }
.font-extralight { font-weight: 200 !important; }
.font-light { font-weight: 300 !important; }
.font-normal { font-weight: 400 !important; }
.font-medium { font-weight: 500 !important; }
.font-semibold { font-weight: 600 !important; }
.font-bold { font-weight: 700 !important; }
.font-extrabold { font-weight: 800 !important; }
.font-black { font-weight: 900 !important; }

/* ===================================
   BORDER UTILITIES
   =================================== */
.border-0 { border-width: 0 !important; }
.border { border-width: 1px !important; }
.border-2 { border-width: 2px !important; }
.border-4 { border-width: 4px !important; }
.border-8 { border-width: 8px !important; }

/* Border Radius */
.rounded-none { border-radius: 0 !important; }
.rounded-sm { border-radius: 0.125rem !important; }
.rounded { border-radius: 0.25rem !important; }
.rounded-md { border-radius: 0.375rem !important; }
.rounded-lg { border-radius: 0.5rem !important; }
.rounded-xl { border-radius: 0.75rem !important; }
.rounded-2xl { border-radius: 1rem !important; }
.rounded-3xl { border-radius: 1.5rem !important; }
.rounded-full { border-radius: 9999px !important; }

/* ===================================
   SHADOW UTILITIES (Atomic Lab Theme)
   =================================== */
.shadow-none { box-shadow: none !important; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.5) !important; }
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.5), 0 1px 2px 0 rgba(0, 0, 0, 0.6) !important; }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.6) !important; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.5) !important; }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.4) !important; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.75) !important; }

/* Glow Shadows */
.shadow-glow-blue { box-shadow: 0 0 20px var(--neon-blue) !important; }
.shadow-glow-purple { box-shadow: 0 0 20px var(--plasma-purple) !important; }
.shadow-glow-green { box-shadow: 0 0 20px var(--radioactive-green) !important; }
.shadow-glow-orange { box-shadow: 0 0 20px var(--fusion-orange) !important; }

/* ===================================
   VISIBILITY UTILITIES
   =================================== */
.visible { visibility: visible !important; }
.invisible { visibility: hidden !important; }

/* ===================================
   PRINT UTILITIES
   =================================== */
@media print {
  .print-hidden { display: none !important; }
  .print-block { display: block !important; }
  .print-inline-block { display: inline-block !important; }
  .print-inline { display: inline !important; }
  .print-flex { display: flex !important; }
  .print-grid { display: grid !important; }
}

/* ===================================
   RESPONSIVE UTILITIES
   Small screens (≥576px)
   =================================== */
@media (min-width: 576px) {
  /* Display */
  .sm-d-none { display: none !important; }
  .sm-d-inline { display: inline !important; }
  .sm-d-inline-block { display: inline-block !important; }
  .sm-d-block { display: block !important; }
  .sm-d-grid { display: grid !important; }
  .sm-d-flex { display: flex !important; }
  
  /* Width */
  .sm-w-25 { width: 25% !important; }
  .sm-w-50 { width: 50% !important; }
  .sm-w-75 { width: 75% !important; }
  .sm-w-100 { width: 100% !important; }
  .sm-w-auto { width: auto !important; }
  
  /* Margin */
  .sm-m-0 { margin: 0 !important; }
  .sm-m-1 { margin: 0.25rem !important; }
  .sm-m-2 { margin: 0.5rem !important; }
  .sm-m-3 { margin: 1rem !important; }
  .sm-m-4 { margin: 1.5rem !important; }
  .sm-m-5 { margin: 3rem !important; }
  .sm-m-auto { margin: auto !important; }
  
  /* Padding */
  .sm-p-0 { padding: 0 !important; }
  .sm-p-1 { padding: 0.25rem !important; }
  .sm-p-2 { padding: 0.5rem !important; }
  .sm-p-3 { padding: 1rem !important; }
  .sm-p-4 { padding: 1.5rem !important; }
  .sm-p-5 { padding: 3rem !important; }
}

/* ===================================
   RESPONSIVE UTILITIES
   Medium screens (≥768px)
   =================================== */
@media (min-width: 768px) {
  /* Display */
  .md-d-none { display: none !important; }
  .md-d-inline { display: inline !important; }
  .md-d-inline-block { display: inline-block !important; }
  .md-d-block { display: block !important; }
  .md-d-grid { display: grid !important; }
  .md-d-flex { display: flex !important; }
  
  /* Width */
  .md-w-25 { width: 25% !important; }
  .md-w-50 { width: 50% !important; }
  .md-w-75 { width: 75% !important; }
  .md-w-100 { width: 100% !important; }
  .md-w-auto { width: auto !important; }
  
  /* Margin */
  .md-m-0 { margin: 0 !important; }
  .md-m-1 { margin: 0.25rem !important; }
  .md-m-2 { margin: 0.5rem !important; }
  .md-m-3 { margin: 1rem !important; }
  .md-m-4 { margin: 1.5rem !important; }
  .md-m-5 { margin: 3rem !important; }
  .md-m-auto { margin: auto !important; }
  
  /* Padding */
  .md-p-0 { padding: 0 !important; }
  .md-p-1 { padding: 0.25rem !important; }
  .md-p-2 { padding: 0.5rem !important; }
  .md-p-3 { padding: 1rem !important; }
  .md-p-4 { padding: 1.5rem !important; }
  .md-p-5 { padding: 3rem !important; }
  
  /* Flexbox */
  .md-flex-row { flex-direction: row !important; }
  .md-flex-column { flex-direction: column !important; }
  .md-justify-start { justify-content: flex-start !important; }
  .md-justify-center { justify-content: center !important; }
  .md-justify-end { justify-content: flex-end !important; }
  .md-justify-between { justify-content: space-between !important; }
}

/* ===================================
   RESPONSIVE UTILITIES
   Large screens (≥992px)
   =================================== */
@media (min-width: 992px) {
  /* Display */
  .lg-d-none { display: none !important; }
  .lg-d-inline { display: inline !important; }
  .lg-d-inline-block { display: inline-block !important; }
  .lg-d-block { display: block !important; }
  .lg-d-grid { display: grid !important; }
  .lg-d-flex { display: flex !important; }
  
  /* Width */
  .lg-w-25 { width: 25% !important; }
  .lg-w-50 { width: 50% !important; }
  .lg-w-75 { width: 75% !important; }
  .lg-w-100 { width: 100% !important; }
  .lg-w-auto { width: auto !important; }
  
  /* Margin */
  .lg-m-0 { margin: 0 !important; }
  .lg-m-1 { margin: 0.25rem !important; }
  .lg-m-2 { margin: 0.5rem !important; }
  .lg-m-3 { margin: 1rem !important; }
  .lg-m-4 { margin: 1.5rem !important; }
  .lg-m-5 { margin: 3rem !important; }
  .lg-m-auto { margin: auto !important; }
  
  /* Padding */
  .lg-p-0 { padding: 0 !important; }
  .lg-p-1 { padding: 0.25rem !important; }
  .lg-p-2 { padding: 0.5rem !important; }
  .lg-p-3 { padding: 1rem !important; }
  .lg-p-4 { padding: 1.5rem !important; }
  .lg-p-5 { padding: 3rem !important; }
}

/* ===================================
   RESPONSIVE UTILITIES
   Extra large screens (≥1200px)
   =================================== */
@media (min-width: 1200px) {
  /* Display */
  .xl-d-none { display: none !important; }
  .xl-d-inline { display: inline !important; }
  .xl-d-inline-block { display: inline-block !important; }
  .xl-d-block { display: block !important; }
  .xl-d-grid { display: grid !important; }
  .xl-d-flex { display: flex !important; }
  
  /* Width */
  .xl-w-25 { width: 25% !important; }
  .xl-w-50 { width: 50% !important; }
  .xl-w-75 { width: 75% !important; }
  .xl-w-100 { width: 100% !important; }
  .xl-w-auto { width: auto !important; }
}

/* ===================================
   ACCESSIBILITY UTILITIES
   =================================== */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

/* ===================================
   HOVER STATE UTILITIES
   =================================== */
.hover-opacity-75:hover { opacity: 0.75 !important; }
.hover-opacity-50:hover { opacity: 0.5 !important; }
.hover-scale-105:hover { transform: scale(1.05) !important; }
.hover-scale-110:hover { transform: scale(1.1) !important; }
.hover-brightness-110:hover { filter: brightness(1.1) !important; }
.hover-brightness-125:hover { filter: brightness(1.25) !important; }
.hover-shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.5) !important; }
.hover-shadow-glow:hover { box-shadow: 0 0 30px var(--neon-blue) !important; }

/* ===================================
   ANIMATION UTILITIES
   =================================== */
.animate-none { animation: none !important; }
.animate-spin { animation: spin 1s linear infinite !important; }
.animate-ping { animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; }
.animate-bounce { animation: bounce 1s infinite !important; }
.animate-float { animation: float 3s ease-in-out infinite !important; }
.animate-glow { animation: glow 2s ease-in-out infinite !important; }
.animate-quantum { animation: quantum 4s ease-in-out infinite !important; }
.animate-radioactive { animation: radioactive 2s ease-in-out infinite !important; }
.animate-orbit { animation: orbit 10s linear infinite !important; }
.animate-electron { animation: electron 3s linear infinite !important; }
.animate-shake { animation: shake 0.5s ease-in-out !important; }
.animate-fade-in { animation: fadeIn 0.3s ease-out !important; }
.animate-fade-out { animation: fadeOut 0.3s ease-out !important; }
.animate-slide-up { animation: slideUp 0.3s ease-out !important; }
.animate-slide-down { animation: slideDown 0.3s ease-out !important; }
.animate-slide-left { animation: slideLeft 0.3s ease-out !important; }
.animate-slide-right { animation: slideRight 0.3s ease-out !important; }
.animate-zoom-in { animation: zoomIn 0.3s ease-out !important; }
.animate-zoom-out { animation: zoomOut 0.3s ease-out !important; }

/* Animation Delays */
.animate-delay-100 { animation-delay: 100ms !important; }
.animate-delay-200 { animation-delay: 200ms !important; }
.animate-delay-300 { animation-delay: 300ms !important; }
.animate-delay-500 { animation-delay: 500ms !important; }
.animate-delay-700 { animation-delay: 700ms !important; }
.animate-delay-1000 { animation-delay: 1000ms !important; }

/* Animation Durations */
.animate-duration-150 { animation-duration: 150ms !important; }
.animate-duration-300 { animation-duration: 300ms !important; }
.animate-duration-500 { animation-duration: 500ms !important; }
.animate-duration-700 { animation-duration: 700ms !important; }
.animate-duration-1000 { animation-duration: 1000ms !important; }
.animate-duration-2000 { animation-duration: 2000ms !important; }
.animate-duration-3000 { animation-duration: 3000ms !important; }

/* Animation Fill Modes */
.animate-fill-none { animation-fill-mode: none !important; }
.animate-fill-forwards { animation-fill-mode: forwards !important; }
.animate-fill-backwards { animation-fill-mode: backwards !important; }
.animate-fill-both { animation-fill-mode: both !important; }

/* Keyframe Definitions */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes glow {
  0%, 100% { 
    box-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue), 0 0 15px var(--neon-blue);
  }
  50% { 
    box-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue), 0 0 30px var(--neon-blue);
  }
}

@keyframes quantum {
  0% { transform: scale(1) rotate(0deg); opacity: 1; }
  25% { transform: scale(1.1) rotate(90deg); opacity: 0.8; }
  50% { transform: scale(0.9) rotate(180deg); opacity: 1; }
  75% { transform: scale(1.05) rotate(270deg); opacity: 0.9; }
  100% { transform: scale(1) rotate(360deg); opacity: 1; }
}

@keyframes radioactive {
  0%, 100% { 
    filter: hue-rotate(0deg) brightness(1);
    transform: scale(1);
  }
  50% { 
    filter: hue-rotate(30deg) brightness(1.3);
    transform: scale(1.05);
  }
}


@keyframes electron {
  0% { transform: rotate(0deg) translateX(50px) rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) translateX(50px) rotate(-180deg) scale(0.8); }
  100% { transform: rotate(360deg) translateX(50px) rotate(-360deg) scale(1); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideLeft {
  from { transform: translateX(20px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideRight {
  from { transform: translateX(-20px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes zoomOut {
  from { transform: scale(1); opacity: 1; }
  to { transform: scale(0.9); opacity: 0; }
}