html, body {
    touch-action: manipulation;
}

::selection {
        background-color: #327aff54;
}

/*---main.css (основной стиль) ---*/
@media only screen and (max-width: 768px) {
        /* Стили для планшетов */
    }
  
    @media only screen and (max-width: 480px) {
        /* Стили для телефонов */
    }

  html {
    box-sizing: border-box;
    scroll-behavior: smooth;
  }

* { 
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
     box-sizing: border-box; 
}
body {
    background: #1a2e39;
    font-family: "Exo", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    color: #fff;

}

body::-webkit-scrollbar {
    width: 5px;
  }
   
  body::-webkit-scrollbar-track {
    background: #333;
  }
   
  body::-webkit-scrollbar-thumb {
    background-color: #808080;
    border-radius: 10px;
  }  

/* Style for the scrollbars */
div::-webkit-scrollbar, label::-webkit-scrollbar {
  width: 5px; /* Vertical scrollbar width */
  height: 5px; /* Horizontal scrollbar height */
}

div::-webkit-scrollbar-track, label::-webkit-scrollbar-track {
  background: #333;
}

div::-webkit-scrollbar-thumb, label::-webkit-scrollbar-thumb {
  background-color: #808080;
  border-radius: 10px;
}
/* Style for the scrollbars */
textarea::-webkit-scrollbar, label::-webkit-scrollbar {
  width: 5px; /* Vertical scrollbar width */
  height: 5px; /* Horizontal scrollbar height */
}

textarea::-webkit-scrollbar-track, label::-webkit-scrollbar-track {
  background: #333;
}

textarea::-webkit-scrollbar-thumb, label::-webkit-scrollbar-thumb {
  background-color: #808080;
  border-radius: 10px;
}


  

div, table, font, i, span, p, a, button, input, textarea, select, label, h1, h2, h3, h4, h5, h6 {
    font-family: "Exo", sans-serif;
}
h1, h2, h3, h4, h5, h6 {
color: #fff;
    font-weight: 500;
}

.container {
    width: 100%;
    margin: 0 auto;
}
.header {
    background: #13232d;
    text-align: center;
    color: #fff;
}
.topMenu {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #1a2e39;
    text-align: center;
    color: #fff;
    padding: 4px;
    outline: none;
    box-shadow: 0 0 7px #000000ba;
}
.menuBtnTop{
    padding: 10px;
    font-size: 14px;
    background: #324b59;
    color: #fff;
    font-weight: 400;
    letter-spacing: 01px;
    border: solid 1px #324b59;
    border-radius: 4px;
    cursor: pointer;
}
.menuBtnTopBlue{
    padding: 10px;
    font-size: 14px;
    background: #0077db;
    color: #fff;
    font-weight: 400;
    letter-spacing: 01px;
    border: solid 1px #1f99ff;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 5px;
    transition: ease-in-out 0.2s;
}
.menuBtnTopBlue:hover, .menuBtnTopBlue:active {
    background: #015ba6;
    transition: ease-in-out 0.2s;
}

