/* Estado activo del juego (Clase en Body) */
body.game-active .logo-bienvenida {
    display: none !important;
}

body.game-active #chrome-dino-wrapper {
    display: flex !important;
}

/* Ajuste para que el botón muestre estado activo */
body.game-active .dino-fab {
    background-color: #dc3545;
}

/* Icono de Flappy Bird (Sprite) */
.flappy-icon {
    display: inline-block;
    width: 34px;
    height: 24px; /* Ajustado ligeramente para centrar */
    background: url('../img/flappy/sprite.png') -276px -112px no-repeat;
    transform: scale(1.2); /* Un poco más grande para visibilidad */
    image-rendering: pixelated; /* Mantener estilo retro nítido */
}

/* Cambiar a X cuando está activo */
body.game-active .dino-fab .flappy-icon {
    background: none;
    width: auto;
    height: auto;
    transform: none;
}

body.game-active .dino-fab .flappy-icon::before {
    content: "\f00d"; /* fa-times */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 24px;
}
