/* Estilos generales */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0f172a; /* Un color oscuro moderno */
    color: white;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 400px; /* Evita que en PC se vea demasiado ancho */
    text-align: center;
}

.profile-pic {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #38bdf8;
    margin-bottom: 10px;
}

/* Contenedor de enlaces */
.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

/* Botones/Tarjetas */
.card {
    background: #1e293b;
    color: #f8fafc;
    padding: 18px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: transform 0.2s, background 0.2s;
    border: 1px solid #334155;
}

/* Efecto al tocar o pasar el mouse */
.card:active, .card:hover {
    transform: scale(0.98);
    background: #334155;
    border-color: #38bdf8;
}