

.casinoContainer {
    /*width: 80%;*/
    margin: 0 auto;
    padding-top: 5px;
    min-height: calc(100vh - 430px);
}



@media screen and (min-width: 768px) {
    .backgroundGrid {
        display: grid;
        grid-template-columns: repeat(30, minmax(0, 1fr));
    }

    .colSPanSide {
        grid-column: span 6 / span 6;
    }

    .colSPanMain {
        grid-column: span 18 / span 18;
    }
    .colRight {
        display: flex;
        row-gap: 7px;
        flex-direction: column;
        padding-left: 5px;
    }
    .colLeft {
        padding-right: 5px;
    }
}

@media screen and (max-width: 768px) {
    .backgroundGrid {
        display: block;
    }

    .colSPanSide {
        display:none;
    }

    .colSPanMain {
        
    }

    .colRight {
        display: none;
    }

    .colLeft {
        display: none;
    }
}



    .filter-container {
        margin-bottom: 5px
    }

    .movies {
        /*display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;  Adjust margin between rows */
        width: 100%;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-gap: 5px;
        margin-bottom: 1rem;
    }

    .movie {
        position: relative;
        overflow: hidden;
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        /*flex: 0 0 calc(20% - 20px); 
    max-width: calc(20% - 20px);
    margin: 0 10px;  Adjust margin between movies */
    }

        .movie img {
            width: 100%;
            height: auto;
            border-radius: 5px;
            transition: transform 0.3s, filter 0.3s; /* Add filter transition */
        }

        .movie:hover img {
            transform: scale(1.05);
            filter: blur(5px); /* Apply blur effect on hover */
        }

        .movie .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            opacity: 0;
            transition: opacity 0.3s;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column; /* Stack buttons vertically */
        }

        .movie:hover .overlay {
            opacity: 1;
        }

    @media screen and (max-width: 992px) {
        .filter-container {
            margin-bottom: 5px
        }
    }

    @media screen and (max-width: 768px) {
        .movie .overlay a {
            background-color: transparent;
            border: 1px solid #ffffff !important;
            color: #ffffff;
            font-size: 10px !important;
            padding: 0px 4px !important;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
            margin: 1px !important;
            width: 50%;
            text-align: center;
        }
    }

    .movie .overlay a {
        background-color: transparent;
        border: 2px solid #ffffff;
        color: #ffffff;
        font-size: 14px;
        padding: 2px 10px;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s;
        margin: 2px;
        width: 50%;
        text-align: center;
    }

        .movie .overlay a:hover {
            background-color: #ffffff;
            color: #141414;
        }

    .try-it-button {
        border-color: #FF4500;
        color: #FF4500;
    }

        .try-it-button:hover {
            background-color: #FF4500;
            color: #ffffff;
        }

    .filter-input {
        padding: 10px;
        border-radius: 5px;
        border: 1px solid #ccc;
        box-sizing: border-box;
        width: 200px;
        float: right;
    }

    .category-dropdown {
        padding: 10px;
        border-radius: 5px;
        border: 1px solid #ccc;
        box-sizing: border-box;
        width: 200px;
    }

    @media screen and (max-width: 1100px) {
        .movies {
            grid-template-columns: repeat(5, 1fr);
        }

        .casinoContainer {
            width: 90%;
            margin: 0 auto;
            padding-top: 5px;
        }
    }

    @media screen and (max-width: 992px) {
        .movies {
            grid-template-columns: repeat(4, 1fr);
            grid-gap: 5px;
        }

        .casinoContainer {
            width: 100%;
            margin: 0 auto;
            padding-top: 5px;
        }
    }

    @media screen and (max-width: 768px) {
        .movies {
            grid-template-columns: repeat(3, 1fr);
        }

        .searchTitleiv {
            width: 49%;
        }

        .searchInputDiv {
            width: 49%;
        }

        .casinoContainer {
            width: 100%;
            margin: 0 auto;
            padding-top: 5px;
        }
    }

    @media screen and (max-width: 480px) {
        .movies {
            grid-template-columns: repeat(3, 1fr);
        }

        .searchTitleiv {
            width: 49%;
        }

        .searchInputDiv {
            width: 49%;
        }

        .casinoContainer {
            width: 100%;
            margin: 0 auto;
            padding-top: 5px;
        }
    }

    .supplierDD {
        border: 1px solid var(--secondary);
        background-color: var(--secondary);
        border-radius: 5px;
        color: var(--lightfont) !important;
        width: 100%;
        position: relative;
        top: -1px;
        /*margin-left: 10px;*/
    }

    .LoadMoreBtn {
        background-color: var(--quaternary);
        border-radius: 5px;
        border: 1px solid var(--quaternary);
        color: #fff;
        padding: 4px 20px;
        line-height: 21px;
    }

.paybill-container {
    width: 100%;
    margin: 0 auto;
    /*background: #fff;*/
    border-radius: 8px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    padding: 0px 5px 5px 5px;
}

.paybill-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
    color: var(--lightfont);
}

.paybill-table {
    width: 100%;
    border-collapse: collapse;
}

.paybill-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--secondary);
}

    .paybill-row:last-child {
        border-bottom: none;
    }

.paybill-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .paybill-logo img {
        width: 100px;
        height: 40px;
    }

    .paybill-logo span {
        font-size: 1em;
        color: #555;
    }

.paybill-button {
    font-size:18px;
    color:#fff;
    text-transform:uppercase;
}

    .paybill-button:hover {
        
    }

.winners-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 0px;
    /*padding: 20px;*/
}

.winners-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    color: #333;
}

.winner-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    border-bottom: 1px solid var(--primary);
    font-size: 16px;
    font-weight: bold;
    background-color:var(--secondary);
}

    .winner-entry:last-child {
        border-bottom: none;
        border-bottom-left-radius:5px;
        border-bottom-right-radius:5px;
    }

.winner-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .winner-details span {
        font-size: 0.95em;
        color: #fff;
        margin: 2px 0;
    }

.winner-image {
    width: 30%;
   /* height: 87px;*/
    border-radius:5px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

    .winner-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


.top_wrapper {
    -webkit-box-align: unset;
    -webkit-align-items: unset;
    -moz-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 5.625rem;
    padding: 20px;
    font-size: 22px;
    font-weight: bold;
    color: var(--primary);
}

.top_wrapper {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: -webkit-linear-gradient(var(--tertiary), var(--secondary) 100%);
    background: -moz-linear-gradient(var(--tertiary), var(--secondary) 100%);
    background: -o-linear-gradient(var(--tertiary), var(--secondary) 100%);
    background: linear-gradient(var(--tertiary), var(--secondary) 100%);
    -webkit-border-top-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    border-top-right-radius: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 5rem;
    position: relative;
}
.affiliateTitle {
    display:flex;
    background-color: var(--tertiary);
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
    color: var(--quaternary);
    border-radius: 5px;
    padding:10px;
    column-gap:10px;
}