        @import url('https://fonts.googleapis.com/css2?family=Courier+Prime&display=swap');

        body {
            margin: 0;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: black;
            color: white;
            font-family: 'Courier Prime', monospace;
        }

        .content {
            text-align: center;
        }

        .profile {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .profile-img {
            width: 96px;
            height: 96px;
            border-radius: 50%;
            object-fit: cover;
        }

        .social-links {
            display: flex;
            gap: 8px;
            position: relative;
        }

        .icon-wrapper {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            cursor: pointer;
        }

        .icon {
            font-size: 1.25rem;
        }

        .tooltip {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 8px;
            padding: 4px 12px;
            background-color: #666;
            color: white;
            font-size: 0.875rem;
            border-radius: 4px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s ease;
        }

        .tooltip::after {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 4px solid transparent;
            border-bottom-color: #666;
        }

        .icon-wrapper:hover .tooltip {
            opacity: 1;
            visibility: visible;
        }

        .languages {
            margin-top: 20px;
        }

        .languages-icon {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 1rem;
        }

        .image-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 0;
            animation: fade-in 1s forwards ease-in;
        }

        .image-container img {
            width: 32px;
            height: 32px;
            object-fit: contain;
            margin-bottom: 0.5rem;
        }

        .text-between {
            margin: 0;
            font-size: 0.875rem;
        }

        @keyframes fade-in {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .main-content, .projects-content {
            transition: opacity 0.3s ease-in-out;
        }

        .projects-content {
            display: none;
            opacity: 0;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 800px;
        }

        .projects-content.active {
            display: block;
            opacity: 1;
        }

        .main-content.hidden {
            display: none;
            opacity: 0;
        }

        .projects-header {
            position: relative;
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
        }

        .projects-header h1 {
            margin: 0 auto;
        }

        .project-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .project-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 1.5rem;
            transition: transform 0.2s ease;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .project-card:hover {
            transform: translateY(-5px);
        }

        .project-image {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 4px;
            background: rgba(0, 0, 0, 0.2);
        }

        .project-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .project-title {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .project-description {
            font-size: 0.875rem;
            color: #ccc;
            margin-bottom: 1rem;
            flex: 1;
        }

        .project-demo {
            display: inline-block;
            color: white;
            text-decoration: none;
            font-size: 0.875rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.1);
            transition: background 0.2s ease;
            text-align: center;
            width: fit-content;
            margin: 0 auto;
        }

        .project-demo:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .back-button {
            position: absolute;
            left: 0;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 1.25rem;
            padding: 0.5rem;
            transition: transform 0.2s ease;
        }

        .back-button:hover {
            transform: translateX(-5px);
        }
