.tutorial-highlight {
    pointer-events: none;
    box-shadow: 0 0 0 9999px rgba(0,0,0,0.5), 0 0 18px 6px #ff00ff;
    border: 2.5px solid #ff00ff;
    border-radius: 8px;
    transition: all 0.2s;
}
.tutorial-bubble {
    background: #222;
    color: #fff;
    padding: 1em 1.4em;
    border-radius: 10px;
    box-shadow: 0 4px 24px #ff00ff55;
    max-width: 92vw;
    width: 330px;
    font-size: 1.1em;
    z-index: 10001;
    word-break: break-word;
}

@media (max-width: 600px) {
    .tutorial-bubble {
        width: 90vw;
        max-width: 95vw;
        left: 5vw !important;
        right: auto !important;
        top: 12vh !important;
        font-size: 1em;
        padding: 0.8em 0.5em;
    }
    .tutorial-highlight {
        box-shadow: 0 0 0 9999px rgba(0,0,0,0.62), 0 0 16px 4px #ff00ff;
    }
}

.tutorial-bubble button {
    margin-top: 10px;
    background: #ff00ff;
    color: #fff;
    border: none;
    padding: 0.5em 1.2em;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}
