/* Configuración general */
body {
    font-family: Arial, sans-serif;
    background: url('fotos/banner\ \(tamaño\ largo\)-opcion1.png') no-repeat center center fixed; /* Imagen de fondo */
    background-size: cover;
    color: #fff;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

/* Contenedor principal con fondo semitransparente */
.container {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1000px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15); /* Fondo translúcido */
    backdrop-filter: blur(10px); /* Efecto difuminado */
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Panel izquierdo - Redes sociales */
.left-panel, .right-panel {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Para móviles: Redes y perfil en columna */
/* Responsive */
@media (max-width: 1000px) {
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Asegurar que el fondo cubra toda la pantalla en móviles */
    body {
        background-size: cover;
        background-position: center;
        height: 100vh;
        width: 100vw;
    }
}

/* Títulos */
h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* Botones de redes sociales */
.social-btn {
    display: block;
    width: 80%;
    padding: 12px;
    margin: 10px 0;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out, opacity 0.3s;
}

/* Colores de cada red social */
.instagram { background: #E1306C; }
.twitter { background: #1DA1F2; }
.tiktok { background: #000; }
.youtube { background: #FF0000; }

/* Animación al pasar el mouse */
.social-btn:hover, .contact-btn:hover, .discord-btn:hover, .profile-img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Panel derecho - Perfil */
.right-panel {
    text-align: center;
    padding: 40px;
}

/* Imagen de perfil */
.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #fff;
    transition: transform 0.3s ease-in-out;
}

/* Botones de contacto y Discord */
.buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.contact-btn, .discord-btn {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s ease-in-out, background 0.3s;
}

.contact-btn { background: #6a1b9a; } /* Morado */
.discord-btn { background: #5865F2; } /* Azul Discord */
