/* PACMAN OVERLAY */
#pacman-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#pacman-canvas {
    border: 4px solid #facc15;
    /* Yellow Border */
    background: #000;
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.5);
}

.pacman-ui {
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    margin-bottom: 20px;
}

.pacman-ui h1 {
    color: #facc15;
    font-size: 40px;
    margin-bottom: 10px;
    text-shadow: 2px 2px #d97706;
}

.pacman-ui p {
    font-size: 18px;
}

.close-game-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background: #ef4444;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
}

.close-game-btn:hover {
    background: #dc2626;
}