.start-popup{
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),url(/assets/images/background-water-flow.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 8px;
    width: 100%;
    min-height: 459px;
    height: auto;
    z-index: 101;
    display: flex;
    justify-content: center;
    align-items: center;

    .popup-content{
        padding: clamp(50px,3vw,60px) 50px;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
        position: relative;
        gap: 30px;
    
        .grand-prize-header{
            background-color: #003DA6;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            padding: 12px;
        }
    
        .grand-prize-header p {
            color: #FFFFFF !important;
            text-align: center;
            font-weight: 700;
            font-size: 14px;
            line-height: 19px;
        }
    
        .title{
            font-weight: 700;
            font-size: clamp(24px,3vw,32px);
            line-height: 100%;
        }

        .description-container{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            @media only screen and (max-width: 700px){
                width: 80%;
            }

            .description{
                font-weight: 400;
                font-size: clamp(12px,3vw,18px);
                line-height: 100%;
            }
    
            .description.one{
                width: min(420px, 90%);
            }
        }
    
        .lets-go{
            font-weight: 700;
            font-size: clamp(12px,3vw,18px);
            line-height: 100%;
        }
    
        .play-button{
            background-color: #003DA6;
            border: none;
            border-radius: 7.5px;
            padding: 10px 30px;
            width: fit-content;
            color: #FFFFFF;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
        }
    
    }

    .popup-content p{
        margin: 0;
        font-family: Arial;
        color: #003DA6;
    }
}