.bottomMenu {
    display: none;
}
.menuTopLines{
    display: table-cell;
}
@media only screen and (max-width: 768px) {
    .bottomMenu {
        position: fixed;
        bottom: 15px;
        left: 5%;
        width: 90%;
        display: block;
        text-align: center;
        color: #fff;
        padding-top: 3px;
        outline: none;
        z-index: 1;
        border-radius: 111px;
        background: #13232d73;
        backdrop-filter: blur(4px) saturate(200%);
        -webkit-backdrop-filter: blur(4px) saturate(200%);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .menuTopLines {
        display: none;
    }
}
.menuBtnBottom{
    border: none;
    background: none;
    color: #fff;
    border-bottom: 2px solid transparent;
    padding: 5px;
    transition: ease-in-out 0.1s;
    font-weight: 600;
}
.menuBtnBottom:focus, .menuBtnBottom:hover{
    outline: none;
    /*color: #0077db;
    border-bottom: 1px solid #0077db;*/
    transition: ease-in-out 0.1s;
    cursor: pointer;
}
.labelBtnBottom{
    font-size: 12px;
    font-weight: 400;
}
.material-symbols-outlined{
    font-size: 20px;
    color: #fff;
}


label{
color: #e8e5ffbf;
    font-weight: 400;
    font-size: 12px;
}
.textbox {
    padding: 10px;
    font-size: 14px;
    width: 100%;
background: #13232d;
    border: solid 1px #13222c;
    border-radius: 4px;
    color: #fff;
    outline: none;
}
.textarea {
    padding: 10px;
    font-size: 14px;
    width: 100%;
    background: #2e3656;
    border: solid 1px #3d4567;
    border-radius: 4px;
    color: #fff;
    outline: none;
}

.textbox:disabled, textarea:disabled {
    color: #a4a4a4;
}

.loginBtn {
        padding: 10px;
    font-size: 14px;
    background: #0077db;
    color: #fff;
    font-weight: 400;
    letter-spacing: 01px;
    border: solid 1px #1f99ff;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: ease-in-out 0.2s;
}
.loginBtn:hover {
    background: #026ec8;
    transition: ease-in-out 0.2s;
}
.loginBtn:disabled {
    background: #818181;
    color: #333;
    border: solid 1px #818181;
}

.msgred {
    text-align: left;
    font-size: 14px;
    color: #ec4848;
    border: solid 1px #ec4848;
    padding: 10px;
    border-radius: 3px;
}
.msgblue {
    text-align: left;
    font-size: 14px;
    color: #0077db;
    border: solid 1px #0077db;
    padding: 10px;
    border-radius: 3px;
}.msggreen {
    text-align: left;
    font-size: 14px;
    color: #35ce5a;
    border: solid 1px #35ce5a;
    padding: 10px;
    border-radius: 3px;
}


fieldset {
    border: none;
    border-top: 1px solid #33395c;

}
hr {
        text-align: center;
    border: solid 0.5px #ffffff2e;
}



#liveCasinoWins{
    width: 20%;
    position: fixed;
    top: 65px;
    right: 0px;
    height: 95vh;
    text-align: left;
        z-index: 1;
    overflow-y: auto;
}
@media only screen and (max-width: 768px) {
    #liveCasinoWins{
        width: 100%;
    }
}




.menuBtnLeftBlue {
    width: 85%;
    padding: 10px;
    font-size: 14px;
    background-color: rgba(0, 119, 219, 0.7); /* Полупрозрачный цвет фона */
    background-image: url(./img/casino.png);
    background-repeat: no-repeat;
    background-position: bottom -5px left 16px;
    background-size: 38px auto;
    background-blend-mode: multiply; /* Смешивает фоновое изображение с цветом фона */
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
    border: solid 1px #1f99ff;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0px 0px 5px 0px inset #1f99ff;
    transition: ease-in-out 0.2s;
}
.menuBtnLeftBlue:hover, .menuBtnLeftBlue:focus {
    background: #0077db91;
    background-image: url(./img/casino.png);
    background-repeat: no-repeat;
    background-position: bottom 0px left 16px;
    background-size: 38px auto;
    background-blend-mode: multiply; /* Смешивает фоновое изображение с цветом фона */
    transition: ease-in-out 0.2s;
}
.menuBtnLeftOrange {
    width: 85%;
    padding: 10px;
    font-size: 14px;
    background-color: #d67c11de; /* Полупрозрачный цвет фона */
    background-image: url(./img/football.png);
    background-repeat: no-repeat;
    background-position: bottom -5px left 16px;
    background-size: 38px auto;
    background-blend-mode: multiply; /* Смешивает фоновое изображение с цветом фона */
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
    border: solid 1px #d67c11;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0px 0px 5px 0px inset #e5bd8d;
    transition: ease-in-out 0.2s;
}
.menuBtnLeftOrange:hover, .menuBtnLeftOrange:focus {
    background: #d67c11b0;
    background-image: url(./img/football.png);
    background-repeat: no-repeat;
    background-position: bottom 0px left 16px;
    background-size: 38px auto;
    background-blend-mode: multiply; /* Смешивает фоновое изображение с цветом фона */
    transition: ease-in-out 0.2s;
}

