body {
            font-family: 'Inter', sans-serif;
            background-color: #000000;
            color: #e5e7eb; /* Light gray for body text */
        }
        h1, h2, h3 {
            font-family: 'Orbitron', monospace;
            color: #ffffff;
        }
        .hero-section {
            background: linear-gradient(145deg, #000000 0%, #0a0a0a 50%, #000000 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            height: 100dvh;
        }
        .hero-bg-effect {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.18;
            background: 
                repeating-radial-gradient(circle at 20% 30%, #ff6b3533 0 2px, transparent 3px 100%),
                repeating-radial-gradient(circle at 80% 70%, #ff6b3533 0 2px, transparent 3px 100%),
                linear-gradient(135deg, #111111 0%, #000000 100%),
                linear-gradient(45deg, rgba(255, 107, 53, 0.07) 1px, transparent 1px),
                linear-gradient(-45deg, rgba(255, 107, 53, 0.07) 1px, transparent 1px);
            background-size: 120px 120px, 120px 120px, 100% 100%, 60px 60px, 60px 60px;
            animation: background-pan 40s linear infinite;
        }
        @keyframes background-pan {
            0% { background-position: 0% 0%; }
            100% { background-position: 100% 100%; }
        }

        .hero-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 1;
        }
        .hero-particle {
            position: absolute;
            background-color: #ff6b35;
            border-radius: 50%;
            opacity: 0.05;
            animation: particle-float 20s infinite ease-in-out;
        }

        @keyframes particle-float {
            0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.05; }
            25% { transform: translateY(-20px) translateX(10px) scale(1.1); opacity: 0.1; }
            50% { transform: translateY(0px) translateX(0px) scale(0.9); opacity: 0.05; }
            75% { transform: translateY(20px) translateX(-10px) scale(1.1); opacity: 0.1; }
        }

        /* Generate some particles */
        .hero-particle:nth-child(1) { width: 10px; height: 10px; top: 10%; left: 15%; animation-delay: 0s; }
        .hero-particle:nth-child(2) { width: 15px; height: 15px; top: 30%; left: 80%; animation-delay: 4s; }
        .hero-particle:nth-child(3) { width: 8px; height: 8px; top: 60%; left: 30%; animation-delay: 8s; }
        .hero-particle:nth-child(4) { width: 12px; height: 12px; top: 80%; left: 60%; animation-delay: 12s; }
        .hero-particle:nth-child(5) { width: 7px; height: 7px; top: 20%; left: 50%; animation-delay: 16s; }
        .hero-particle:nth-child(6) { width: 18px; height: 18px; top: 70%; left: 10%; animation-delay: 2s; }
        .hero-particle:nth-child(7) { width: 11px; height: 11px; top: 45%; left: 90%; animation-delay: 6s; }

        .text-gradient-orange {
            background-image: linear-gradient(to right, #ff6b35, #ff9933, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
            background-size: 200% auto;
            animation: text-gradient 3s linear infinite;
        }

        .cta-button {
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 300%;
            height: 300%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            transition: all 0.4s ease-out;
            transform: translate(-50%, -50%) scale(0);
            opacity: 0;
            z-index: -1;
        }
        .cta-button:hover::before {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }

        .glow {
            box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
        }
        .glow-strong {
            box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
        }
        .pulse-orange {
            animation: pulse-strong 2s ease-in-out infinite;
        }
        .game-ui {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
        }
        .mesh-bg {
            background: 
                radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, #111111 0%, #000000 50%, #111111 100%);
            position: relative;
        }
        .mesh-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(255, 107, 53, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
            background-size: 60px 60px;
            opacity: 0.3;
        }
        .feature-card {
            background: 
                linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
            border: 1px solid rgba(255, 107, 53, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg at 50% 50%, rgba(255, 107, 53, 0.3) 0%, transparent 10%, transparent 90%, rgba(255, 107, 53, 0.3) 100%);
            animation: rotate-border 8s linear infinite;
            z-index: 0;
            opacity: 0.3;
        }
        .feature-card:hover::before {
            animation-play-state: paused; /* Pause rotation on hover */
            opacity: 0.6;
        }
        .feature-card > * {
            position: relative;
            z-index: 1;
        }
        @keyframes rotate-border {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .feature-card:hover {
            border-color: rgba(255, 107, 53, 0.5);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3), 0 0 40px rgba(255, 107, 53, 0.2);
            transform: translateY(-5px);
            background: linear-gradient(135deg, rgba(25, 25, 25, 0.95) 0%, rgba(5, 5, 5, 0.95) 100%);
        }
        
        .stats-card {
            background: linear-gradient(145deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
            border: 1px solid rgba(255, 107, 53, 0.3);
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }
        .stats-card:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
        }
        .animated-counter {
            font-family: 'Orbitron', monospace;
            font-weight: 700;
        }
        .tech-border-alt {
            border: 2px solid;
            border-image: linear-gradient(45deg, #ff6b35, transparent 50%, #ff6b35) 1;
            box-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
        }
        .nav-link {
            position: relative;
            padding-bottom: 4px;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: #ff6b35;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            transition: width 0.3s ease-out;
        }
        .nav-link:hover::after {
            width: 100%;
        }

        /* Responsive menu for mobile */
        .mobile-menu {
            display: none;
        }
        .mobile-menu.open {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(8px);
            border-top: 1px solid rgba(255, 107, 53, 0.2);
            padding-bottom: 1rem;
        }
        .mobile-menu a {
            padding: 0.75rem 1.5rem;
            border-bottom: 1px solid rgba(255, 107, 53, 0.1);
        }
        .mobile-menu a:last-child {
            border-bottom: none;
        }
        
        /* Image hover effect */
        .image-hover-effect {
            position: relative;
            overflow: hidden;
            border-radius: 1rem;
        }
        .image-hover-effect img {
            transition: transform 0.5s ease-in-out;
        }
        .image-hover-effect:hover img {
            transform: scale(1.05);
        }
        .image-hover-effect::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 1;
        }
        .image-hover-effect:hover::before {
            opacity: 1;
        }
        .image-caption {
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            right: 1rem;
            color: white;
            z-index: 2;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        .image-hover-effect:hover .image-caption {
            opacity: 1;
            transform: translateY(0);
        }
