@font-face {
            font-family: 'Electromagnetic';
            src: url('assets/fonts/Electromagnetic-Lungs.otf') format('opentype');
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background: #000;
            color: #fff;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
        }

        html {
            scroll-behavior: smooth;
        }
        
        /* Header */
        header {
            padding: 3rem 2rem 4rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        a{
            color: #b8b6b6;
            transition: color 0.3s;
        }
        
        a:hover{
            color: white;
        }

        b{
            color: #b8b6b6;
        }

        .logo-section {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.5rem 1rem 0.5rem 0.5rem;
            border: 1px solid #1a1a1a;
            border-radius: 100px;
            margin-bottom: 4rem;
            transition: border-color 0.3s;
        }

        .logo-section a {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }
        
        .logo-section:hover {
            border-color: #333;
        }
        
        .logo {
            width: 32px;
            height: 32px;
        }
        
        .brand {
            font-family: 'Electromagnetic', sans-serif;
            font-size: 1.1rem;
            color: #fff;
        }
        
        .hero {
            max-width: 800px;
            position: relative;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid #1a1a1a;
            border-radius: 100px;
            margin-bottom: 2rem;
            font-size: 0.875rem;
            color: #888;
            transition: all 0.3s;
        }

        .hero-badge:hover {
            border-color: #333;
            background: rgba(255, 255, 255, 0.05);
        }

        .hero-badge .pulse {
            width: 8px;
            height: 8px;
            background: #4ade80;
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(0.9);
            }
        }
        
        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
        }
        
        .hero h1 .gradient-text {
            background: linear-gradient(135deg, #fff 0%, #666 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero p {
            font-size: 1.125rem;
            color: #888;
            max-width: 600px;
            line-height: 1.7;
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid #1a1a1a;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .stat-number {
            font-size: 1.75rem;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .stat-label {
            font-size: 0.875rem;
            color: #666;
        }
        
        /* Projects Section */
        main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem 8rem;
        }
        
        .section-label {
            font-size: 0.875rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 2rem;
            font-weight: 500;
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 2rem;
        }
        
        .project-card {
            background: #000;
            border: 1px solid #1a1a1a;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        
        .project-card:hover {
            border-color: #333;
            transform: translateY(-2px);
        }
        
        .project-thumbnail-wrapper {
            width: 100%;
            aspect-ratio: 16/9;
            overflow: hidden;
            background: #0a0a0a;
            position: relative;
        }
        
        .project-thumbnail-wrapper::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 0;
            pointer-events: none;
        }
        
        .project-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .project-card:hover .project-thumbnail {
            transform: scale(1.05);
        }
        
        .project-info {
            padding: 1.5rem;
        }
        
        .project-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            letter-spacing: -0.01em;
        }
        
        .project-description {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        /* Project Page */
        .project-page {
            max-width: 900px;
            margin: 0 auto;
            padding: 3rem 2rem 8rem;
        }
        
        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #666;
            text-decoration: none;
            margin-bottom: 3rem;
            font-size: 0.95rem;
            transition: color 0.2s;
            padding: 0.5rem 1rem 0.5rem 0.75rem;
            border: 1px solid #1a1a1a;
            border-radius: 100px;
        }
        
        .back-button:hover {
            color: #fff;
            border-color: #333;
        }
        
        .project-main-thumbnail {
            width: 100%;
            aspect-ratio: 16/9;
            background: #0a0a0a;
            border: 1px solid #1a1a1a;
            border-radius: 12px;
            margin-bottom: 3rem;
            overflow: hidden;
        }
        
        .project-main-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .project-header h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.03em;
        }
        
        .project-header p {
            font-size: 1.25rem;
            color: #666;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }
        
        .project-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 1.75rem;
            border-radius: 8px;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.2s;
            border: 1px solid;
        }
        
        .btn-primary {
            background: #fff;
            color: #000;
            border-color: #fff;
        }
        
        .btn-primary:hover {
            background: #e6e6e6;
            border-color: #e6e6e6;
            color: #000;
            transform: translateY(-2px);
        }
        
        .btn-secondary {
            background: transparent;
            color: #fff;
            border-color: #333;
        }
        
        .btn-secondary:hover {
            border-color: #666;
            transform: translateY(-2px);
        }
        
        /* Footer */
        footer {
            border-top: 1px solid #1a1a1a;
            padding: 4rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }
        
        .footer-left {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-logo-row {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .footer-logo {
            width: 32px;
            height: 32px;
            position: relative;
            top: 3px;
            left: 5px;
            opacity: 0.6;
        }
        
        .footer-text {
            color: #666;
            font-size: 0.9rem;
        }

        .footer-a{
            color: #666;
            transition: color 0.3s;
            text-decoration: none;
        }
        
        .footer-a:hover{
            color: white;
            text-decoration: underline;
        }

        .footer-license {
            color: #555;
            font-size: 0.85rem;
            max-width: 320px;
            line-height: 1.5;
        }
        
        .footer-links {
            display: flex;
            gap: 0.5rem;
        }
        
        .footer-link {
            color: #666;
            text-decoration: none;
            font-size: 1.25rem;
            transition: all 0.2s;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            border: 1px solid #1a1a1a;
        }
        
        .footer-link:hover {
            color: #fff;
            border-color: #333;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            header {
                padding: 2rem 1.5rem 3rem;
            }

            .hero-stats {
                gap: 1.5rem;
            }

            .stat-number {
                font-size: 1.5rem;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            main {
                padding: 0 1.5rem 6rem;
            }
            
            .project-page {
                padding: 2rem 1.5rem 6rem;
            }
            
            .footer-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 2rem;
            }

            .footer-left {
                width: 100%;
            }

            .footer-license {
                max-width: 100%;
            }

            .footer-links {
                width: 100%;
            }
        }
        
        .hidden {
            display: none;
        }