body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', 'Helvetica', sans-serif;
    background: linear-gradient(to bottom right, #ffe6f0, #ffcce6);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.overlay {
    text-align: center;
    background-color: rgba(255, 240, 250, 0.85);
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(255, 150, 200, 0.4);
    max-width: 400px;
    width: 90%;
    animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #ff99cc;
    box-shadow: 0 0 15px #ffb6d9;
    object-fit: cover;
    margin-bottom: 15px;
}

.name {
    font-size: 1.8em;
    font-weight: bold;
    color: #ff66a3;
    margin-bottom: 5px;
}

.description {
    font-size: 1em;
    color: #cc6699;
    margin-bottom: 20px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    background-color: #ffccdd;
    color: #880e4f;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(255, 105, 180, 0.3);
}

.link:hover {
    background-color: #ffe6f0;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(255, 105, 180, 0.4);
}

.link img {
    height: 20px;
    width: 20px;
}
