/* Importar fuente moderna */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    /* Gradiente animado usando los colores de tu logo (Azul Marino y Naranja) */
    background: linear-gradient(-45deg, #0A1B2E, #1c385c, #E35111, #0A1B2E);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    width: 100%;
    max-width: 450px;
    text-align: center;
}

/* Estilo del Perfil */
.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid white;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    /* Fondo blanco por si tu logo tiene transparencia */
    background-color: white; 
    object-fit: contain; 
}

.profile h1 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.profile p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

/* Estilo de los Enlaces (Glassmorphism) */
.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.link-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Botón destacado (Naranja del logo) */
.link-card.highlight {
    background: #E35111;
    border: 1px solid #ff6a28;
    box-shadow: 0 4px 15px rgba(227, 81, 17, 0.4);
}

.link-card.highlight:hover {
    background: #f05a16;
    box-shadow: 0 6px 20px rgba(227, 81, 17, 0.6);
}

.link-card i {
    font-size: 1.2rem;
}

/* Footer */
footer {
    margin-top: 40px;
    color: white;
    font-size: 0.8rem;
    opacity: 0.8;
}