body {
      font-family: "Plus Jakarta Sans", "Poppins", ui-sans-serif, system-ui, sans-serif;
      background:
        radial-gradient(circle at 12% 16%, rgba(59, 130, 246, 0.28), transparent 34%),
        radial-gradient(circle at 88% 10%, rgba(56, 189, 248, 0.22), transparent 36%),
        radial-gradient(circle at 72% 84%, rgba(99, 102, 241, 0.24), transparent 44%),
        radial-gradient(circle at 22% 78%, rgba(34, 211, 238, 0.18), transparent 38%),
        linear-gradient(132deg, #040912 0%, #0a1633 28%, #102754 56%, #111d44 78%, #060f25 100%);
      background-size: 170% 170%, 170% 170%, 170% 170%, 170% 170%, 340% 340%;
      animation: auroraDrift 16s ease-in-out infinite;
      color: #c0d6f9;
      overflow-x: hidden;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    body.fx-tab-hidden {
      animation-play-state: paused !important;
    }

    body.fx-tab-hidden::before {
      animation-play-state: paused !important;
    }

    html {
      background: #040912;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: -20%;
      background-image: 
        radial-gradient(circle at 25% 35%, rgba(59, 130, 246, 0.2) 0%, transparent 46%),
        radial-gradient(circle at 72% 68%, rgba(14, 165, 233, 0.16) 0%, transparent 42%);
      filter: blur(36px);
      animation: ambientFloat 22s ease-in-out infinite;
      pointer-events: none;
      z-index: 0;
    }

    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background:
        radial-gradient(circle at center, transparent 45%, rgba(2, 6, 23, 0.58) 100%),
        linear-gradient(180deg, rgba(12, 22, 48, 0.06) 0%, rgba(7, 13, 30, 0.42) 100%),
        repeating-linear-gradient(
          40deg,
          rgba(148, 163, 184, 0.03) 0px,
          rgba(148, 163, 184, 0.03) 1px,
          transparent 1px,
          transparent 8px
        ),
        repeating-linear-gradient(
          -42deg,
          rgba(14, 165, 233, 0.025) 0px,
          rgba(14, 165, 233, 0.025) 1px,
          transparent 1px,
          transparent 10px
        );
      pointer-events: none;
      z-index: 0;
    }

    body.fx-white-mask::after {
      opacity: 0.84;
      transition: opacity 0.24s ease;
    }

    html,
    body {
      overflow-x: hidden;
      width: 100%;
      max-width: 100%;
    }

    @keyframes auroraDrift {
      0% {
        background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 50%;
      }
      50% {
        background-position: 15% 20%, 82% 8%, 72% 82%, 18% 72%, 100% 50%;
      }
      100% {
        background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 50%;
      }
    }

    @keyframes ambientFloat {
      0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
      }
      50% {
        transform: translate3d(2%, -2%, 0) scale(1.04);
      }
    }

    @keyframes ambientParticle {
      0% {
        transform: translate3d(0, 0, 0);
        opacity: 0.2;
      }
      50% {
        opacity: 0.7;
      }
      100% {
        transform: translate3d(var(--tx), var(--ty), 0);
        opacity: 0.25;
      }
    }

    @keyframes gradientPulse {
      0%, 100% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
    }

    @keyframes rgbTextFlow {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }

    @keyframes glowPulseHero {
      0%, 100% {
        opacity: 0.92;
      }
      50% {
        opacity: 1;
      }
    }

    @keyframes glowPulseSection {
      0%, 100% {
        opacity: 0.84;
      }
      50% {
        opacity: 0.97;
      }
    }

    @keyframes firstLoadReveal {
      0% {
        opacity: 1;
      }
      72% {
        opacity: 1;
      }
      100% {
        opacity: 0;
      }
    }

    @keyframes firstLoadShimmer {
      0% {
        transform: translate3d(-120%, 0, 0);
      }
      100% {
        transform: translate3d(140%, 0, 0);
      }
    }

@keyframes firstLoadRingPulse {
  0% {
    transform: scale(0.62);
    opacity: 0;
  }
  52% {
    opacity: 0.95;
  }
  100% {
    transform: scale(1.26);
    opacity: 0;
  }
}

@keyframes firstLoadCorePulse {
  0% {
    transform: scale(0.52);
    opacity: 0;
  }
  48% {
    opacity: 0.92;
  }
  100% {
    transform: scale(1.34);
    opacity: 0;
  }
}