.menuBtnLeftRed {
    width: 85%;
    padding: 10px;
    font-size: 14px;
    background-color: #d61111de;
    background-image: url(./img/formula1.png);
    background-repeat: no-repeat;
    background-position: bottom -5px left 16px;
    background-size: 38px auto;
    background-blend-mode: multiply;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
    border: solid 1px #d61111;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0px 0px 5px 0px inset #e58d8d;
    transition: ease-in-out 0.2s;
}

.menuBtnLeftRed:hover, .menuBtnLeftRed:focus {
    background: #d61111b0;
    background-image: url(./img/formula1.png);
    background-repeat: no-repeat;
    background-position: bottom 0px left 16px;
    background-size: 38px auto;
    background-blend-mode: multiply; /* Смешивает фоновое изображение с цветом фона */
    transition: ease-in-out 0.2s;
}


.fa-spin {
    animation: fa-spin 2s infinite linear !important;
}
legend {
    font-size: 12px;
    text-align: center;
}

.page {
    margin-top: 100px;
    width: 95%;
        text-align: left;
}

.material-symbols-outlined {
    vertical-align: middle; /* or top, bottom, depending on your design */
    -webkit-vertical-align: middle;
    -moz-vertical-align: middle;
}

.btnBlue {
    background: #1b89e3;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    outline: none;
}

#casinoOriginalsContainer {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding: 10px;
    text-align: left;

    overflow-x: auto;         /* horizontal scroll */
    overflow-y: hidden;       /* no vertical scroll */
    flex-wrap: nowrap;        /* prevent wrapping */
    scroll-behavior: smooth;  /* smooth scrolling effect */
}

#casinoSlotsContainer {
    display: flex;
    gap: 20px;
    padding: 10px;
    text-align: left;

    overflow-x: auto;         /* horizontal scroll */
    overflow-y: hidden;       /* no vertical scroll */
    flex-wrap: nowrap;        /* prevent wrapping */
    scroll-behavior: smooth;  /* smooth scrolling effect */
}

#casinoTopContainer {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding: 10px;
    text-align: left;

    overflow-x: auto;         /* horizontal scroll */
    overflow-y: hidden;       /* no vertical scroll */
    flex-wrap: nowrap;        /* prevent wrapping */
    scroll-behavior: smooth;  /* smooth scrolling effect */
}

#casinoScratchersContainer {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding: 10px;
    text-align: left;

    overflow-x: auto;         /* horizontal scroll */
    overflow-y: hidden;       /* no vertical scroll */
    flex-wrap: nowrap;        /* prevent wrapping */
    scroll-behavior: smooth;  /* smooth scrolling effect */
}

.casinoGameItem {
    position: relative;       /* THIS IS THE KEY */
    flex: 0 0 auto;           
    width: 100px;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 0 0px 5px #ffffff17;
}
@media (orientation: portrait) {
    
}

.casinoGameImage {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}



/* Hover overlay with play button */
.casinoGameItem .game-overlay{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0 0 0 / 54%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;

}
.casinoGameItem:hover .game-overlay,
.casinoGameItem:focus-within .game-overlay{
    opacity: 1;
    pointer-events: auto;
    transform: scale(1.08);
}
.play-btn{
width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(90deg, #324b59, #17232a);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    border: solid 1px #1a2e39;
}
.play-btn:focus{ outline: 3px solid rgba(255,180,255,0.18); }

.casinoGameItem:focus { outline: none; }


.balanceBadge {
border: solid 1px #13232d;
    padding: 10px;
    border-radius: 22px;
    background: #13232d;
    box-shadow: 0 0 10px inset #13232d;
    font-size: 14px;
    position: relative;
    top: -3px;
}

.noBox{
    border: solid 1px #13232d;
    border-radius: 4px;
    font-size: 14px;
}
.trxBox {
    margin-bottom: 10px;
    padding: 10px;
background: #13232da1;
    cursor: pointer;
}

a {
    font-size: 12px;
    color: #0077db;
    text-decoration: none;
}

.trxContainer {
overflow-y: auto;
    height: 50vh;
}
#casinoRoundsContent {
overflow-y: auto;
    height: 50vh;
}
@media only screen and (max-width: 768px) {
   .trxContainer {
        overflow-y: auto;
        height: 55vh;
    }
    #casinoRoundsContent {
        overflow-y: auto;
        height: 65vh;
    }
}


.depositOptionsContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: left;
    margin-top: 20px;
    padding: 10px;
    border-radius: 6px;
    text-align: left;
    
}
.depositOptionItem{
    width: 150px;
    cursor: pointer;
    text-align: center;
    float: left;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    position: relative;
    box-shadow: 0 0 0px 5px #ffffff17;
    z-index: 0;
}  
.depositOptionBox{
    width: 30%;
    border-radius: 6px;
    background: #13232d;
    padding: 11px;
    float: left;
}
@media only screen and (max-width: 768px) {
    .depositOptionBox{
        width: 100%;
        border-radius: 6px;
        background: #13232d;
        padding: 11px;
        float: left;
    }
}




/* Dropdown container */
.select2-container .select2-dropdown {
  background-color: #13232d; /* your color */
  border: 1px solid #13232d;
}

/* Individual options */
.select2-container .select2-results__option {
  background-color: #13232d;
  color: #fff;
}

/* Hovered option */
.select2-container .select2-results__option--highlighted {
  background-color: #4f46e5; /* hover color */
  color: #fff;
}

/* Selected option */
.select2-container .select2-results__option--selected {
  background-color: #312e81;
}
.select2-search__field {
  background-color: #111827;
  color: #fff;
  border: 1px solid #374151;
  border-radius: 4px;
}

/* Customize scrollbar width */
.select2-dropdown::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
}

/* Customize scrollbar track (background) */
.select2-dropdown::-webkit-scrollbar-track {
  background: #2d2d2d; /* Track color */
  border-radius: 10px;
}

/* Customize scrollbar thumb (the draggable part) */
.select2-dropdown::-webkit-scrollbar-thumb {
  background: #4b4b4b; /* Scrollbar color */
  border-radius: 10px;
  border: 2px solid #2d2d2d; /* Add border to thumb */
}

/* On hover, change the thumb color */
.select2-dropdown::-webkit-scrollbar-thumb:hover {
  background: #7a7a7a;
}

.select2-dropdown {
  scroll-behavior: smooth;
}


.buttonSportsTop{
padding: 10px;
    font-size: 14px;
    background: #13232d;
    color: #fff;
    font-weight: 400;
    letter-spacing: 01px;
    border: solid 1px #13232d;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}
.matchesContainer {
display: flex;
    flex-wrap: wrap;
    gap: 0px 10px;
    justify-content: center;
    text-align: left;
    width: 50%;
}
@media only screen 
  and (min-width: 480px) 
  and (min-width: 768px) 
  and (max-width: 1024px)
  and (orientation: portrait) {
    .matchesContainer {
        width:100%;
    }
}
@media only screen and (max-width: 768px) {
    .matchesContainer {
        width: 100%;
    }
}

.leagueHeader, .oddsHeader {
background: #13232d;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    width: 100%;
}
#loadMatches {
display: flex;
    flex-wrap: wrap;
    gap: 0px 10px;
    justify-content: center;
    text-align: left;
}
.leagueMatches{
display: flex;
    flex-wrap: wrap;
    gap: 0px 10px;
    justify-content: center;
    text-align: left;

}

.matchBox { 
    width: 49%;
    float: left;
}

@media only screen 
  and (min-width: 480px) 
  and (min-width: 768px) 
  and (max-width: 1024px)
  and (orientation: portrait) {
    .matchBox {
        width:100%;
        float: left;
    }
}
@media only screen and (max-width: 768px) {
    .matchBox {
        width:100%;
        float: left;
    }
}
.leagueBox {
    width: 100%;

}

@media only screen and (max-width: 768px) {
    .leagueBox {
        width: 100%;
    }
}

#searchMatches{
    width: 100%;
}

.searchBarHolder{
    width:40.5%;
}
@media only screen and (max-width: 480px) {
    .searchBarHolder {
        width: 100%;
    }
}

.leagueLogo, .teamLogo {
    width: 20px;
    vertical-align: middle;
    -webkit-vertical-align: middle;
    -moz-vertical-align: middle;
    margin-right: 5px;
}

/* Hide checkbox but keep it accessible */
.leagueCheckbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Clickable div */
.leagueToggle {
    cursor: pointer;
    display: inline-block;
}

