#tetris-trigger-elite {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ff0055;
    color: white;
    font-size: 24px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

#tetris-trigger-elite:hover {
    transform: scale(1.1);
}

.tetris-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999999;
    align-items: center;
    justify-content: center;
}

.tetris-modal-content {
    background: #222;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 30px rgba(255,0,85,0.5);
}

.tetris-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #888;
}

.tetris-close:hover {
    color: #fff;
}

.game-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-top: 20px;
}

#tetris-canvas {
    border: 2px solid #ff0055;
    background: #000;
    display: block !important;
    visibility: visible !important;
    width: 240px;
    height: 400px;
}

.game-info {
    text-align: left;
    min-width: 150px;
}

.game-info h3 { margin-top: 0; }

#tetris-start-btn {
    background: #ff0055;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 20px;
    width: 100%;
    font-size: 16px;
}

#tetris-start-btn:hover {
    background: #ff3377;
}

@media (max-width: 500px) {
    .game-container {
        flex-direction: column;
        align-items: center;
    }
}
