/* Botón Flotante Pacman */
.pacman-fab {
    position: fixed;
    bottom: 102px;
    right: 70px; /* Al lado del de Flappy (20px + 40px + 10px) */
    width: 40px;
    height: 40px;
    background-color: #f1c40f; /* Amarillo Pacman */
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9998;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    font-size: 18px;
}

.pacman-fab:hover {
    transform: scale(1.1);
    background-color: #f39c12;
}

.pacman-fab i {
    color: #000;
}

/* Ocultar en escritorio si prefieres que sea solo móvil */
@media (min-width: 992px) {
    .pacman-fab {
        display: none;
    }
}

/* Contenedor del Juego Pacman */
#pacman-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10005;
    flex-direction: column;
}

#pacman-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.pacman-close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10006;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
