      body {
        background-color: #000;
        color: #E5E7EB; /* gray-200 */
      }

      .min-h-screen {
	min-height: 55vh!important;
	padding-top: 8vh!important;
	margin-bottom: -8vh!important;
      }


      .font-retro {
        font-family: 'VT323', monospace;
      }
      .font-modern {
        font-family: 'Manrope', sans-serif;
      }
      
      /* Hero Animations */
      @keyframes fade-in-down {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
      }
      @keyframes fade-in-up {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
      }
      .animate-fade-in-down { animation: fade-in-down 0.8s ease-out forwards; }
      .animate-fade-in-up { animation: fade-in-up 0.8s ease-out forwards; }
      .animation-delay-300 { animation-delay: 300ms; }
      .animation-delay-450 { animation-delay: 450ms; }
      .animation-delay-600 { animation-delay: 600ms; }


      /* Scanline Overlay Effect */
      .scanline-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 9999;
      }
      .scanline-overlay::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(
          rgba(18, 16, 16, 0) 50%,
          rgba(0, 0, 0, 0.25) 50%
        ),
        linear-gradient(
          90deg,
          rgba(255, 0, 0, 0.06),
          rgba(0, 255, 0, 0.02),
          rgba(0, 0, 255, 0.06)
        );
        background-size: 100% 4px, 100% 100%;
        z-index: 1;
        animation: scanline 15s linear infinite;
        opacity: 0.2;
      }

      @keyframes scanline {
        0% { background-position: 0 0; }
        100% { background-position: 0 100vh; }
      }
      
      /* Glitch Effect for Showcase */
      .glitch-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('');
        background-size: cover;
        opacity: 0;
        transition: opacity 0.5s ease-out;
        z-index: 10;
        pointer-events: none;
      }
      .glitch-container.is-visible::before {
        animation: glitch-reveal 0.25s steps(1, end) forwards;
      }
      
      @keyframes glitch-reveal {
        0% { opacity: 0.8; }
        20% { opacity: 0.3; }
        40% { opacity: 0.9; }
        60% { opacity: 0.2; }
        80% { opacity: 0.7; }
        100% { opacity: 0; }
      }

      /* Pulsing Button */
      @keyframes pulse-glow {
        0%, 100% {
          box-shadow: 0 0 5px #3B82F6, 0 0 10px #3B82F6, 0 0 15px #3B82F6;
        }
        50% {
          box-shadow: 0 0 10px #3B82F6, 0 0 20px #3B82F6, 0 0 30px #3B82F6;
        }
      }
      .pulse-glow-button {
        animation: pulse-glow 2s infinite ease-in-out;
      }
      
      /* Volume Bar Style */
      .volume-bar {
        display: inline-block;
        width: 8px;
        height: 24px;
        background-color: #39FF14; /* Neon Green */
      }
