#mario-launcher-container {
    position: fixed;
    bottom: 20px;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 999999;
}
#mario-launcher-btn {
    width: 100px;
    height: 100px;
    cursor: pointer;
    transition: transform 0.2s;
    background: none;
    border: none;
    padding: 0;
}
#mario-launcher-btn:hover {
    transform: scale(1.1);
}
#mario-launcher-btn img {
    width: 100%;
    height: auto;
}
#mario-game-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 1000000;
    display: none;
    align-items: center;
    justify-content: center;
}
.mario-modal-content {
    background: #000;
    padding: 20px;
    border: 4px solid #fff;
    border-radius: 10px;
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}
#mario-close-modal {
    position: absolute;
    top: -15px;
    right: -15px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: #e74c3c;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    z-index: 1001;
}
#mario-game-canvas-container {
    width: 512px;
    height: 480px;
    background: #5c94fc;
}
#mario-game-canvas {
    width: 100%;
    height: 100%;
    display: block;
}