.leagueBtn {
border: solid 1px #324b59;
    background: #324b59;
    padding: 10px;
    cursor: pointer;
    margin: 5px;
}

.marketOutcomes {
    display: flex;
}

/* Checked state: support both the hidden-checkbox adjacent selector and the JS-added class */
.leagueCheckbox:checked + .leagueBtn,
.leagueBtn.checked {
    background: #0077db;
    color: #fff;
}

/* Optional hover */
.leagueToggle:hover .leagueBtn {
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}
.matchHomeTeam {
    color: #008bff;
    font-weight: bold;
    margin: 0px 0px 10px 0px;
    font-size: 14px;
}
.matchAwayTeam {
    color: #fff;
    font-weight: bold;
    margin: 0px;
    font-size: 14px;
}
.kickoff {
    margin: 0px;
    color: #b1b1b1;
    font-weight: bold;
    font-size: 13px;
}

.countryBox {
    width: 100%;
}
.countryHeader {
    background: #121f27;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    width: 100%;
}

/* Countries & leagues selector visuals */
.countryHeader {     cursor: pointer;
    border: solid 1px #121f27;
    border-radius: 5px 5px 0px 0px; }
.countryHeader td { vertical-align: middle; }
.countryLeagues {  border-radius: 4px; margin-bottom: 8px; }
.countryBox { margin-bottom: 8px; }

/* Markets / odds styling */

.oddsHeader {
    background: #13232d;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    width: 100%;
}
.oddsMarket strong { display: block; font-size: 13px; padding: 6px 8px; background: #13232d; border-radius: 4px; cursor: pointer; }
.oddsMarket strong i { float: right; margin-left: 8px; }
.oddsMarket .marketOutcomes, .oddsMarket .marketOutcomes * { transition: all 0.18s ease; }
.oddsMarket.collapsed > *:not(strong) { display: none; }

.noOdds { color: #ec4848; padding: 8px; }
.oddsRaw { background: #0b0d1a; color: #dcdcdc; padding: 8px; border-radius: 4px; border: 1px solid #22243a; }

.leagueCountFixtures {
border-radius: 50%;
    border: solid 1px #13232d;
    padding: 1px 5px;
    background: #13232d;
    font-weight: bold;
}

#checkLeaguesNames {
        overflow-y: auto;
    display: inline-block;
    height: 30px;
}

.countriesLeaguesBox{
    overflow-y:auto;
    height: 40vh;
}
@media only screen and (max-width: 768px) {
    .countriesLeaguesBox{
        overflow-y: auto;
        height: 55vh;
    }
}

.dateBtn {
    font-size: 12px;
}

.activeDate {
    background-color: #0077db;
}

.oddsFixtureTitle {
    text-align: center;
    margin: 0;
    font-weight: bold;
}

.pageCategoryHolder {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Landscape default */
.categorySports,
.categoryCasino {
    width: 50%;
    border: solid 5px #13232d;
    border-radius: 10px;
    background: #13232d;
    overflow: hidden; /* IMPORTANT: prevents image overflow when scaling */
}

.categorySports img,
.categoryCasino img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.4s ease; /* smooth animation */
}

/* 🔥 Scale on hover */
.categorySports:hover img,
.categoryCasino:hover img {
    transform: scale(1.08);
}

/* Portrait = stacked */
@media (orientation: portrait) {
    .pageCategoryHolder {
        flex-direction: column;
    }

    .categorySports,
    .categoryCasino {
        width: 100%;
    }
}

.casino-section {
    margin-top: 30px;
}

/* Skeleton loader styles */
.skeleton-row{ display:flex; gap:10px; align-items:center; height:50px; }
.skeleton{ background: linear-gradient(90deg, #13232d 25%, #1a2e39 50%, #13232d 75%); background-size: 200% 100%; animation: shimmer 1.2s linear infinite; border-radius:4px; }
.skeleton.pill{ 
        height: 50px;
    min-width: 50px;
    padding: 0 12px;
    display: inline-block;
    border-radius: 5px;
 }
.skeleton.line{ 
        height: 40px;
    width: 100%;
    margin: 0px;
    border-radius: 3px;
}


.skeleton.box{ width:40px; height:40px; border-radius:4px; }
.skeleton.box.sk-casino { width: 100px;height: 160px;  border-radius:4px;}
.skeleton-casino-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    flex-wrap: nowrap;
}
.skeleton-container{ display:flex; flex-direction:column; gap:8px; width: 60%; }
@media only screen and (max-width: 1100px) {
    .skeleton-container{ width: 100%; }
}
@keyframes shimmer{ 0%{ background-position:200% 0 } 100%{ background-position:-200% 0 } }

/* small utility for centered skeleton */
.skeleton-center{ display:flex; justify-content:center; align-items:center; padding:8px 0; }

#gamesHolder {
    transition: filter 0.25s ease, opacity 0.25s ease;
}

/* Blur state */
#gamesHolder.blurred {
    filter: blur(5px);
    pointer-events: none;   /* 🔥 disables all clicks */
    user-select: none;      /* optional: prevents text selection */
}

/* Keep search always sharp */
#gameSearch {
    position: relative;
    z-index: 0;
}

