/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Fondo con partículas */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #000000;
}

body {
    color: white;
    overflow-x: hidden;
    background-color: #000;
}

/* Contenedor principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Estilo del logo */
.logo-container {
    margin: 10px 0;
}

.logo-img {
    width: 350px;
    height: auto;
    animation: spin 8s infinite linear;
    filter: drop-shadow(0 0 10px #00b3ff);
}

/* Animación de rotación 3D */
@keyframes spin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

/* Enlace de Discord */
.discord-link {
    display: inline-block;
    background-color: #5865F2;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.7);
}

.discord-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(88, 101, 242, 0.9);
}

/* Perfiles del equipo */
.profiles {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.profile-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    width: 250px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 179, 255, 0.2);
}

.profile-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 179, 255, 0.2);
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00b3ff;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(0, 179, 255, 0.5);
}

.profile-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #ffffff;
}

.profile-role {
    color: #00b3ff;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Iconos de redes sociales */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

.social-icon.fa-instagram:hover {
    color: #E1306C; /* Color de Instagram */
}

.social-icon.fa-twitter:hover {
    color: #1DA1F2; /* Color de Twitter */
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 80px;
    padding: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-img {
        width: 200px;
    }
    
    .discord-link {
        font-size: 1rem;
        padding: 12px 25px;
    }
    
    .profiles {
        gap: 20px;
    }
    
    .profile-card {
        width: 100%;
        max-width: 220px;
    }
}
.profile-card {
    position: relative;
}

.profile-card {
    position: relative;
}

/* Imagen emergente tipo Discord con animación */
.profile-hover {
    display: none;
    position: absolute;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: popIn 0.4s ease forwards;
}

.profile-hover img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 4px solid #ffcc00;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.7);
    object-fit: cover;
    transform: scale(0.8) rotate(0deg);
    transition: transform 0.5s ease;
}

/* Animación al aparecer */
@keyframes popIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.5) rotate(-10deg);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1) rotate(5deg);
    }
}

/* Hover que activa */
.profile-card:hover .profile-hover {
    display: block;
}

/* Efecto al pasar el mouse sobre la imagen misma */
.profile-card:hover .profile-hover img {
    transform: scale(1.1) rotate(10deg);
}
