@media (max-width: 760px) {
    .main-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .scratch-container {
        width: 200px;
        height: 300px;
        border-radius: 10px;
        margin-bottom: 20px;
        overflow: hidden;
        position: relative;
    }


    .scratch-card {
        position: absolute;
        inset: 0;
        display: grid;
        place-items: center;
        font-size: 24px;
        font-weight: bold;
        letter-spacing: 2px;
        z-index: 0;
    }

    canvas {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        cursor: grabbing;
    }

    .bonus-text {
        font-size: 14px;
    }
}