/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea, #764ba2);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.profile-name {
    font-size: 28px;
    margin: 0;
    font-weight: 600;
    color: #fff;
}

.profile-bio {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 10px 0 25px;
}

.links .link {
    display: block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: background 0.3s ease, transform 0.3s ease;
    font-weight: 600;
}

.links .link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.footer {
    margin-top: 25px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 20px;
    }

    .profile-img {
        width: 100px;
        height: 100px;
    }

    .profile-name {
        font-size: 24px;
    }

    .profile-bio {
        font-size: 12px;
    }

    .links .link {
        padding: 10px;
        font-size: 14px;
    }

    .footer {
        font-size: 10px;
    }
}