body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: linear-gradient(to bottom, #4facfe 0%, #00f2fe 100%);
    font-family: 'Arial Rounded MT Bold', sans-serif;
    overflow: hidden; /* ბლოკავს სკროლს */
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-container {
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
}

.info {
    position: relative;
    z-index: 10;
    padding-top: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

h1 { font-size: 3rem; margin: 0; }

.game-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* საჩუქრის სტილი */
.falling-gift {
    position: absolute;
    font-size: 3rem;
    cursor: pointer;
    user-select: none;
    transition: transform 0.2s;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
}

.falling-gift:hover {
    transform: scale(1.2);
}

/* Modal Window */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); display: none; justify-content: center; align-items: center;
    z-index: 1000;
}

.modal {
    background: white; padding: 40px; border-radius: 30px; text-align: center; color: #333;
    width: 320px; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.prize-display { font-size: 5rem; margin: 20px 0; animation: bounce 1s infinite alternate; }

@keyframes bounce { from { transform: translateY(0); } to { transform: translateY(-10px); } }

button {
    background: #ff4757; color: white; border: none; padding: 15px 40px;
    border-radius: 50px; cursor: pointer; font-size: 1.2rem; font-weight: bold;
}