#gameSearch:focus {
    box-shadow: 0 0px 10px 0px #0077db33;
    border: solid 1px #0077db75;
}
.casinoContentHolder {
    width: 60%;
    text-align: left;
}
@media (orientation: portrait) {
    .casinoContentHolder {
        width: 100%;
    }
}
@media only screen and (max-width: 1100px) and (orientation: landscape) {
    .casinoContentHolder {
        width: 100%;
    }
}

.casinoContentHeader {
    background: #203743;
}
.casinoContentHeader table td img {
position: relative;
    top: 16px;
}



.casinoContentHeader > div {
    position: absolute;
    width: 100%;
    transition: opacity 0.8s ease-in-out;
}

.casinoContentHeader {
    position: relative;
    height: 120px; /* adjust to your banner height */
    overflow: hidden;
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

.visible {
    opacity: 1;
}


.pageContent{
    width: 60%;
    text-align: left;
}
.pageContent img {
    pointer-events: none; 
}
@media only screen and (max-width: 1100px) and (orientation: landscape) {
 .pageContent { width: 100%;}
 .casinoContentHolder { width: 100%; }

}
.pageBanner {
    width: 100%;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    padding: 13px 5px;
}

.pageBanner .bannerLayer {
    content: "";
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: opacity 1s ease-in-out;
    opacity: 0;
    z-index: -1;
        top: -35px;
}
.pageBanner .bannerLayer.visible {
    opacity: 1;
}
.pageBanner .bannerContent {
    position: relative;
    z-index: 0;
}
.pageBanner img {
    width: 100%;
    vertical-align: middle;
}
.pageBanner h2 {
    margin: 0px;
}
.pageBanner span {
    color: gold;
    font-weight: bold;
    text-shadow: 0 0 10px gold;
}
.pageBanner button {
    padding: 10px;
    font-size: 14px;
    background: gold;
    color: #000;
    font-weight: bold;
    letter-spacing: 01px;
    border: solid 1px gold;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 5px;
    transition: ease-in-out 0.2s;
    box-shadow: 0 0 10px gold;
}

@media (orientation: portrait) {
    .pageContent{
        width: 100%;
    }
}

.liveTable {
    width: 100%;
}
.liveTable th {
    padding: 15px;
    background: #13232d;
}
.liveTable td {
    padding: 10px;
    font-size: 14px;
    border-bottom: solid 1px #13232d;
}
.liveTable td a {
    color: #fff;
    font-size: 14px;
}

.flashing {
    animation: flashing 2.5s ease infinite;
}

@keyframes flashing {
    0%   { filter: brightness(1.5);}
    50%   { filter: brightness(1.0); }
    100% { filter: brightness(1.5); } /* Fade out */
}
    



.boxHolder {
        background: #203743;
    padding: 5px;
    border-radius: 5px;
}
.boxHolder {
    margin-bottom: 5px;
}

.providerSection {
    display: flex;
    gap: 10px;
    margin: 0px;
    padding: 10px;
    text-align: left;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    scroll-behavior: smooth;
}

.providerImg {
    width: 140px;
    height: 50px;
    border-radius: 5px;
}