* {
    font-family: sans-serif;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: white;
}

a:hover {
    color: white;
    text-decoration: none;
}

body {
    
    background-size: 100% 100%;
    color: #080505;
    background: radial-gradient(circle, rgb(12, 149, 212) 0%, rgb(56, 96, 109) 48%, rgb(52, 82, 75) 50%);
}

.figure-text {
    text-align: center;
}
.figure-text > p {
    position: relative;
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 5px;
    margin-bottom: 10px;
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1140px;
}

.adv {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

img {
    vertical-align: middle;
    border-style: none;
}

.title {
    display: flex;
    justify-content: center;
}

.title-text {
    color: white;
}

.content-box {
    padding: .5em;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
}

.content-box2 {
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    min-height: 500px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.content {
    padding: .5em;
    width: 100%;
}
:root{
  /* general slot-grid-1 variables */
  --slot-grid-1-bg-tile: #000000;
  --slot-grid-1-frame-color: #104cf1;
  --slot-grid-1-title-color: #222;
  --slot-grid-1-btn-bg: #f5f6fa;
  --slot-grid-1-btn-shadow: rgba(0,0,0,0.08);

  --slot-grid-1-shadow-main: rgba(0,0,0,0.35);
  --slot-grid-1-shadow-lift: rgba(0,0,0,0.45);

  --slot-grid-1-frame-border: 10px;
  --slot-grid-1-frame-radius: 16px;
  --slot-grid-1-frame-radius-mobile: 12px;

  --slot-grid-1-gap: 18px;
  --slot-grid-1-gap-mobile: 12px;

  --slot-grid-1-padding: 18px;
  --slot-grid-1-padding-mobile: 12px;

  --slot-grid-1-btn-radius: 8px;
  --slot-grid-1-btn-padding: 10px 14px;
  --slot-grid-1-btn-padding-mobile: 8px 10px;

  --slot-grid-1-hover-lift: -6px;
  --slot-grid-1-active-lift: -2px;

  --slot-grid-1-speed: .12s;

  --slot-grid-1-title-size: 13px;
  --slot-grid-1-title-weight: 700;
  --slot-grid-1-title-spacing: .5px;

  /* tile text specific */
  --slot-grid-1-tile-text-bg: rgba(17, 200, 233, 0.45); /* semi-transparent band */
  --slot-grid-1-tile-text-color: #ffffff;
  --slot-grid-1-tile-title-size: 14px;
  --slot-grid-1-tile-sub-size: 11px;
  --slot-grid-1-tile-padding: 8px 10px;
}

/* wrapper */
.slot { padding: 12px 0 40px; }

.slot-grid-1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--slot-grid-1-gap);
  align-items: start;
}

/* card */
.slot-grid-1-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px;
  -webkit-tap-highlight-color: transparent;
}

/* frame (tile) */
.slot-grid-1-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative; /* for tile text absolute placement */
  background: var(--slot-grid-1-bg-tile);
  border-radius: var(--slot-grid-1-frame-radius);
  padding: var(--slot-grid-1-padding);
  box-sizing: border-box;

  border: var(--slot-grid-1-frame-border) solid var(--slot-grid-1-frame-color);
  box-shadow:
    0 4px 8px var(--slot-grid-1-shadow-main),
    0 8px 18px var(--slot-grid-1-shadow-main);
  overflow: hidden;
  transition:
    transform var(--slot-grid-1-speed) ease,
    box-shadow var(--slot-grid-1-speed) ease;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* logo */
.slot-grid-1-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  z-index: 1;
  pointer-events: none; /* let click go to anchor */
}

/* tile text (inside black tile, anchored to bottom) */
.slot-grid-1-tile-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--slot-grid-1-tile-padding);
  background: var(--slot-grid-1-tile-text-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  z-index: 2;
  backdrop-filter: blur(2px); /* subtle blur behind band if supported */
}

/* tile title and subtitle */
.slot-grid-1-tile-title{
  color: var(--slot-grid-1-tile-text-color);
  font-size: var(--slot-grid-1-tile-title-size);
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  line-height: 1;
}

.slot-grid-1-tile-sub{
  color: var(--slot-grid-1-tile-text-color);
  font-size: var(--slot-grid-1-tile-sub-size);
  font-weight: 600;
  opacity: 0.95;
  line-height: 1;
  text-transform: uppercase;
}

/* meta area under tile */
.slot-grid-1-meta { width: 100%; text-align: center; }

