.wheel-prize-trigger {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #ff6b6b;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    z-index: 9999;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.wheel-prize-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.wheel-prize-modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.wheel-prize-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}