#reveal-instant-wins {
    background: linear-gradient(to right, #ffd85f, #c89319, #ffc454);
}

#instant-win-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    z-index: 1000;
    text-align: center;
    max-width: 80%;
    box-sizing: border-box;
    border-radius: 11px;
}

#instant-win-popup .message {
    margin: 20px 20px 30px 20px !important;
    text-align: center !important;
    font-size: 26px;
    font-weight: 600;
}

.win-popup p {
    margin-bottom: 20px;
	text-align: center !important;
}

.tickets-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-height: 300px;
    overflow-y: auto;
}

.ticket {
    border-radius: 3px;
    height: 60px;
    width: 22%;
    margin: 3%;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-width: 65px;
}

.ticket strong {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

.ticket .prize {
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 600;
}

.ticket .number {
    font-size: 22px;
}

.close-popup {
    position: absolute;
    top: 5px;
    right: 17px;
    cursor: pointer;
    font-size: 30px;
    font-weight: 400;
}

.play-again {
    margin-top: 31px;
    margin-bottom: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.play-again p {
    margin-bottom: 0 !important;
    margin-right: 15px;
}

.play-now-btn {
    display: inline-block;
    padding: 5px 20px;
    background: linear-gradient(to right, #ffc454, #c79118, #ffd85f);
    color: #fff !important;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
}

.play-now-btn:hover {
    text-decoration: underline;
}

.ticket.won {
    background: #fdc254;
    color: white;
    border: 1px solid #fdc254;
}

#instant-win-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 999; /* Lower than popup z-index */
}

.competition-title {
    width: 100%;
    text-align: center !important;
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0 10px 0;
    padding-left: 10px;
}

.group-divider {
    width: 90%;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 15px auto;
}

/* Responsive styling */
@media (max-width: 768px) {
    #instant-win-popup {
        width: 90%;
        padding: 15px;
    }

    #instant-win-popup .message {
        font-size: 20px;
    }

    .ticket {
        width: 27%;
        margin: 2%;
    }

    #reveal-instant-wins {
        width: 100%;
        padding: 15px;
    }

    .close-popup {
        top: 7px;
        right: 18px;
        font-size: 33px;
        font-weight: 300;
    }

    .play-now-btn {
        width: 40%;
        padding: 8px 15px;
        font-size: 18px;
    }

    .play-again p {
        font-size: 16px;
    }

    .competition-title {
        font-size: 16px;
        margin: 10px 0 8px 0;
    }
}