/* Pacman Game Styles */
#pacman-game-container {
    width: 600px;
    margin: 2rem auto;
    background-color: #000;
    border: 2px solid var(--neon-purple);
    position: relative;
    font-family: 'Courier New', Courier, monospace;
}

#pacman-canvas {
    display: block;
    background: #000;
}

#pacman-ui {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    color: #fff;
    background: #111;
    border-bottom: 1px solid #333;
}

.pac-btn {
    background: transparent;
    color: var(--neon-purple);
    border: 1px solid var(--neon-purple);
    padding: 5px 15px;
    cursor: pointer;
    font-family: var(--font-mono);
}

.pac-btn:hover {
    background: rgba(188, 19, 254, 0.2);
}

#pacman-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.hidden {
    display: none !important;
}
