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

        body {
            background: #f8f9fa;
            color: #2c3e50;
            font-family: 'Courier New', monospace;
            overflow-x: hidden;
            cursor: none;
        }

        .neural-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.03;
        }

        .neural-bg canvas {
            width: 100%;
            height: 100%;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            min-height: 100vh;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 2rem;
            left: 2rem;
            z-index: 1000;
        }

        .back-btn {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(0, 102, 204, 0.3);
            color: #0066cc;
            padding: 0.8rem 1.5rem;
            text-decoration: none;
            border-radius: 8px;
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            backdrop-filter: blur(15px);
            transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
            display: inline-block;
        }

        .back-btn:hover {
            background: rgba(0, 102, 204, 0.1);
            border-color: rgba(0, 102, 204, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 102, 204, 0.2);
        }

        /* Project Header */
        .project-header {
            margin-top: 6rem;
            margin-bottom: 4rem;
            text-align: center;
        }

        .project-number {
            font-size: 1rem;
            color: #0066cc;
            letter-spacing: 0.2em;
            margin-bottom: 1rem;
        }

        .project-title {
            font-size: 3.5rem;
            font-weight: 100;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #0066cc, #00b359);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 3s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { filter: brightness(1); }
            to { filter: brightness(1.3) drop-shadow(0 0 10px rgba(0, 102, 204, 0.4)); }
        }

        .project-subtitle {
            font-size: 1.2rem;
            color: #6c757d;
            letter-spacing: 0.05em;
            margin-bottom: 2rem;
        }

        .project-status-bar {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 102, 204, 0.2);
            border-radius: 25px;
            padding: 0.5rem 1.5rem;
            backdrop-filter: blur(10px);
            gap: 1rem;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: #00b359;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }

        .status-text {
            font-size: 0.8rem;
            color: #0066cc;
            letter-spacing: 0.1em;
        }

        /* Main Content */
        .content-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .section {
            margin-bottom: 4rem;
        }

        .section-header {
            margin-bottom: 2rem;
        }

        .section-title {
            font-size: 1.6rem;
            color: #0066cc;
            letter-spacing: 0.1em;
            font-weight: 100;
        }

        .section-content {
            color: #495057;
            line-height: 1.8;
            font-size: 1.1rem;
            max-width: none;
        }

        .section-content p {
            margin-bottom: 1.5rem;
        }

        .section-content h3 {
            color: #2c3e50;
            font-size: 1.3rem;
            margin: 2rem 0 1rem 0;
            letter-spacing: 0.05em;
        }

        /* Image Placeholders */
        .image-container {
            margin: 2rem 0;
        }

        .image-placeholder {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 179, 89, 0.05));
            border: 2px dashed rgba(0, 102, 204, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0066cc;
            font-size: 1rem;
            letter-spacing: 0.1em;
            transition: all 0.3s ease;
            margin-bottom: 0.5rem;
        }

        .image-placeholder:hover {
            background: linear-gradient(135deg, rgba(0, 102, 204, 0.08), rgba(0, 179, 89, 0.08));
            border-color: rgba(0, 102, 204, 0.4);
        }

        .image-placeholder.small {
            height: 200px;
        }

        .image-caption {
            font-size: 0.9rem;
            color: #6c757d;
            text-align: center;
            font-style: italic;
            letter-spacing: 0.05em;
        }

        /* Links */
        .project-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .project-link {
            color: #0066cc;
            text-decoration: none;
            font-size: 1.1rem;
            letter-spacing: 0.05em;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(0, 102, 204, 0.1);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .project-link:hover {
            color: #00b359;
            border-bottom-color: rgba(0, 179, 89, 0.3);
            transform: translateX(10px);
        }

        .project-link::before {
            content: '→';
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .project-link:hover::before {
            transform: translateX(5px);
        }

        /* Tech List */
        .tech-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1.5rem 0;
        }

        .tech-item {
            background: rgba(0, 102, 204, 0.1);
            color: #0066cc;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
        }

        .loading-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 2px;
            background: linear-gradient(90deg, #00b359, #0066cc);
            z-index: 1000;
            animation: loading 3s ease-in-out infinite;
        }

        @keyframes loading {
            0% { width: 0; }
            50% { width: 100%; }
            100% { width: 0; }
        }

        /* Dynamic Cursor */
        .cursor {
            position: fixed;
            width: 16px;
            height: 16px;
            background: #0066cc;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
            clip-path: polygon(50% 0%, 65% 35%, 100% 50%, 65% 65%, 50% 100%, 35% 65%, 0% 50%, 35% 35%);
            box-shadow: 
                0 0 15px #0066cc,
                0 0 25px #0066cc,
                0 0 35px #0066cc,
                0 0 50px rgba(0, 102, 204, 0.6),
                inset 0 0 10px rgba(255, 255, 255, 0.3);
            animation: star-dance 1.5s ease-in-out infinite alternate;
        }

        @keyframes star-dance {
            0% { 
                filter: brightness(1) saturate(1) hue-rotate(0deg); 
                transform: rotate(0deg) scale(1);
            }
            50% { 
                filter: brightness(1.3) saturate(1.2) hue-rotate(10deg); 
                transform: rotate(22.5deg) scale(1.1);
            }
            100% { 
                filter: brightness(1.6) saturate(1.4) hue-rotate(20deg); 
                transform: rotate(45deg) scale(1.2);
            }
        }

        .cursor.hover {
            width: 20px;
            height: 20px;
            background: #0066cc;
            box-shadow: 
                0 0 20px #0066cc,
                0 0 40px #0066cc,
                0 0 60px rgba(0, 102, 204, 0.7),
                inset 0 0 15px rgba(255, 255, 255, 0.4);
            animation: star-hover 0.8s ease-in-out infinite alternate;
        }

        @keyframes star-hover {
            0% { 
                transform: rotate(0deg) scale(1);
                filter: brightness(1.2) saturate(1.3);
            }
            100% { 
                transform: rotate(45deg) scale(1.2);
                filter: brightness(1.5) saturate(1.5);
            }
        }

        @media (max-width: 768px) {
            .project-title {
                font-size: 2.5rem;
            }
            .container {
                padding: 1rem;
            }
            .nav {
                top: 1rem;
                left: 1rem;
            }
            .project-header {
                margin-top: 4rem;
            }
            .section-title {
                font-size: 1.3rem;
            }
            .tech-list {
                justify-content: center;
            }
        }

        