*{
    margin: 0;
    padding: 0;
}
body{
    background-color: #DEE2E6;
}
.get{
    margin-top: 30px;
    margin-bottom: 30px;
}
/* TOP HEADER */

.top-header{
    background:#111;
    padding:10px 15px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
}

.logo img{
    width:50px;
}

.login-section{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.login-section input{
    padding: 4px;
    width:180px;
    border:none;
    border-radius:5px;
}

.validation-box{
    background:#fff;
    padding: 4px 20px;
    border-radius:5px;
    font-weight:bold;
}

.btn{
    padding: 4px 20px;
    border:none;
    border-radius:5px;
    cursor:pointer;
    font-weight:bold;
    color:#fff;
}

.login-btn{
    background:#e60000;
}

.demo-btn{
    background:#ff3300;
}

/* MENU */

.menu-bar{
    background:#ffcc00;
    display:flex;
    overflow-x:auto;
}

.menu-bar a{
    text-decoration:none;
    color:#000;
    padding:10px;
    font-weight:bold;
    border-right:1px solid #00000020;
    white-space:nowrap;
    font-size: 12px;
    font-weight: 700;
}
.menu-bar::-webkit-scrollbar{
    display: none;
}
.menu-bar a.active{
    background:#e60000;
    color:#fff;
}

/* header */

.casino-banner{
    max-width:1450px;
    margin:auto;
    position:relative;
    margin-top: 10px;
}

.casino-banner img{
    width:100%;
    display:block;
}

.banner-bottom,
.card-bottom{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    background: linear-gradient(to right, #000000, #1a1a1a25);
    color:#fff;
    padding:4px 10px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-weight:bold;
}
.banner-bottom span{
    font-size: 12px;
}
.banner-bottom a,
.card-bottom a{
    background:#ffcc00;
    color:#000;
    padding:4px 10px;
    text-decoration:none;
    font-weight:bold;
    clip-path:polygon(10% 0,100% 0,90% 100%,0% 100%);
    font-size: 12px;
}

/* SPORTS */
.lite{
    background-color: #fff;
    padding: 0px;
}
.sports-wrapper{
    max-width:1450px;
    margin:auto;
    margin-top:10px;
}

.sports-card,
.sports-book{
    position:relative;
    overflow:hidden;
    padding:2px;
}

.sports-card img,
.sports-book img{
    width:100%;
    height:auto;
    display:block;
    object-fit:cover;
}

/* OVERLAY */

.sports-overlay{
    position:absolute;
    top:5px;
    right:5px;
    width:45%;
    height:calc(100% - 10px);
    background:rgba(0,0,0,0.55);
    color:#fff;
    padding:10px;
    border-radius:0 12px 12px 0;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.live-box{
    background:red;
    display:inline-block;
    padding:4px 8px;
    border-radius:4px;
    margin-bottom:10px;
    font-size:12px;
    font-weight:bold;
}

.sports-overlay ul{
    list-style:none;
    padding:0;
    margin:0;
}

.sports-overlay ul li{
    margin-bottom:6px;
    font-size:12px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.sports-overlay ul li span{
    background:#fff;
    color:#000;
    padding:3px 8px;
    border-radius:3px;
    font-size:11px;
    font-weight:bold;
}

/* BOTTOM CARD */

.card-bottom{
    position:absolute;
    left:5px;
    bottom:5px;
    width:calc(100% - 10px);
    padding:10px;
    background: linear-gradient(to right, #000000, #1a1a1a25);
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.card-bottom span{
    color:#fff;
    font-size:14px;
    font-weight:600;
}

.card-bottom a{
    background:#ffc107;
    color:#000;
    padding:5px 12px;
    border-radius:5px;
    text-decoration:none;
    font-size:12px;
    font-weight:bold;
}

/* SECTION */

.game-section{
    max-width:1460px;
    margin:auto;
    padding:0;
}

/* TITLE */

.game-title{
    background:#f5b400;
    color:#000;
    font-size:15px;
    font-weight:700;
    padding:4px 10px;
    text-transform:uppercase;
}

/* CARD */

.game-card{
    position:relative;
    overflow:hidden;
    background:#000;
}

.game-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
}

/* BOTTOM */

.game-bottom{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:linear-gradient(to right,#000,#222);
    padding:8px;
}

.game-bottom span{
    color:#fff;
    font-size:15px;
    font-weight:600;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    width:55%;
}

.game-bottom a{
    background:#f5b400;
    color:#000;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    padding:6px 12px;
    clip-path:polygon(10% 0,100% 0,100% 100%,0 100%);
}
/* HORIZONTAL SCROLL */

.games-scroll{
    display:flex;
    overflow-x:auto;
    gap:5px;
    padding-bottom:5px;
    scroll-behavior:smooth;
}

.games-scroll::-webkit-scrollbar{
    display: none;
}

.games-scroll::-webkit-scrollbar-thumb{
    background:#f5b400;
    border-radius:10px;
}

/* CARD WIDTH */

.games-scroll .game-item{
    min-width: 120px;
    flex: 0 0 auto;
}

.providers-section{
    width:78%;
    margin:10px auto;
    background:#f5b400;
    padding:15px;
}

.providers-title{
    font-size:18px;
    font-weight:700;
    color:#000;
    margin-bottom:15px;
    text-transform:uppercase;
}

.providers-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:15px;
}


.provider-card{
    position:relative;
    overflow:hidden;
    background:#000;
}

.provider-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
}

.provider-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    background:#000;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 12px;
}

.provider-name{
    color:#fff;
    font-size:14px;
    font-weight:500;
    text-transform:uppercase;
}

.play-btn{
    position: relative;
    background:#fff;
    color:#222;
    border:none;
    border-radius:8px;
    padding:4px 10px;
    font-size:14px;
    font-weight:bold;
    cursor:pointer;
    overflow:hidden;
    z-index:1;
}

/* Animated Gradient Border */
.play-btn::before{
    content:"";
    position:absolute;
    inset:-2px;
    background:linear-gradient(
        90deg,
        red,
        yellow,
        lime,
        cyan,
        blue,
        magenta,
        red
    );
    background-size:400%;
    border-radius:10px;
    animation:borderMove 4s linear infinite;
    z-index:-2;
}

/* Inner White Background */
.play-btn::after{
    content:"";
    position:absolute;
    inset:2px;
    background:#fff;
    border-radius:6px;
    z-index:-1;
}

@keyframes borderMove{
    0%{
        background-position:0%;
    }
    100%{
        background-position:400%;
    }
}

.play-btn:hover{
    color:#000;
}

/* faq */
    .faq-section {
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
  }


  .faq-item {
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .faq-question {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    border: 1px solid #fff;
    color: #000;
    background-color: #f5b400;
  }

  .faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 18px;
  }

  .faq-question.active::after {
    content: '-';
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
  }

  .faq-answer p {
    padding: 15px 0;
    margin: 0;
    color: #000;
  }
/* faq */



/* footer */

    .footer-wrapper{
      background:#f5f5f5;
      padding:40px 20px;
      text-align:center;
    }

    .license-box{
      max-width:1000px;
      margin:auto;
      background:#fff;
      border:1px solid #cfcfcf;
      border-radius:14px;
      display:flex;
      align-items:center;
      overflow:hidden;
    }

    .left-logo{
      width:100px;
      padding:25px;
      border-right:1px solid #cfcfcf;
    }

    .left-logo img{
      width:100%;
    }

    .right-content{
      flex:1;
      display:flex;
      align-items:center;
      gap:20px;
      padding:25px;
      text-align:left;
    }

    .right-content img{
      width:100px;
    }

    .right-content p{
      font-size:13px;
      line-height:1.5;
      color:#000;
    }

    .browser-text{
      margin-top:22px;
      color:#6c7a89;
      font-size:12px;
    }

    .footer-links{
      margin-top:20px;
      padding-top:20px;
      border-top:1px solid #cfcfcf;
    }

    .footer-links a{
      color:#000;
      text-decoration:underline;
      margin:0 12px;
      font-size:12px;
    }


/* footer */

 .whatsapp{
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg,#25D366,#128C7E);
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    animation: pulse 1.5s infinite;
}

.whatsapp img{
    width: 28px;
    height: 28px;
}

@keyframes pulse{
    0%{
        transform: translateX(-50%) scale(1);
    }
    50%{
        transform: translateX(-50%) scale(1.05);
    }
    100%{
        transform: translateX(-50%) scale(1);
    }
}

@media(max-width:992px){
    .providers-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:576px){
    .providers-section{
        width:95%;
    }

     .providers-grid{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }


    .provider-card img{
        height:250px;
    }
}
/* MOBILE */

@media(max-width:768px){

    .game-title{
        font-size:16px;
        padding:6px 10px;
    }

    .game-card img{
        height:220px;
    }

    .game-bottom{
        padding:6px;
    }

    .game-bottom span{
        font-size:12px;
    }

    .game-bottom a{
        font-size:11px;
        padding:5px 8px;
    }

    .sports-wrapper{
        margin-top:5px;
    }

    .sports-card,
    .sports-book{
        padding:3px;
    }

    .sports-overlay{
        width:50%;
        padding:8px;
    }

    .sports-overlay ul li{
        font-size:10px;
    }

    .sports-overlay ul li span{
        padding:2px 6px;
        font-size:9px;
    }

    .card-bottom span{
        font-size:11px;
    }

    .card-bottom a{
        padding:4px 8px;
        font-size:10px;
    }

    .top-header{
        flex-direction:column;
        gap:15px;
    }

    .login-section{
        justify-content:center;
    }

    .login-section input{
        width:140px;
    }

    .banner-grid{
        grid-template-columns:1fr;
    }
          .license-box{
        flex-direction:column;
      }

      .left-logo{
        border-right:none;
        border-bottom:1px solid #cfcfcf;
      }

      .right-content{
        flex-direction:column;
        text-align:center;
      }

      .browser-text{
        font-size:15px;
      }

      .footer-links a{
        display:block;
        margin:10px 0;
      }
}
@media only screen and (max-width: 476px){
    .lite{
        width: 100%;
    }
        .card-bottom {
        padding: 0px 2px;
    }
    .provider-name{
        font-size: 9px;
    }
    .play-btn{
        font-size: 12px;
    }
     p{
        text-align: justify;
    }
    .faq-section {
            padding: 10px;
        }
}
