/* Game-specific styles for Cosmic Pop */
.game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative; 
}

#bubble-canvas {
    border: 5px solid var(--color-neon-pink);
    background-color: #050510; /* Very dark space background */
    margin: 20px 0;
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.7);
    border-radius: 10px;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    width: 400px;
    margin-bottom: 10px;
}

.stat-display {
    font-size: 1.2em;
    color: var(--color-light-text);
}

.controls-info {
    font-family: sans-serif;
    color: #aaa;
    margin-top: 15px;
}

/* Game Overlay */
.game-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 30px;
    border: 3px solid var(--color-neon-blue);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.7);
    z-index: 10;
}

.game-overlay h3 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.action-button {
    padding: 12px 25px;
    background-color: var(--color-neon-pink);
    color: var(--color-dark);
    border: none;
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    margin-top: 20px;
}

.action-button:hover {
    background-color: var(--color-neon-blue);
    box-shadow: 0 0 10px var(--color-neon-blue);
}

.hidden {
    display: none !important;
}


### 3. `game3_bubble_shooter/game.js`


http://googleusercontent.com/immersive_entry_chip/2

I've set up **Cosmic Pop** with a hexagonal grid, bubble drawing, a launcher, collision detection, and the core match-and-drop logic. Clicking on the Canvas will launch the bubble towards your cursor. Enjoy the game!