.scratch-win-wrapper {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    font-family: sans-serif;
}

.scratch-state {
    display: none !important;
}

.scratch-state.active {
    display: block !important;
}

.canvas-container {
    position: relative;
    width: 100%;
    height: 250px;
    background: #f9f9f9;
    border: 2px dashed #ddd;
    border-radius: 8px;
    overflow: hidden;
}

#scratch-canvas {
    cursor: crosshair;
    touch-action: none;
}

.scratch-btn {
    padding: 12px 24px;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: opacity 0.2s;
}

.scratch-btn:hover {
    opacity: 0.9;
}

#scratch-lead-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
}