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

        body {
            font-family: "Cascadia Code", sans-serif;
            background: #000;
            color: #fff;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .container {
            text-align: center;
            position: relative;
        }

        .name {
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 400;
            letter-spacing: 0.1em;
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeIn 1.5s ease forwards;
        }

        .kaomoji {
            font-size: clamp(1.5rem, 4vw, 3rem);
            line-height: 1;
            opacity: 0;
            animation: fadeIn 1.5s ease 0.5s forwards, bounce 2s ease-in-out 2s infinite;
            cursor: none;
            user-select: none;
            transition: transform 0.2s ease;
        }

        .kaomoji:hover {
            transform: scale(1.1);
        }

        .nav {
            position: absolute;
            bottom: -6rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 2rem;
            opacity: 0;
            animation: fadeIn 1.5s ease 1s forwards;
        }

        .nav-item {
            color: #666;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 400;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-item:hover,
        .nav-item.active {
            color: #fff;
        }

        .nav-item::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: #fff;
            transition: width 0.3s ease;
        }

        .nav-item:hover::after,
        .nav-item.active::after {
            width: 100%;
        }

        .content {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            background: #000;
            z-index: 10;
        }

        .content.active {
            opacity: 1;
            pointer-events: all;
        }

        .content-inner {
            max-width: 600px;
            padding: 2rem;
            border:2px solid white;
            position: relative;
        }

        #tech .content-inner {
            width: 90%;
            max-width: 800px;
            max-height: 80vh;
            overflow-y: auto;
        }

        #projects .content-inner {
            width: 90%;
            max-width: 800px;
            max-height: 80vh;
            overflow-y: auto;
        }

        ::-webkit-scrollbar {
            width: 4px;
        }

        ::-webkit-scrollbar-track {
            background: transparent;
        }

        ::-webkit-scrollbar-thumb {
            background: #fff;
            border-radius: 0px;
            min-height: 20px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #ccc;
        }

        .content h2 {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 2rem;
            color: #fff;
        }

        .content p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #ccc;
            margin-bottom: 1rem;
        }

        .project-item {
            border-left: 1px solid #333;
            padding-left: 1rem;
            margin-bottom: 2rem;
            transition: border-color 0.3s ease;
        }

        .project-item:hover {
            border-left-color: #666;
        }

        .project-title {
            font-size: 1rem;
            font-weight: 500;
            color: #fff;
            margin-bottom: 0.5rem;
        }

        .project-desc {
            font-size: 0.85rem;
            color: #999;
            line-height: 1.5;
        }

        .close {
            position: absolute;
            top: 1.5rem;
            right: 2rem;
            background: none;
            border: none;
            color: #7b7b7b;
            font-size: 1.8rem;
            cursor: none;
            font-family: inherit;
            transition: color 0.3s ease;
        }

        .close:hover {
            color: #fff;
        }

        .loading {
            color: #666;
            font-size: 0.9rem;
        }

        .error {
            color: #ff6b6b;
            font-size: 0.9rem;
        }

        /* Tech Stack Styles */
        .tech-category {
            margin-bottom: 2.5rem;
        }

        .tech-category-title {
            font-size: 1rem;
            color: #fff;
            margin-bottom: 1rem;
            font-weight: 500;
            text-transform: lowercase;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, 80px);
            gap: 1.5rem;
            margin-bottom: 2rem;
            justify-items: center;
        }

        .tech-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: transform 0.2s ease;
            cursor: pointer;
        }

        .tech-item:hover {
            transform: translateY(-5px);
        }

        .tech-icon {
            width: 38px;
            height: 38px;
            object-fit: contain;
            margin-bottom: 0.5rem;
            transition: filter 0.3s ease;
        }

        .tech-item:hover .tech-icon {
            filter: grayscale(0%);
        }

        .tech-name {
            font-size: 0.75rem;
            color: #999;
            transition: color 0.3s ease;
        }

        .tech-item:hover .tech-name {
            color: #fff;
        }

        #rust {
            filter: invert(100%);
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        /* Mobile adjustments */
        @media (max-width: 768px) {
            .nav {
                flex-direction: column;
                gap: 1rem;
                bottom: -8rem;
            }
            
            .content-inner {
                padding: 1rem;
                margin: 2rem;
            }
            .custom-cursor {
                display: none;
            }
        }

        * {
        cursor: none;
        }

        .custom-cursor {
            position: fixed;
            top: 0;
            left: 0;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: white;
            mix-blend-mode: difference;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.3s;
            transform: translate(-50%, -50%);
            }

            .custom-cursor.scale-up {
            transform: scale(5);
            transition: transform 0.3s ease;
        }

        button {
            cursor: none;
        }