.slot-grid-1-title {
  font-size: var(--slot-grid-1-title-size);
  font-weight: var(--slot-grid-1-title-weight);
  letter-spacing: var(--slot-grid-1-title-spacing);
  margin-bottom: 8px;
  color: var(--slot-grid-1-title-color);
  text-transform: uppercase;
}

.slot-grid-1-action {
  width: 100%;
  max-width: 180px;
  padding: var(--slot-grid-1-btn-padding);
  border-radius: var(--slot-grid-1-btn-radius);
  background: var(--slot-grid-1-btn-bg);
  border: none;
  box-shadow: 0 6px 0 var(--slot-grid-1-btn-shadow);
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

/* hover */
.slot-grid-1-card:hover .slot-grid-1-frame {
  transform: translateY(var(--slot-grid-1-hover-lift));
  box-shadow: 0 14px 30px var(--slot-grid-1-shadow-lift);
}
.slot-grid-1-card:active .slot-grid-1-frame {
  transform: translateY(var(--slot-grid-1-active-lift));
}

/* responsive */
@media (max-width: 420px) {
  .slot-grid-1 { grid-template-columns: repeat(2, 1fr); gap: var(--slot-grid-1-gap-mobile); }
  .slot-grid-1-frame { padding: var(--slot-grid-1-padding-mobile); border-radius: var(--slot-grid-1-frame-radius-mobile); }
  .slot-grid-1-action { padding: var(--slot-grid-1-btn-padding-mobile); }

  /* slightly smaller tile text on very small screens */
  .slot-grid-1-tile-title { font-size: 10px; }
  .slot-grid-1-tile-sub { font-size: 10px; }
}



.slot {
    display: block;
    margin-top: 20px;
}

.slot .slot-sidebar {
    padding-right:10px;
    padding-left:0;
    margin-top:5px;
    background-color:#000;
    float:none!important;
    width:100%!important;
    flex:none!important;
    max-width:100%!important;
    padding-right:0!important
}
.slot-sidebar-nav {
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap:wrap;
    flex-wrap:nowrap;
    padding-left:0;
    margin-bottom:0;
    list-style:none
}

.slot-sidebar-nav>li {
    border-bottom:1px solid #0092b1;
    width:100%;
    position:relative;
    display:block;
    border-bottom:none;
    padding:6px;
    background: black;
}

.slot-sidebar-nav>li>a {
    color:#fff;
    font-size:13px;
    padding:7px 10px;
    display:block;
    border:2px solid #1504ac;
    background-color: linear-gradient(to bottom,#0b3d80 0%,#063c7a 46%,#077c7c 100%);
}

.btn-provider:hover {
    background-color:#260d4e
}
a:hover{
    text-decoration:none;
    color:#fff
}
.btn-provider{
    text-align:center;
    display:block
}.btn-provider span{
    position:unset
}

.btn-logo{
    display:block;
    margin-left:auto;
    margin-right:auto;
    width: 50%;
    text-align: center;

    padding-top: 10px;
}
.img1 {  
max-width: 50%;  
height: auto;  
}  

.banner{
    display:block;
    margin-left:auto;
    margin-right:auto;
    background-size:cover!important
}

.next-btn {
    background: black;
    border: solid #100cdd;
    width: 15%;
    height: 7,5rem;
    font-size: xx-large;
    color: white;
}

.short{
    display:none
}
.mySlides{
    display:none
}

.enter {
    display: none;
}

.slot .content {
    float: none;
    width: 100%;
    padding: 0;
    flex: 0 0 100%;
    max-width: 100%;
   
}

.wrapper {
    width: 100%;
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    z-index: 0;
   
    border-radius: 5px;
}

.link-container {
    display: flex;
    justify-content: center;
    font-size: var(--x-large-font);
    padding: 0;
    width: 100%;
}

.link-container a {
    width: 50%;
    text-align: center;
    padding: 15px 20px;
    text-transform: uppercase;
}

.register-button {
    background: #000f;
    background: linear-gradient(to bottom,#2b9ab6 0,#2be2e2 100%);
    font-weight: 700;
    color: black;
    font-weight: bold;
    border-radius: 10px 10px 10px 10px;
}

.login-button {
    background: #000f;
    background: black;
    font-weight: 700;
    color:gold;
    font-weight: bold;
    border-radius: 10px 10px 10px 10px;
}

.card {
    float: left;
    width: 20%;
    background: transparent;
    border: none;
    text-align: center;
    position: relative;
    border-radius: 0;
}

.card:hover {
    background-color: rgba(14, 182, 233, 0.3);
    
}

.card-content {
    margin: 10px;
    color: #fff;
    font-size: 12px;
    border: none;
    overflow: hidden;
    position: relative;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px 10px 0px 0px;
    border: solid blue;
    background-color: #a0aec0;
}

.percent {
    height: 27px;
    display: flex;
    overflow: hidden;
    line-height: 0;
    font-size: .75rem;
    background-color: #e9ecef;
    /* border-radius: .25rem; */
    position: relative;
    z-index: 1;
}

.percent p {
    z-index: 15;
    position: absolute;
    text-align: center;
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    transform: translateY(14px);
    color: black;
}

.pola {
    height: 40px;
    /* display: flex; */
    overflow: hidden;
    line-height: 0;
    font-size: .75rem;
    /* background-color: #34568B; */
    /* border-radius: .25rem; */
    position: relative;
    z-index: 1;
    padding-top: 14px;
    background: linear-gradient(to bottom, #ff0066 0%, #cc0099 100%);
}

.polapp {
    height: 80px;
    /* display: flex; */
    overflow: hidden;
    line-height: 0;
    font-size: .75rem;
    /* background-color: #34568B; */
    /* border-radius: .25rem; */
    position: relative;
    z-index: 1;
    padding-top: 14px;
    background: linear-gradient(to bottom, #0033cc 0%, #3399ff 100%)
}

.jam {
    height: 40px;
    /* display: flex; */
    overflow: hidden;
    line-height: 0;
    font-size: .75rem;

    /* border-radius: .25rem; */
    position: relative;
    z-index: 1;
    padding-top: 14px;
 
}

.percents1 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: auto;
    padding: 0;          /* remove extra padding */
    margin: 0;           /* remove default margin */
    line-height: 1.6;      /* tighten vertical spacing */
    white-space: normal;
}


.percents {
    height: 27px;
    display: flex;
    overflow: hidden;
    line-height: 0;
    font-size: .75rem;

    /* border-radius: .25rem; */
    position: relative;
    z-index: 1;
}

.percents p {
    z-index: 15;
    position: absolute;
    text-align: center;
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    transform: translateY(14px);
    color: rgb(255, 255, 255);
}

.long {
    font-size: large;
    font-weight: bold;
    padding-top: 10px;
    color: #d39e00;
}

.percent-bar {
    /* background-color: #ffc107; */
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #007bff;
    transition: width .6s ease;
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite;
    /* animation: ; */
    z-index: 10;
}

.yellow {
    background-color: #ffc107 !important;
}

.green {
    background-color: #28a745 !important;
}

.red {
    background-color: #dc3545 !important;
}

.hover-btn {
    position: absolute;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.65);
    transition: all 0.45s ease-in-out;
    z-index: 10;
    width: 100%;
}

.play-btn {
    font-size: 15px;
    text-decoration: none;
    color: white;
    text-align: center;
    align-items: center;
    width: 100%;
    margin: 25% auto;
    padding: 8px;
    background-color: #15B586;
}

.img-zoom {
    transition: all 0.45s ease-in-out;
    height: 8rem;
    padding: 5px 5px 5px 5px;
    width: 100%;
}
.img-zoom1 {
    transition: all 0.45s ease-in-out;
    height: 11rem;
    padding: 5x 5px 5px 5px;
    size: 0.7rem;
    width: 1rem;
}
.img-zoom2 {
    transition: all 0.45s ease-in-out;
    height: 10rem;
    padding: 5x 5px 5px 5px;
    size: 0.7rem;
    width: 1rem;
}



.hover-btn:hover {
    opacity: 100%;
}

.hover-btn:hover~.img-zoom {
    transform: scale(1.2);
    position: relative;
}

.hover-btn:hover~.img-zoom1 {
    transform: scale(1.2);
    position: relative;
}

.hover-btn:hover~.img-zoom2 {
    transform: scale(1.2);
    position: relative;
}
.slot-pg-btn {
    background-color: #7182be;
    padding: 10px 15px;
    font-size: 30px;
    border-radius: 8px;
}

.slot-pg-btn:hover {
    background-color: rgb(81, 80, 161);
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}


@media (max-width: 992px) {
    .slot-sidebar-nav {
        flex-wrap: nowrap;
    }
    .slot-sidebar {
        float: none !important;
        width: 100% !important;
        flex: none !important;
        max-width: 100% !important;
        padding-right: 0 !important;
    }
    .slot-sidebar-nav li a img {
        height: 17.5px!important;
    }
    .slot-sidebar-nav li a p {
    font-size: 5px;
    }
    .content {
        float: none !important;
        width: 100% !important;
        flex: none !important;
        max-width: 100% !important;
    }
    .card {
        width: 33.3% !important;
    }
    .hover-btn:hover {
        opacity: 0;
    }
    .hover-btn:hover~.img-zoom {
        transform: scale(1);
        position: relative;
    }
    .hover-btn:hover~.img-zoom1 {
        transform: scale(1);
        position: relative;
    }
    .hover-btn:hover~.img-zoom2 {
        transform: scale(1);
        position: relative;
    }
    .btn-provider {
        text-align: center;
        display: block;
        padding: 0;
    }
    .btn-provider img {
        width: 100%;
    }
    .slot-sidebar-nav li {
        border-bottom: none;
    }
    .img-zoom {
        height: auto;
    }
    .img-zoom1 {
        height: auto;
    }
    .img-zoom2 {
        height: auto;
    }
    .slot-pg-btn {
        margin: 0;
        font-size: 12px;
        padding: 6px 10px;
        border-radius: 5px;
    }
}

/* FIX OLD CARD LAYOUT SPACING (pragmatic1.php) */

/* Use flexbox instead of float */
.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* override old float rules */
.card {
    float: none !important;
    width: 48% !important;  /* 2 cards per row on phone */
    margin: 1% !important;
    display: flex;
    justify-content: center;
}

/* make card-content full width */
.card-content {
    width: 100% !important;
    margin: 0 !important;
}

/* unify image height to avoid uneven spaces */
.img-zoom11 {
    width: 100% !important;
    height: 150px !important;   /* FIX: make all images equal */
    object-fit: cover !important;
}

/* phone responsive tighter grid */
@media(max-width:480px) {
    .card {
        width: 48% !important;
        margin: 1% !important;
    }
    .img-zoom11 {
        height: 130px !important;
    }
     /* provider card box */
    .slot-sidebar-nav li a.btn-provider {
        width: 130px !important;
        height: 145px !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 8px !important;
        box-sizing: border-box;
        gap: 6px;
    }

    /* smaller logo */
    .slot-sidebar-nav li a.btn-provider img {
        height: 48px !important;
        width: auto !important;
        object-fit: contain !important;
    }

    /* long name */
    .slot-sidebar-nav li a.btn-provider p.long {
        font-size: 14px !important;
        font-weight: 700;
        margin: 0;
        text-align: center;
        line-height: 1.2;
    }

    /* short name */
    .slot-sidebar-nav li a.btn-provider p.short {
        font-size: 12px !important;
        margin: 0;
        opacity: 0.9;
        text-align: center;
    }

    /* adjust arrows for smaller box */
    .next-btn {
        padding: 10px 8px !important;
        font-size: 20px !important;
    }
}
/* ================================
   DESKTOP FIX — 4 CARDS PER ROW
   ================================ */
@media (min-width: 992px) {
    .content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .card {
        width: 23% !important; /* 4 per row */
        margin-bottom: 20px !important;
        float: none !important;
    }

    .card-content {
        width: 100% !important;
        margin: 0 !important;
    }

    /* Desktop fixed image size */
    .img-zoom11 {
        width: 100% !important;
        height: 200px !important;     /* DESKTOP FIX */
        object-fit: cover !important; /* keep layout clean */
        border-radius: 10px 10px 0 0;
    }
}

/* ================================
   PHONE + TABLET FIX
   ================================ */
@media (max-width: 991px) {
    .card {
        width: 48% !important; /* 2 per row on mobile/tablet */
        margin: 1% !important;
    }

    .img-zoom11 {
        height: 140px !important;
    }
}
/* === SEARCH STYLES === */
.game-search {
  flex: 1 1 auto;
  padding: 10px 12px;
  border-radius: 8px;
  border: 2px solid #0c3eff;
  background: rgba(255,255,255,0.95);
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
}

.game-search:focus {
  box-shadow: 0 0 0 3px rgba(16,76,241,0.15);
}

.search-clear {
  background: #104cf1;
  color: #fff;
  border: none;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

.search-clear:hover { opacity: 0.95; }

/* highlighted matches inside percents1 */
.percents1 mark {
  background: rgba(255, 235, 59, 0.85);
  color: #000;
  padding: 0 3px;
  border-radius: 3px;
}
