body {
    background-color: #8e44ad;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Arial Black', sans-serif;
    color: white;
}

.game-container { text-align: center; }

h1 { font-size: 3rem; text-shadow: 3px 3px #4a235a; margin-bottom: 10px; }

p { margin-bottom: 30px; font-size: 1.2rem; opacity: 0.9; }

.card-wrapper {
    position: relative;
    width: 300px;
    height: 200px;
    margin: 0 auto;
    background: white;
    border: 8px solid #f1c40f;
    border-radius: 15px;
    overflow: hidden;
    cursor: crosshair;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.prize-under {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    background: #ecf0f1;
    color: #333;
    z-index: 1;
}

#scratchCanvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    touch-action: none; /* მობილურისთვის */
}

button {
    margin-top: 30px;
    padding: 15px 50px;
    font-size: 20px;
    background: #f1c40f;
    border: none;
    border-radius: 50px;
    color: #2c3e50;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 5px #d4ac0d;
}

/* Modal - იგივე რაც წინა თამაშებში */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); display: none; justify-content: center; align-items: center;
    z-index: 1000;
}
.modal {
    background: white; padding: 40px; border-radius: 25px; text-align: center; color: #333; width: 320px;
}
.prize-display { font-size: 5rem; margin: 20px 0; }