    .material-symbols-outlined {
      font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
      display: inline-block;
      vertical-align: middle;
    }

    ::-webkit-scrollbar {
      width: 4px;
    }

    ::-webkit-scrollbar-track {
      background: #000;
    }

    ::-webkit-scrollbar-thumb {
      background: #00ff41;
    }

    @keyframes text-glitch {
      0% {
        transform: translate(0);
      }

      20% {
        transform: translate(-2px, 2px);
      }

      40% {
        transform: translate(-2px, -2px);
      }

      60% {
        transform: translate(2px, 2px);
      }

      80% {
        transform: translate(2px, -2px);
      }

      100% {
        transform: translate(0);
      }
    }

    .glitch-hover:hover .glitch-text {
      animation: text-glitch 0.2s cubic-bezier(.25, .46, .45, .94) both infinite;
      color: #00ff41;
    }

    /* WP Core Interactive Glitch Logic */
    .wp-core-container .wp-path-glitch {
      stroke-dasharray: 1500;
      stroke-dashoffset: 1500;
      transition: stroke-dashoffset 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      stroke: #00ff41;
    }

    .wp-core-container:hover .wp-path-glitch {
      stroke-dashoffset: 0;
      animation: text-glitch 0.3s infinite;
    }

    .wp-core-container .wp-core-base {
      transition: all 0.5s ease;
      filter: drop-shadow(0 0 2px rgba(255, 180, 171, 0.2));
      stroke: #ffb4ab;
    }

    .wp-core-container:hover .wp-core-base {
      filter: drop-shadow(0 0 15px rgba(0, 255, 65, 0.6));
      stroke: #00ff41;
      transform: scale(1.02);
    }

    .wp-core-container .pulse-overlay {
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .wp-core-container:hover .pulse-overlay {
      opacity: 0.15;
      animation: pulse 1s infinite;
    }

    /* Timeline Tracer Animation */
    .timeline-tracer {
      height: 0;
      transition: height 0.5s ease;
    }

    .timeline-container:hover .timeline-tracer {
      height: 100%;
    }

    /* Aurora Image Compositing */
    .hologram-asset {
      mix-blend-mode: screen;
      filter: grayscale(1) sepia(1) hue-rotate(70deg) saturate(3) opacity(0.8);
    }

    .hologram-invert {
      mix-blend-mode: screen;
      filter: invert(1) grayscale(1) sepia(1) hue-rotate(70deg) saturate(3) opacity(0.8);
    }

    /* Brand Icon overrides */
    .brand-icon {
      width: 32px;
      height: 32px;
      fill: none;
      stroke: var(--color-toxic-green, #00ff41);
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: all 0.3s ease;
    }

    /* Plasma Candle Logic */
    .real-candle {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      width: 12px;
      height: 40px;
      position: relative;
    }

    .real-candle .flame {
      width: 8px;
      height: 16px;
      background: #e6ffe6;
      border-radius: 50% 50% 20% 20%;
      position: absolute;
      top: -12px;
      box-shadow: 0 0 15px 5px #00ff41, 0 -10px 40px 10px rgba(0, 204, 51, 0.8);
      animation: necrotic-flicker 0.12s infinite alternate;
      transform-origin: bottom center;
      z-index: 2;
      mix-blend-mode: screen;
    }

    .real-candle .wick {
      width: 2px;
      height: 6px;
      background: #000;
      position: absolute;
      top: 4px;
      z-index: 2;
    }

    .real-candle .wax {
      width: 12px;
      height: 30px;
      background: linear-gradient(to bottom, rgba(0, 255, 65, 0.4), rgba(11, 18, 13, 0.9));
      position: absolute;
      bottom: 0;
      border-radius: 2px 2px 0 0;
    }

    @keyframes necrotic-flicker {
      0% {
        transform: scale(0.9) rotate(-4deg);
        opacity: 0.8;
        box-shadow: 0 0 10px 3px #00ff41;
      }

      100% {
        transform: scale(1.1) rotate(4deg);
        opacity: 1;
        box-shadow: 0 0 25px 8px #39ff14;
      }
    }

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

    .ignition-flash {
      position: fixed;
      inset: 0;
      background: #00ff41;
      mix-blend-mode: overlay;
      pointer-events: none;
      z-index: 999;
      opacity: 0;
    }

    .cursor-blink {
      animation: blink 1s step-end infinite;
    }

    @keyframes blink {
      50% {
        opacity: 0;
      }
    }

    .gsap-el {
      visibility: hidden;
    }

    /* Slider Overrides */
    input[type=range]::-webkit-slider-thumb {
      appearance: none;
      width: 12px;
      height: 24px;
      background: #00ff41;
      cursor: crosshair;
      border-radius: 0;
      box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
    }

    input[type=range]::-moz-range-thumb {
      width: 12px;
      height: 24px;
      background: #00ff41;
      cursor: crosshair;
      border-radius: 0;
      box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
      border: none;
    }
