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

        body {
            font-family:'Geist',sans-serif;
            background-color: #0d0d0d;
            color: #e0e0e0;
            line-height: 1.6;
        }

        .container {
            max-width: 50%;
            margin: 0 auto;
            padding: 0 20px;
        }
        b{
            color:#82b9e4;
        }
        /* Header Navigation */
        .header {
            padding: 30px 0;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-left {
            display: flex;
            gap: 20px;
        }

        .nav-link {
            color: #e0e0e0;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: #ffffff;
        }

        .nav-right {
            display: flex;
            gap: 20px;
        }

        .social-icon {
            color: #e0e0e0;
            font-size: 20px;
            transition: color 0.3s ease;
        }

        .social-icon:hover {
            color: #ffffff;
        }

        /* Main Content */
        .main {
            padding: 30px 0;
        }

        .intro {
            margin-bottom: 60px;
        }

        .intro h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: #ffffff;
        }

        .intro-list {
            list-style: none;
            font-size: 1.1rem;
        }

        .intro-list li {
            margin-bottom: 6px;
            position: relative;
            padding-left: 20px;
        }

        .intro-list li::before {
            content: "•";
            color: #ffffff;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .intro-list a {
            color: #ffffff;
            text-decoration: underline;
            transition: color 0.6s ease;
        }

        .intro-list a:hover {
            color: #cccccc;
        }

        /* Section Titles */
        .section-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 30px;
            color: #ffffff;
        }

        /* Side Projects Section */
        .projects {
            margin-bottom: 10px;
        }

        .project-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #333;
            transition: background-color 0.3s ease;
        }

        .project-item:hover {
            background-color: #181717;
            margin: 0 -20px;
            padding: 20px;
            border-radius: 8px;
        }

        .project-left {
            flex: 1;
        }

        .project-number {
            color: #ffffff;
            font-weight: 600;
            margin-right: 10px;
        }

        .project-name {
            color: #ffffff;
            text-decoration: underline;
            font-weight: 600;
            margin-right: 10px;
        }

        .project-description {
            color: #888;
        }

        /* Open Source Section */
        .opensource {
            margin-top: 60px;
            margin-bottom: 30px;
        }

        .contribution-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid #333;
            transition: background-color 0.3s ease;
        }

        .contribution-item:hover {
            background-color: #252525;
            margin: 0 -20px;
            padding: 20px;
            border-radius: 8px;
        }
        .contribution-item.active::after {
            content: '';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 15px;
            height: 15px;
            background-color: #10b981;
            border-radius: 50%;
            animation: flicker1 2s infinite;
        }
        .contribution-item.work::after {
            content: '';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 15px;
            height: 15px;
            background-color: #b99d10;
            border-radius: 50%;
            animation: flicker2 2s infinite;
        }

        @keyframes flicker1 {
            0%, 50% {
                opacity: 1;
                box-shadow: 0 0 5px #10b981, 0 0 10px #10b981;
            }
            51%, 100% {
                opacity: 0.3;
                box-shadow: none;
            }
        }
        @keyframes flicker2 {
            0%, 50% {
                opacity: 1;
                box-shadow: 0 0 5px #b6b910, 0 0 10px #b0b910;
            }
            51%, 100% {
                opacity: 0.3;
                box-shadow: none;
            }
        }
        .contribution-icon {
            width: 24px;
            height: 24px;
            border-radius: 4px;
            flex-shrink: 0;
            margin-top: 4px;
        }

        .contribution-content {
            flex: 1;
        }

        .contribution-title {
            color: #ffffff;
            text-decoration: underline;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .contribution-description {
            color: #888;
            font-size: 0.95rem;
        }
            .project-item.work::after {
            content: '';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 15px;
            height: 15px;
            background-color: #b99d10;
            border-radius: 50%;
            animation: flicker2 2s infinite;
        }

        /* Responsive Design */
        @media (max-width:300px) {
            .container {
                max-width: 90%;
            }
            
            .nav {
                flex-direction: column;
                gap: 20px;
            }

            .intro h1 {
                font-size: 2.5rem;
            }

            .project-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .nav-left {
                gap: 20px;
            }

            .nav-right {
                gap: 15px;
            }
        }

        @media (max-width: 1024px) {
            .container {
                max-width: 70%;
            }
        }

        /* Animations */
        .fade-in {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(40px);
    animation: fadeInUp 1.5s ease forwards;
}


        @keyframes fadeInUp {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}


        .stagger-1 { animation-delay: 0.1s; }
        .stagger-2 { animation-delay: 0.2s; }
        .stagger-3 { animation-delay: 0.3s; }
        .stagger-4 { animation-delay: 0.4s; }
        .stagger-5 { animation-delay: 0.5s; }
