 :root {
            --primary-color: #4361ee;
            --secondary-color: #8a0059;
            --accent-color: #f72585;
            --text-color: #2b2d42;
            --light-bg: #f8f9fa;
            --white: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', system-ui, -apple-system, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
        }
        
        .card {
            width: 100%;
            max-width: 650px;
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            overflow: hidden;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }
        
        .card-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: var(--white);
            padding: 40px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .card-header::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            transform: rotate(30deg);
            animation: shine 8s infinite linear;
        }
        
        @keyframes shine {
            0% { transform: rotate(30deg) translate(-30%, -30%); }
            100% { transform: rotate(30deg) translate(30%, 30%); }
        }
        
        .profile-container {
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
        }
        
        .profile-img {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            border: 5px solid var(--white);
            object-fit: cover;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }
        
        .profile-container:hover .profile-img {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }
        
        .profile-container::after {
            content: "";
            position: absolute;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            border: 2px dashed var(--accent-color);
            top: -15px;
            left: -15px;
            animation: spin 20s linear infinite;
            z-index: 1;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .name {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 5px;
            letter-spacing: 0.5px;
        }
        
        .title {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 15px;
            font-weight: 400;
        }
        
        .badge {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-top: 10px;
            box-shadow: 0 4px 10px rgba(247, 37, 133, 0.3);
        }
        
        .card-body {
            padding: 40px;
        }
        
        .section {
            margin-bottom: 30px;
            position: relative;
        }
        
        .section::after {
            content: "";
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
            border-radius: 3px;
        }
        
        .section-title {
            font-size: 20px;
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        
        .section-title i {
            margin-right: 10px;
            color: var(--accent-color);
        }
        
        .contact-info {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        
        .contact-info:hover {
            transform: translateX(5px);
        }
        
        .contact-info i {
            width: 40px;
            height: 40px;
            background-color: rgba(67, 97, 238, 0.1);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .contact-info:hover i {
            background-color: var(--primary-color);
            color: white;
            transform: scale(1.1);
        }
        
        .about-text {
            line-height: 1.8;
            color: var(--text-color);
        }
        
        .skills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }
        
        .skill {
            background-color: rgba(67, 97, 238, 0.1);
            color: var(--primary-color);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
        }
        
        .social-links a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .social-links a::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .social-links a:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(67, 97, 238, 0.4);
        }
        
        .social-links a:hover::before {
            opacity: 1;
        }
        
        .social-links a i {
            position: relative;
            z-index: 1;
        }
        
        .qr-code {
            text-align: center;
            margin-top: 30px;
            padding: 20px;
            background: var(--light-bg);
            border-radius: 12px;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
        }
        
        .qr-code img {
            max-width: 150px;
            margin-bottom: 15px;
            border: 10px solid white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .qr-text {
            font-size: 14px;
            color: var(--text-color);
            font-weight: 500;
        }
        
        @media (max-width: 768px) {
            .card-header {
                padding: 30px 20px;
            }
            
            .card-body {
                padding: 30px;
            }
            
            .profile-img {
                width: 120px;
                height: 120px;
            }
            
            .profile-container::after {
                width: 140px;
                height: 140px;
            }
            
            .name {
                font-size: 28px;
            }
        }
        
        @media (max-width: 480px) {
            .card-header {
                padding: 25px 15px;
            }
            
            .card-body {
                padding: 25px 20px;
            }
            
            .profile-img {
                width: 100px;
                height: 100px;
                border-width: 4px;
            }
            
            .profile-container::after {
                width: 120px;
                height: 120px;
            }
            
            .name {
                font-size: 24px;
            }
            
            .title {
                font-size: 16px;
            }
            
            .section-title {
                font-size: 18px;
            }
        }