* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #2a4fc7, #8abefa);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            color: white;
            text-align: center;
        }
        
        .profile {
            margin-bottom: 30px;
            animation: fadeIn 1s ease-in-out;
        }
        
        .profile-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid white;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            margin-bottom: 15px;
        }
        
        h1 {
            font-size: 24px;
            margin-bottom: 5px;
        }
        
        p {
            opacity: 0.8;
            font-size: 16px;
        }
        
        .links {
            width: 100%;
            max-width: 400px;
        }
        
        .link {
            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .link:hover {
            transform: translateY(-3px);
            background-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }
        
        .link-icon {
            width: 24px;
            height: 24px;
            margin-right: 10px;
        }
        
        .footer {
            margin-top: 30px;
            font-size: 14px;
            opacity: 0.7;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .link:nth-child(1) { animation: fadeIn 0.5s 0.2s both; }
        .link:nth-child(2) { animation: fadeIn 0.5s 0.4s both; }
        .link:nth-child(3) { animation: fadeIn 0.5s 0.6s both; }