        :root {
            --primary: #6366F1;
            --primary-light: #818cf8;
            --dark: #1a1a1a;
            --darker: #121212;
            --light: #f3f4f6;
            --gray: #9ca3af;
            --fun: #ff6b6b;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: var(--darker);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--light);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            color: var(--gray);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--light);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 80px 0;
            min-height: 80vh;
        }

        .hero-content {
            flex: 1;
            padding-right: 40px;
            animation: fadeIn 1s ease-out;
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            position: relative;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero h1 span {
            color: var(--primary);
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 30px;
            max-width: 600px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid var(--primary);
        }

        .btn:hover {
            background: transparent;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
        }

        .avatar {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--primary);
            box-shadow: 0 0 50px rgba(99, 102, 241, 0.5);
            transition: all 0.3s;
        }

        .avatar:hover {
            transform: scale(1.05);
            box-shadow: 0 0 70px rgba(99, 102, 241, 0.7);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        section {
            padding: 80px 0;
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            max-width: 800px;
            margin: 0 auto;
        }

        .tag {
            background: rgba(99, 102, 241, 0.1);
            color: var(--primary-light);
            padding: 10px 20px;
            border-radius: 50px;
            border: 1px solid rgba(99, 102, 241, 0.3);
            transition: all 0.3s;
            cursor: pointer;
        }

        .tag:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
        }

        .projects {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .project {
            background: rgba(31, 41, 55, 0.6);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s;
            border: 1px solid rgba(99, 102, 241, 0.2);
        }

        .project:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }

        .project-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .project-content {
            padding: 20px;
        }

        .project h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--primary-light);
        }

        .project p {
            color: var(--gray);
            margin-bottom: 15px;
        }

        .links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(99, 102, 241, 0.1);
            color: var(--primary);
            font-size: 1.5rem;
            transition: all 0.3s;
            border: 1px solid rgba(99, 102, 241, 0.3);
        }

        .social-link:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
        }

        .fun-section {
            background: linear-gradient(to right, rgba(99, 102, 241, 0.1), rgba(255, 107, 107, 0.1));
            border-radius: 20px;
            padding: 40px;
            margin: 60px 0;
            text-align: center;
            border: 2px dashed var(--fun);
        }

        .fun-title {
            color: var(--fun);
            font-size: 2.2rem;
            margin-bottom: 20px;
        }

        .joke {
            font-size: 1.4rem;
            margin-bottom: 30px;
            color: var(--light);
            line-height: 1.6;
        }

        .fun-facts {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .fun-fact {
            background: rgba(255, 107, 107, 0.1);
            padding: 20px;
            border-radius: 15px;
            width: 200px;
            transition: all 0.3s;
            border: 1px solid var(--fun);
        }

        .fun-fact:hover {
            transform: rotate(3deg) scale(1.05);
            background: rgba(255, 107, 107, 0.2);
        }

        .fun-fact i {
            font-size: 2rem;
            color: var(--fun);
            margin-bottom: 15px;
        }

        .skills-with-humor {
            margin-top: 60px;
        }

        .skill {
            margin-bottom: 25px;
        }

        .skill-name {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .skill-bar {
            height: 10px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }

        .skill-level {
            height: 100%;
            background: var(--primary);
            border-radius: 10px;
            position: relative;
            width: 0;
            transition: width 1.5s ease-in-out;
        }

        .skill-level::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: shine 2s infinite;
        }

        footer {
            text-align: center;
            padding: 40px 0;
            color: var(--gray);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 80px;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes shine {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }

        @media (max-width: 900px) {
            .hero {
                flex-direction: column-reverse;
                text-align: center;
                padding: 40px 0;
            }

            .hero-content {
                padding-right: 0;
                margin-top: 40px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .avatar {
                width: 250px;
                height: 250px;
            }
            
            .fun-facts {
                flex-direction: column;
                align-items: center;
            }
        }