        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
            cursor: none;
        }

        /* Custom Cursor Styles */
        .custom-cursor {
            position: fixed;
            width: 12px;
            height: 12px;
            background: #fff;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            box-shadow: 0 0 20px rgba(102, 126, 234, 0.8),
                        0 0 40px rgba(102, 126, 234, 0.5),
                        0 0 60px rgba(102, 126, 234, 0.3);
            transition: width 0.3s ease, height 0.3s ease, box-shadow 0.3s ease;
        }

        .custom-cursor-follower {
            position: fixed;
            width: 40px;
            height: 40px;
            border: 2px solid rgba(102, 126, 234, 0.6);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            box-shadow: 0 0 30px rgba(102, 126, 234, 0.4),
                        inset 0 0 20px rgba(102, 126, 234, 0.2);
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .custom-cursor.hovering {
            width: 8px;
            height: 8px;
            box-shadow: 0 0 30px rgba(245, 87, 108, 1),
                        0 0 60px rgba(245, 87, 108, 0.7),
                        0 0 90px rgba(245, 87, 108, 0.4);
        }

        .custom-cursor-follower.hovering {
            transform: translate(-50%, -50%) scale(1.5);
            border-color: rgba(245, 87, 108, 0.9);
            box-shadow: 0 0 40px rgba(245, 87, 108, 0.6),
                        inset 0 0 30px rgba(245, 87, 108, 0.3);
        }

        @media (max-width: 768px) {
            .custom-cursor,
            .custom-cursor-follower {
                display: none !important;
            }
            
            body {
                cursor: auto;
            }
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 1.5rem 3rem;
            transition: all 0.3s ease;
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            height: 35px;
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 100%;
            width: auto;
            object-fit: contain;
        }

        .logo a {
            height: 100%;
            display: flex;
            align-items: center;
        }

        nav ul {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        /* Mobile menu styles */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            background: none;
            border: none;
            z-index: 1001;
        }

        .hamburger {
            width: 25px;
            height: 3px;
            background: rgba(255, 255, 255, 0.8);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active .hamburger:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-toggle.active .hamburger:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active .hamburger:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(20px);
            z-index: 999;
            padding-top: 100px;
            opacity: 0;
            transform: translateY(-20px);
            transition: all 0.3s ease;
        }

        .mobile-nav.active {
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-nav ul {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            list-style: none;
            text-align: center;
            padding: 2rem 0;
        }

        .mobile-nav a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 500;
            padding: 1rem 2rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .mobile-nav a:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.1);
        }

        nav a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: #ffffff;
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: #ffffff;
        }

        nav a:hover::after {
            width: 100%;
        }

        @media (max-width: 768px) {
            nav ul {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            header {
                padding: 1rem 1.5rem;
            }
        }

        #three-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .error-container {
            text-align: center;
            z-index: 1;
            padding: 2rem;
            max-width: 600px;
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }

        .error-code {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(6rem, 20vw, 12rem);
            font-weight: 700;
            background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.4) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
            margin-bottom: 1rem;
            letter-spacing: -5px;
            animation: float 6s ease-in-out infinite;
        }

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

        .error-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.5rem, 5vw, 2rem);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .error-message {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .home-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            text-decoration: none;
            padding: 1rem 2rem;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .home-button:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: white;
            border-radius: 50%;
            pointer-events: none;
            opacity: 0.5;
        }

        @media (max-width: 768px) {
            .error-container {
                padding: 1.5rem;
            }
        }
