body {
      box-sizing: border-box;
    }
    
    * {
      scrollbar-width: thin;
      scrollbar-color: #CCFF00 #111;
    }
    
    ::-webkit-scrollbar {
      width: 6px;
    }
    
    ::-webkit-scrollbar-track {
      background: #111;
    }
    
    ::-webkit-scrollbar-thumb {
      background: #CCFF00;
      border-radius: 3px;
    }
    
    @keyframes pulse-glow {
      0%, 100% { box-shadow: 0 0 20px rgba(204, 255, 0, 0.3); }
      50% { box-shadow: 0 0 40px rgba(204, 255, 0, 0.6); }
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    
    @keyframes scan-line {
      0% { transform: translateY(-100%); }
      100% { transform: translateY(100%); }
    }
    
    @keyframes typewriter {
      from { width: 0; }
      to { width: 100%; }
    }
    
    @keyframes blink {
      0%, 50% { opacity: 1; }
      51%, 100% { opacity: 0; }
    }
    
    @keyframes slide-up {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes gradient-shift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    
    .animate-pulse-glow {
      animation: pulse-glow 2s ease-in-out infinite;
    }
    
    .animate-float {
      animation: float 3s ease-in-out infinite;
    }
    
    .animate-slide-up {
      animation: slide-up 0.6s ease-out forwards;
    }
    
    .gradient-text {
      background: linear-gradient(90deg, #CCFF00, #88FF00, #CCFF00);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradient-shift 3s ease infinite;
    }
    
    .terminal-cursor::after {
      content: '> ';
      animation: blink 1s step-end infinite;
      color: #CCFF00;
    }
    
    .glass-card {
      background: rgba(17, 17, 17, 0.8);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(204, 255, 0, 0.1);
    }
    
    .neon-border {
      position: relative;
    }
    
    .neon-border::before {
      content: '';
      position: absolute;
      inset: -2px;
      background: linear-gradient(90deg, #CCFF00, transparent, #CCFF00);
      border-radius: inherit;
      z-index: -1;
      opacity: 0.5;
    }
    
    .live-dot {
      width: 8px;
      height: 8px;
      background: #CCFF00;
      border-radius: 50%;
      animation: pulse-glow 1.5s ease-in-out infinite;
    }
    
    .feed-item {
      animation: slide-up 0.4s ease-out forwards;
    }
    
    .hover-lift {
      transition: all 0.3s ease;
    }
    
    .hover-lift:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 40px rgba(204, 255, 0, 0.2);
    }
    
    .noise-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      opacity: 0.03;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      z-index: 1000;
    }
    
    .grid-bg {
      background-image: 
        linear-gradient(rgba(204, 255, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(204, 255, 0, 0.03) 1px, transparent 1px);
      background-size: 50px 50px;
    }
  
    @view-transition { navigation: auto; }