@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
    font-family: "Lato", sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Lato", sans-serif;
    background: radial-gradient(circle at top left, #0f0f0f, #1a1a2e);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

.profile-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    max-width: 360px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.profile-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.profile-card img:hover {
    transform: scale(1.05);
}

.profile-card h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.profile-card p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.links a {
    display: block;
    background: #2575fc;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin: 0.5rem 0;
    padding: 0.8rem;
    border-radius: 12px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.links a:hover {
    background: #ffd369;
    color: #000;
    transform: scale(1.05);
}

.social-icons {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ffd369;
}