    
        :root {
            --primary: #00f3ff;
            --secondary: #9d4edd;
            --accent: #f72585;
            --dark: #0a0a1a;
            --darker: #050510;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--darker);
            color: #fff;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(157, 78, 221, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 60%, rgba(0, 243, 255, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 50% 80%, rgba(247, 37, 133, 0.05) 0%, transparent 30%);
        }
        
        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        .star {
            position: absolute;
            background-color: white;
            border-radius: 50%;
            animation: twinkle 5s infinite;
        }
        
        @keyframes twinkle {
            0%, 100% { opacity: 0.2; }
            50% { opacity: 1; }
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            text-align: center;
            padding: 60px 20px 40px;
            position: relative;
            overflow: hidden;
        }
        
        .glow-effect {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
            opacity: 0.1;
            z-index: -1;
            animation: pulse 8s infinite alternate;
        }
        
        @keyframes pulse {
            0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.05; }
            100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.15; }
        }
        
        h1 {
            font-size: 3.5rem;
            margin-bottom: 10px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
            animation: textGlow 3s infinite alternate;
        }
        
        @keyframes textGlow {
            0% { text-shadow: 0 0 15px rgba(0, 243, 255, 0.5); }
            100% { text-shadow: 0 0 25px rgba(0, 243, 255, 0.8), 0 0 35px rgba(157, 78, 221, 0.6); }
        }
        
        .subtitle {
            font-size: 1.5rem;
            color: #aaa;
            margin-bottom: 30px;
        }
        
        .company {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(157, 78, 221, 0.2);
            border: 1px solid var(--secondary);
            border-radius: 30px;
            color: var(--secondary);
            font-size: 1.2rem;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
        }
        
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: -1;
        }
        
        .floating-element {
            position: absolute;
            background: rgba(0, 243, 255, 0.1);
            border: 1px solid rgba(0, 243, 255, 0.3);
            border-radius: 10px;
            animation: float 15s infinite linear;
        }
        
        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 10%;
            animation-duration: 20s;
        }
        
        .floating-element:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 70%;
            left: 80%;
            animation-duration: 25s;
            animation-delay: -5s;
        }
        
        .floating-element:nth-child(3) {
            width: 100px;
            height: 100px;
            top: 40%;
            left: 85%;
            animation-duration: 30s;
            animation-delay: -10s;
        }
        
        .floating-element:nth-child(4) {
            width: 70px;
            height: 70px;
            top: 80%;
            left: 15%;
            animation-duration: 18s;
            animation-delay: -7s;
        }
        
        @keyframes float {
            0% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(20px, 30px) rotate(90deg); }
            50% { transform: translate(0, 60px) rotate(180deg); }
            75% { transform: translate(-20px, 30px) rotate(270deg); }
            100% { transform: translate(0, 0) rotate(360deg); }
        }
        
        .main-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }
        
        .card {
            background: rgba(10, 10, 26, 0.7);
            border: 1px solid rgba(0, 243, 255, 0.2);
            border-radius: 15px;
            padding: 25px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 243, 255, 0.2);
            border-color: var(--primary);
        }
        
        .card h2 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
        }
        
        .card h2 i {
            margin-left: 10px;
        }
        
        .about p {
            line-height: 1.6;
            color: #ccc;
            font-size: 1.1rem;
        }
        
        .skills-list {
            list-style: none;
        }
        
        .skill {
            margin-bottom: 25px;
        }
        
        .skill-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        
        .skill-name {
            color: #eee;
        }
        
        .skill-percentage {
            color: var(--primary);
            font-weight: bold;
        }
        
        .skill-bar {
            height: 10px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            overflow: hidden;
            position: relative;
        }
        
        .skill-progress {
            height: 100%;
            border-radius: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            position: relative;
            width: 0;
            transition: width 1.5s ease-in-out;
        }
        
        .skill-progress::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;
        }
        
        @keyframes shine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        .interests {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }
        
        .interest {
            padding: 10px 20px;
            background: rgba(247, 37, 133, 0.1);
            border: 1px solid rgba(247, 37, 133, 0.3);
            border-radius: 30px;
            color: #f5f5f5;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .interest:hover {
            background: rgba(247, 37, 133, 0.2);
            transform: scale(1.05);
        }
        
        .contact {
            text-align: center;
            margin-top: 50px;
            padding: 40px 20px;
        }
        
        .contact-btn {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: var(--dark);
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .contact-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: all 0.5s ease;
        }
        
        .contact-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(0, 243, 255, 0.5);
        }
        
        .contact-btn:hover::before {
            left: 100%;
        }
        
        footer {
            text-align: center;
            padding: 30px 20px;
            margin-top: 50px;
            color: #666;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 2.5rem;
            }
        }
    