@keyframes firstLoadLabelPop {
  0% {
    transform: translateY(8px) scale(0.9);
    opacity: 0;
  }
  42% {
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.88;
  }
}

    .cursor-glow {
      position: fixed;
      top: 0;
      left: 0;
      width: 38px;
      height: 38px;
      border-radius: 9999px;
      pointer-events: none;
      z-index: 120;
      transform: translate3d(-999px, -999px, 0);
      background: radial-gradient(circle, rgba(96, 165, 250, 0.38), rgba(37, 99, 235, 0.08) 65%, transparent 100%);
      box-shadow: 0 0 24px rgba(59, 130, 246, 0.42);
      opacity: 0;
      transition: opacity 0.25s ease, width 0.2s ease, height 0.2s ease;
      will-change: transform;
    }

    .cursor-dot {
      position: fixed;
      top: 0;
      left: 0;
      width: 8px;
      height: 8px;
      border-radius: 9999px;
      pointer-events: none;
      z-index: 121;
      transform: translate3d(-999px, -999px, 0);
      background: #bfdbfe;
      box-shadow: 0 0 14px rgba(147, 197, 253, 0.8);
      opacity: 0;
      transition: opacity 0.25s ease;
      will-change: transform;
    }

    body.cursor-tracking .cursor-glow,
    body.cursor-tracking .cursor-dot {
      opacity: 1;
    }

    body.cursor-hovering-link .cursor-glow {
      width: 52px;
      height: 52px;
      background: radial-gradient(circle, rgba(14, 165, 233, 0.45), rgba(2, 132, 199, 0.08) 65%, transparent 100%);
      box-shadow: 0 0 30px rgba(14, 165, 233, 0.5);
    }

    body.first-load-active {
      overflow: hidden;
    }

    .first-load-overlay {
      position: fixed;
      inset: 0;
      z-index: 180;
      pointer-events: none;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.35s ease;
      background:
        radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.2), rgba(2, 6, 23, 0.94) 72%),
        linear-gradient(150deg, rgba(15, 23, 42, 0.96), rgba(8, 16, 36, 0.92));
      backdrop-filter: blur(3px);
    }

    .first-load-overlay.is-visible {
      opacity: 1;
    }

    .first-load-overlay.is-fading {
      animation: firstLoadReveal 980ms ease-out forwards;
    }

    .first-load-overlay::after {
      content: "";
      position: absolute;
      inset: -20%;
      background: linear-gradient(112deg, transparent 36%, rgba(125, 211, 252, 0.36) 50%, transparent 64%);
      animation: firstLoadShimmer 980ms ease-out forwards;
      mix-blend-mode: screen;
    }

    .first-load-ring {
      position: absolute;
      width: min(62vw, 520px);
      aspect-ratio: 1 / 1;
      border-radius: 999px;
      border: 1px solid rgba(125, 211, 252, 0.45);
      box-shadow:
        0 0 40px rgba(56, 189, 248, 0.35),
        inset 0 0 24px rgba(96, 165, 250, 0.2);
      animation: firstLoadRingPulse 1.25s ease-out 1;
    }

    .first-load-core {
      position: absolute;
      width: min(26vw, 180px);
      aspect-ratio: 1 / 1;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(191, 219, 254, 0.95) 0%, rgba(59, 130, 246, 0.38) 48%, rgba(30, 64, 175, 0) 72%);
      filter: blur(0.2px);
      animation: firstLoadCorePulse 1.18s ease-out 1;
    }

    .first-load-label {
      position: relative;
      z-index: 1;
      border: 1px solid rgba(125, 211, 252, 0.45);
      background: rgba(10, 20, 44, 0.58);
      color: #dbeafe;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 0.62rem 1rem;
      border-radius: 999px;
      box-shadow: 0 0 24px rgba(56, 189, 248, 0.36);
      animation: firstLoadLabelPop 1.18s ease-out 1;
    }

    .ui-sound-toggle {
      position: fixed;
      right: 1rem;
      bottom: 1rem;
      z-index: 160;
      border: 1px solid rgba(125, 211, 252, 0.45);
      background: rgba(8, 17, 36, 0.78);
      color: #dbeafe;
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      border-radius: 999px;
      padding: 0.42rem 0.78rem;
      box-shadow: 0 10px 22px rgba(2, 6, 23, 0.42);
      backdrop-filter: blur(8px);
      transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    }

    .ui-sound-toggle:hover,
    .ui-sound-toggle:focus-visible {
      transform: translateY(-1px);
      border-color: rgba(125, 211, 252, 0.75);
      background: rgba(15, 31, 62, 0.88);
      outline: none;
    }

    @media (pointer: fine) {
      body.cursor-trail-only,
      body.cursor-trail-only * {
        cursor: none !important;
      }
    }

    .hero-rgb-title .rgb-title-main,
    .hero-rgb-title .rgb-accent,
    .section-rgb-title {
      display: inline-block;
      background-image: linear-gradient(
        110deg,
        #f8fbff 0%,
        #93c5fd 20%,
        #67e8f9 38%,
        #a5b4fc 56%,
        #22d3ee 74%,
        #ffffff 100%
      );
      background-size: 320% 100%;
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      filter: saturate(1.15);
      text-shadow:
        0 0 10px rgba(147, 197, 253, 0.65),
        0 0 22px rgba(56, 189, 248, 0.55),
        0 0 34px rgba(59, 130, 246, 0.45),
        0 0 54px rgba(14, 165, 233, 0.38);
      animation: rgbTextFlow 4.8s linear infinite;
    }

    .hero-rgb-title {
      color: #dbeafe;
    }

    .hero-rgb-title .rgb-title-main,
    .hero-rgb-title .rgb-accent {
      animation:
        rgbTextFlow 4.8s linear infinite,
        glowPulseHero 2.7s ease-in-out infinite;
    }

    .section-rgb-title {
      animation:
        rgbTextFlow 6s linear infinite,
        glowPulseSection 3.1s ease-in-out infinite;
      text-shadow:
        0 0 5px rgba(147, 197, 253, 0.34),
        0 0 11px rgba(56, 189, 248, 0.28),
        0 0 18px rgba(59, 130, 246, 0.22);
      filter: saturate(1.04);
    }

    #sidebar-overlay {
      background: rgba(14, 30, 64, 0.85);
      backdrop-filter: blur(12px);
      position: fixed;
      inset: 0;
      z-index: 50;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    #sidebar-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    #sidebar {
      background: rgba(14, 30, 64, 0.95);
      backdrop-filter: blur(14px);
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 250px;
      max-width: 80vw;
      box-shadow: 0 0 25px rgba(59, 130, 246, 0.7);
      transform: translateX(-100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 60;
      display: flex;
      flex-direction: column;
      padding-top: 5.5rem;
      padding-bottom: 3rem;
      border-right: 1px solid rgba(59, 130, 246, 0.3);
    }
    #sidebar.active {
      transform: translateX(0);
    }

    #sidebar ul {
      list-style: none;
      padding-left: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }
    #sidebar ul li:first-child {
      margin-top: 2.5rem;
    }
    h1, h2, h3, #sidebar ul li a {
      font-family: "Outfit", "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
      letter-spacing: -0.02em;
    }

    #sidebar ul li a {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      font-weight: 600;
      font-size: 1.125rem;
      color: #93c5fd;
      text-decoration: none;
      padding: 0.75rem 1.25rem;
      border-radius: 0.5rem;
      transition: background-color 0.3s ease, color 0.3s ease;
      user-select: none;
    }
    #sidebar ul li a i {
      color: #3b82f6;
      font-size: 1.5rem;
      min-width: 28px;
      text-align: center;
    }
    #sidebar ul li a:hover,
    #sidebar ul li a:focus {
      background-color: rgba(59, 130, 246, 0.25);
      color: #bfdbfe;
      outline: none;
    }

    #hamburger-btn {
      position: fixed;
      top: 1rem;
      left: 1rem;
      z-index: 70;
      width: 44px;
      height: 44px;
      background: rgba(14, 30, 64, 0.85);
      backdrop-filter: blur(12px);
      border-radius: 0.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 7px;
      padding: 7px 9px;
      cursor: pointer;
      box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
      transition: background-color 0.3s ease;
      user-select: none;
    }
    #hamburger-btn:hover,
    #hamburger-btn:focus {
      background: rgba(59, 130, 246, 0.85);
      outline: none;
    }
    #hamburger-btn span {
      display: block;
      height: 3.5px;
      background-color: #93c5fd;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    #hamburger-btn.active span:nth-child(1) {
      transform: translateY(11px) rotate(45deg);
    }
    #hamburger-btn.active span:nth-child(2) {
      opacity: 0;
    }
    #hamburger-btn.active span:nth-child(3) {
      transform: translateY(-11px) rotate(-45deg);
    }

    main {
      padding: 4rem 1.5rem 2rem;
      max-width: 5xl;
      margin-left: 0;
      transition: margin-left 0.35s ease;
      flex-grow: 1;
      position: relative;
      z-index: 1;
      contain: inline-size;
    }
    @media (min-width: 768px) {
      main.sidebar-open {
        margin-left: 250px;
      }
    }

    .fade-in-slide {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .fade-in-slide.visible {
      opacity: 1;
      transform: translateY(0);
    }

    section h2 {
      margin-top: 3rem;
      margin-bottom: 2rem;
    }

    main::-webkit-scrollbar {
      width: 8px;
    }
    main::-webkit-scrollbar-thumb {
      background-color: rgba(59, 130, 246, 0.3);
      border-radius: 4px;
    }

    footer {
      border-top: 1px solid rgba(59, 130, 246, 0.4);
      padding: 1.25rem 1.5rem 1.25rem;
      background: rgba(14, 30, 64, 0.9);
      backdrop-filter: blur(12px);
      color: #93c5fd;
      text-align: center;
      font-size: 0.9rem;
      user-select: none;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
      margin-bottom: 0;
    }
    footer .hashtags {
      display: flex;
      justify-content: center;
      gap: 1.25rem;
      flex-wrap: wrap;
      color: #60a5fa;
      margin-bottom: 1rem;
    }
    footer .hashtags span {
      background-color: rgba(59, 130, 246, 0.2);
      padding: 0.15rem 0.6rem;
      border-radius: 9999px;
      font-weight: 600;
      user-select: text;
    }
    footer .copyright {
      margin-top: 0.75rem;
      font-size: 0.75rem;
      color: #3b82f6;
      user-select: text;
    }

    .bot-preview {
      max-width: 400px;
      margin: 0 auto;
      border-radius: 1rem;
      box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
      overflow: hidden;
      user-select: none;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    .bot-preview:hover {
      transform: scale(1.03);
    }
    .bot-preview img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 1rem;
      object-fit: contain;
      background: #1e40af;
      box-shadow: 0 0 15px rgba(59, 130, 246, 0.7);
    }

    img.optimized-image {
      opacity: 1;
      transition: opacity 0.45s ease, filter 0.45s ease;
    }

    img.optimized-image.is-lazy,
    img.optimized-image.is-loading {
      opacity: 0.6;
      filter: blur(8px);
    }

    img.optimized-image.is-ready,
    img.optimized-image.is-loaded {
      opacity: 1;
      filter: blur(0);
    }

    .bot-previews-container {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      padding-top: 2rem;
      justify-items: center;
    }
    .alert-success {
      background-color: #d1fae5;
      color: #065f46;
      border: 1px solid #10b981;
    }

    .alert-error {
      background-color: #fee2e2;
      color: #991b1b;
      border: 1px solid #f87171;
    }

    #image-modal {
      position: fixed;
      inset: 0;
      background: rgba(14, 30, 64, 0.95);
      backdrop-filter: blur(14px);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    #image-modal.active {
      opacity: 1;
      pointer-events: auto;
    }
    #image-modal .modal-content {
      position: relative;
      max-width: 90vw;
      max-height: 90vh;
      border-radius: 1rem;
      box-shadow: 0 0 30px rgba(59, 130, 246, 0.8);
      overflow: hidden;
      background: #1e40af;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    #image-modal img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
      border-radius: 1rem;
      user-select: none;
    }
    #image-modal button.close-btn {
      position: absolute;
      top: 0.5rem;
      right: 0.5rem;
      background: rgba(59, 130, 246, 0.8);
      border: none;
      color: white;
      font-size: 1.75rem;
      padding: 0.25rem 0.6rem;
      border-radius: 9999px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      user-select: none;
      line-height: 1;
    }
    #image-modal button.close-btn:hover,
    #image-modal button.close-btn:focus {
      background: rgba(59, 130, 246, 1);
      outline: none;
    }

    @media (max-width: 767px) {
      #sidebar {
        width: 80vw;
        max-width: none;
        padding-top: 3rem;
      }
      main.sidebar-open {
        margin-left: 0;
      }
      .bot-preview {
        max-width: 100%;
      }

      .ui-sound-toggle {
        right: 10px;
        bottom: 10px;
        font-size: 0.7rem;
      }
    }
    
    /* Form Improvements */
    form input, form textarea {
      transition: all 0.3s ease;
    }
    
    form input:focus, form textarea:focus {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }
    
    .hero-highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      justify-content: center;
      margin-bottom: 1.75rem;
    }

    .hero-highlights li {
      list-style: none;
      background: rgba(30, 64, 175, 0.25);
      border: 1px solid rgba(147, 197, 253, 0.32);
      color: #dbeafe;
      font-size: 0.875rem;
      padding: 0.45rem 0.9rem;
      border-radius: 999px;
      backdrop-filter: blur(8px);
    }

    .cta-button {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      border: 1px solid transparent;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    form button[type="submit"] {
      background-image: linear-gradient(120deg, #2563eb 0%, #1d4ed8 45%, #0ea5e9 100%);
      background-size: 200% 200%;
      animation: gradientPulse 8s ease infinite;
      border: 1px solid rgba(147, 197, 253, 0.35);
      transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    }

    form button[type="submit"]:hover,
    form button[type="submit"]:focus-visible {
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(37, 99, 235, 0.32);
      filter: brightness(1.05);
      outline: none;
    }

    .cta-button::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 48%, transparent 100%);
      transform: translateX(-130%);
      transition: transform 0.6s ease;
      z-index: -1;
    }

    .cta-button:hover::before,
    .cta-button:focus-visible::before {
      transform: translateX(130%);
    }

    .cta-button:hover,
    .cta-button:focus-visible {
      transform: translateY(-2px);
      box-shadow: 0 12px 22px rgba(30, 64, 175, 0.34);
      outline: none;
    }

    .cta-primary {
      background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 55%, #1e40af 100%);
      border-color: rgba(147, 197, 253, 0.35);
    }

    .cta-secondary {
      background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 45%, #0f766e 100%);
      border-color: rgba(125, 211, 252, 0.4);
    }

    .service-link {
      color: #93c5fd;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.25s ease, gap 0.25s ease;
    }

    .service-link:hover,
    .service-link:focus-visible {
      color: #dbeafe;
      gap: 0.8rem;
      outline: none;
    }

    #projects article,
    #portfolio article,
    #certificates article {
      border: 1px solid rgba(96, 165, 250, 0.2);
      box-shadow: 0 10px 26px rgba(8, 47, 73, 0.35);
      transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    }

    #projects article:hover,
    #portfolio article:hover,
    #certificates article:hover {
      transform: translateY(-6px);
      border-color: rgba(96, 165, 250, 0.45);
      box-shadow: 0 16px 34px rgba(37, 99, 235, 0.34);
    }
    
    /* Text Improvements */
    p {
      line-height: 1.7;
    }
    
    h1, h2, h3 {
      line-height: 1.3;
    }
    
    /* Spacing Utilities */
    .space-y-3 > * + * {
      margin-top: 0.75rem;
    }
    
    .space-y-6 > * + * {
      margin-top: 1.5rem;
    }
    
    /* Additional Layout Fixes */
    .flex {
      display: flex;
    }
    
    .flex-col {
      flex-direction: column;
    }
    
    .flex-col-reverse {
      flex-direction: column-reverse;
    }
    
    .items-center {
      align-items: center;
    }
    
    .justify-center {
      justify-content: center;
    }
    
    .flex-1 {
      flex: 1 1 0%;
    }
    
    .flex-shrink-0 {
      flex-shrink: 0;
    }
    
    @media (min-width: 768px) {
      .hero-highlights {
        justify-content: flex-start;
      }

      .md\\:flex-row {
        flex-direction: row;
      }
      
      .md\\:text-left {
        text-align: left;
      }
      
      .md\\:inline {
        display: inline;
      }
    }

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

      .fade-in-slide {
        opacity: 1 !important;
        transform: none !important;
      }

      .cursor-glow,
      .cursor-dot {
        display: none !important;
      }

      .hero-rgb-title .rgb-title-main,
      .hero-rgb-title .rgb-accent,
      .section-rgb-title {
        animation: none !important;
        color: #93c5fd;
        background-image: none;
      }

      .first-load-overlay {
        display: none !important;
      }
    }

    #skills .skill-icon-glow {
      filter: drop-shadow(0 0 11px rgba(96, 165, 250, 0.45));
    }
