/* ========================================
   GAME FOOTER STYLES - Pixelplay
   ======================================== */

.game-footer {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.game-footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.game-footer .footer-left {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.game-footer .footer-center {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.game-footer .footer-center a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.game-footer .footer-center a:hover {
    color: #fff;
}

.game-footer .footer-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.game-footer .social-icon {
    width: 24px;
    height: 24px;
    opacity: 0.8;
    transition: opacity 0.2s, transform 0.2s;
}

.game-footer .social-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

.game-footer .home-link {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.game-footer .home-link:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .game-footer .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .game-footer .footer-center {
        justify-content: center;
    }
    
    .game-footer .footer-right {
        justify-content: center;
    }
}
