/* Background overlay */
.popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    transition: bottom 0.6s ease;
    z-index: 9999;
}

.popup.show {
    bottom: 0;
}

/* Card */
.popup-card {
    width: 100%;
    height: 42vh;
    background: #fff;
    border-radius: 20px 20px 0 0;
    text-align: center;
    padding: 20px;
    position: relative;
    animation: slideUp 0.6s ease;
}

/* Close button */
.close-btn {
    position: absolute;
    right: 17px;
    top: 5px;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
}

/* Trophy */
.trophy {
    width: 160px;
    margin-top: -130px;

     /* Shadow bottom-right */
   filter: drop-shadow(-8px 12px 12px rgba(0, 0, 0, 0.4));
}

/* Text styles */
h2 {
    margin-top: 6px;
    font-size: 20px;
}



.amount {
    font-size: 24px;
    font-weight: bold;
   
}

.odds {
    color: #666;
    margin-top: 4px;
}

/* Button */
.share-btn-2 {
    background: #7CFC00;
    border: none;
    padding: 10px;
    width: 50%;
    font-weight: bold;
    margin: 15px 0;
    cursor: pointer;
    color: #000;
    border-radius: 6px;
}

/* Betslip link */
.betslip {
    display: block;
    margin-bottom: 15px;
    color: #000;
}

/* Checkbox */
.checkbox {
    font-size: 14px;
    color: #555;
}

/* Animation */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}