/* ==============================================================
   ESTILO MILITAR LEFT 4 DEAD PARA BOTONES (boton.css)
   ============================================================== */
/* Importar la fuente Oswald para el estilo militar */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap');

/* Contenedor flexible para los botones del footer */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.l4d-source-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1; /* Hace que ambos botones midan lo mismo */
    height: 30px;
    min-width: 120px;
    max-width: 220px;
    
    /* Degradado de asfalto oscuro de los menús de Valve */
    background: linear-gradient(180deg, #181c15 0%, #0a0c08 100%);
    color: #cccccc;
    
    /* Tipografía rígida apocalíptica */
    font-family: 'Oswald', 'Arial Black', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    
    border: 2px solid #2d3d22; /* Borde verde militar */
    border-radius: 0px !important; /* Esquinas totalmente rectas */
    cursor: pointer;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.8), 0 2px 4px rgba(0, 0, 0, 0.7);
    transition: all 0.1s ease-in-out;
    box-sizing: border-box;
    text-decoration: none; /* Quita subrayado de los enlaces */
}

/* Destello verde fosforescente al posar el cursor */
.l4d-source-btn:hover {
    color: #7fff00; 
    border-color: #5ea325;
    background: linear-gradient(180deg, #1d2b17 0%, #0d140a 100%);
    text-shadow: 0 0 5px rgba(127, 255, 0, 0.7);
}

/* Efecto hundido al hacer clic */
.l4d-source-btn:active { 
    transform: scale(0.97); 
    color: #528c20; 
}

.l4d-bio-icon { 
    font-size: 13px; 
    margin-right: 5px; 
    font-weight: normal; 
}

/* Ajuste para el copyright */
.copyright {
    font-size: 0.75rem;
    color: #4a4a4a;
    margin: 8px 0 0;
    text-align: center;
}

/* Responsive para móviles */
@media (max-width: 640px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    .l4d-source-btn {
        width: 100%;
        max-width: 100%;
        min-width: unset;
    }
}