/* =========================================
   footer.css | THE LIIGA GAMES
   ========================================= */

:root {
    --footer-bg: #000000; /* Negro puro para cerrar */
    --footer-card: #050a14;
    --footer-border: #002f6c; /* Borde Azul Finlandés */
    --footer-text: #8892b0;
    --footer-text-light: #ffffff;
    
    --fin-accent: #00A3E0;
    --fin-accent-glow: rgba(0, 163, 224, 0.4);
    --fin-blue: #002f6c;
}

/* --- CONTENEDOR PRINCIPAL --- */
.global-footer {
    background: var(--footer-bg);
    border-top: 3px solid var(--fin-accent); /* Línea azul hielo separando el footer */
    padding: 50px 20px 30px;
    margin-top: 60px; 
    color: var(--footer-text);
    font-family: 'Inter', sans-serif;
    width: 100%;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap; 
}

/* --- COLUMNAS Y ALINEACIÓN GENERAL --- */
.footer-col {
    flex: 1;
    min-width: 260px; 
}

.center-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- MARCA Y TEXTOS --- */
.footer-logo {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--fin-accent); /* Texto azul hielo */
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.footer-logo .highlight {
    color: var(--fin-blue); /* Highlight Azul marino */
    text-shadow: 0 0 10px rgba(0, 47, 108, 0.5);
}

.brand-col p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 10px;
    max-width: 320px;
}

.footer-heading {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--footer-text-light);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   GRID DE JUEGOS Y PRIVACIDAD EN PUNTA
   ========================================= */
.footer-games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 25px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 300px; 
}

.footer-games-grid a {
    color: var(--footer-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.footer-games-grid a:hover {
    color: var(--fin-accent);
}

.privacy-item-centered {
    grid-column: 1 / -1; 
    text-align: center;
    margin-top: 25px; 
}

.privacy-item-link {
    font-size: 0.85rem !important;
    color: var(--footer-text) !important;
    text-decoration: none !important;
    font-weight: 400 !important;
    font-style: italic;
    opacity: 0.8;
}

.privacy-item-link:hover {
    color: var(--footer-text-light) !important;
    opacity: 1;
}

/* =========================================
   REDES SOCIALES 
   ========================================= */
.social-icons-large {
    display: flex;
    gap: 20px; 
    justify-content: center;
    margin-bottom: 25px;
}

.social-icons-large a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.social-icons-large img {
    width: 32px;  
    height: 32px;
    object-fit: contain; 
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icons-large a:hover img {
    transform: scale(1.1);
}

/* --- RESPONSIVE DESIGN (Móviles) --- */
@media (max-width: 850px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .footer-col {
        width: 100%;
        text-align: center;
    }
}

/* Contenedor principal de contacto */
.puck-contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: var(--footer-card); 
    border: 1px solid var(--footer-border);
    border-radius: 10px;
    margin-top: 40px;
}

.contact-title {
    color: var(--footer-text);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Botón de contacto Liiga con colores invertidos */
.neon-email-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--fin-blue);
    border: 2px solid var(--fin-accent);
    border-radius: 50px;
    text-decoration: none;
    color: var(--fin-accent);
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.email-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.neon-email-btn:hover {
    background: var(--fin-accent); 
    color: var(--footer-bg); /* Texto negro al pasar el ratón */
    box-shadow: 0 0 20px var(--fin-accent-glow);
    transform: translateY(-3px);
}

.neon-email-btn:hover .email-icon {
    transform: scale(1.2) rotate(-10deg);
}