@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.container {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    padding: 30px;
    width: 100%;
    max-width: 600px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.profile, .header, .link-item, .social-icons {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in, transform 0.5s ease-in;
}

.profile .logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.header h1 {
    font-size: 1.8em;
    font-weight: 600;
    margin: 0;
    color: #2c3e50;
}

.header p {
    font-size: 1em;
    color: #7f8c8d;
    margin-top: 5px;
    margin-bottom: 25px;
}

.links .link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3498db;
    color: white;
    padding: 15px;
    margin: 10px 0;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1em;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.link-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    background-color: #2980b9;
}

.link-item i {
    margin-right: 15px;
    font-size: 1.2em;
}

.social-icons {
    margin: 25px 0;
}

.social-icons a {
    color: #34495e;
    font-size: 1.5em;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.social-icons a:hover {
    color: #3498db;
}

footer {
    font-size: 0.9em;
    color: #95a5a6;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 20px;
    }

    .profile .logo {
        width: 100px;
        height: 100px;
    }

    .header h1 {
        font-size: 1.5em;
    }

    .header p {
        font-size: 0.9em;
    }

    .links .link-item {
        padding: 12px;
        font-size: 1em;
    }
}