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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
    margin: 0;
}

.container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 90%;
    max-width: 400px;
    padding: 30px;
    margin: 20px;
}

.profile .avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 5px solid #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.profile h1 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #444;
}

.profile p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
}

.links .link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 30px;
    background-color: #f0f0f0;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s, transform 0.3s;
}

.links .link:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
}

.links .link .icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

.links .link span {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }
    
    .profile .avatar {
        width: 100px;
        height: 100px;
    }
    
    .profile h1 {
        font-size: 22px;
    }
    
    .profile p {
        font-size: 14px;
    }
    
    .links .link {
        padding: 10px 15px;
    }
    
    .links .link .icon {
        width: 25px;
        height: 25px;
        margin-right: 10px;
    }
    
    .links .link span {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .profile h1 {
        font-size: 20px;
    }
    
    .profile p {
        font-size: 12px;
    }
    
    .links .link {
        padding: 8px 10px;
    }
    
    .links .link .icon {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }
    
    .links .link span {
        font-size: 14px;
    }
}
