/* Configuración Global */
body {
    background-color: #0d0d0d;
    /* Negro profundo */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Roboto', sans-serif;
}

.main-wrapper {
    max-width: 450px;
    width: 90%;
    padding: 40px 20px;
}

/* Estilo del Avatar */
.avatar-container img {
    width: 110px;
    height: 110px;
    border: 3px solid #cea2fd;
    /* Lila claro */
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

.avatar-container img:hover {
    transform: rotate(5deg) scale(1.05);
}

.lila-text {
    color: #cea2fd !important;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Botones Personalizados */
.links-container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lila-btn {
    background-color: rgba(206, 162, 253, 0.1) !important;
    /* Fondo sutil lila */
    border: 2px solid #cea2fd !important;
    color: #cea2fd !important;
    border-radius: 50px !important;
    text-transform: none !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    /* Centra el contenido del botón */
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

/* Hover de los botones */
.lila-btn:hover {
    background-color: #cea2fd !important;
    /* Se vuelve sólido al pasar el mouse */
    color: #0d0d0d !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(206, 162, 253, 0.4) !important;
}

.lila-btn i {
    font-size: 22px !important;
    margin-right: 10px;
}

.footer-section {
    margin-top: 50px;
    font-size: 0.8rem;
}