body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #3c4661;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background: linear-gradient(180deg, #7b84a1, #555e7b);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    width: 400px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

.profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.name {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin: 10px 0 5px;
}

.bio {
    font-size: 14px;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.social-icons {
    margin: 10px 0;
}

.social-icons a {
    margin: 0 5px;
    font-size: 20px;
    color: white;
    text-decoration: none;
}

.links {
    margin-top: 15px;
}

.links a {
    display: block;
    background: black;
    color: white;
    text-decoration: none;
    padding: 20px 15px;
    border-radius: 8px;
    margin: 10px 0;
    font-weight: bold;
    transition: background 0.3s;
}

.links a:hover {
    background: #222;
}

.footer {
    margin-top: 20px;
}

.footer a {
    font-size: 12px;
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 10px;
    border-radius: 12px;
}

/* 📱 Ajustes para móviles */
@media (max-width: 480px) {
    .container {
        width: 90%;
        /* Se adapta al ancho del móvil */
        padding: 15px;
    }

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

    .name {
        font-size: 18px;
    }

    .bio {
        font-size: 13px;
    }

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