*{
    margin: 0;
    padding: 0;
}
body{
    background-color: #111;
}
h1, h2, h3, h4{
    color: #7fff00;
}
p{
    color: #fff;
}
ul  {
    color: #fff;
}
/* header start */
.logo{
    width: 150px;
    margin-top: 15px;
}
.stip{
    background-color: #000;
    position: fixed;
    z-index: 999;
}

/* HEADER */
.header{
  padding:15px 20px;
}
.header-inner{
  display:flex;
  align-items:center;
  gap:15px;
}

/* Buttons */
.btn{
  padding: 8px 20px;
  border-radius:30px;
  text-decoration:none;
  font-weight:bold;
  font-size:14px;
}
.login{
  border:2px solid #00c6ff;
  color:#fff;
}
.login:hover{
  border:2px solid #00c6ff;
  color:#fff;
}
.register{
  background:linear-gradient(90deg,#00c6ff,#7fff00);
  color:#fff;
}
.register:hover{
    color: #fff;
}

/* Icon Buttons */
.icon-btn{
  width:45px;
  height:45px;
  border-radius:12px;
  border:2px solid #00ff99;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  color:#fff;
  text-decoration:none;
}
.icon-btn:hover{
    color: #fff;
    text-decoration: none;
}
.menu{ border:none; }

/* OVERLAY */
.overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  display:none;
  z-index:9;
}

/* SIDEBAR */
.sidebar{
  position:fixed;
  top:0;
  right:-300px;
  width:300px;
  height:100%;
  background:#111;
  z-index:10;
  transition:0.4s;
  padding:20px;
}

/* Active */
.sidebar.active{
  right:0;
}
.overlay.active{
  display:block;
}

/* Sidebar Header */
.sidebar-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:20px;
}
.sidebar-header span{
    color: #fff;
}
.sidebar-header button{
  background:none;
  border:none;
  color:#fff;
  font-size:22px;
  cursor:pointer;
}

/* Menu List */
.sidebar ul{
  list-style:none;
  padding:20px 0;
}
.sidebar ul li{
  margin-bottom:15px;
}
.sidebar ul li a{
  color:#fff;
  text-decoration:none;
  font-size:16px;
}
.sidebar ul li a:hover{
  color:#00ff99;
}

.menu-horizontal {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  gap: 15px;
  padding: 10px;
  padding-top: 80px;
  background-color: #303030;
}
.meet{
    width: 20px;
}
.menu-horizontal a {
  color: #8f99a3;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}

/* Hide scrollbar (optional) */
.menu-horizontal::-webkit-scrollbar {
  height: 4px;
}
.menu-horizontal::-webkit-scrollbar-thumb {
  background: #ff5f6d;
}
/* header end */

marquee{
    color: #fff;
}
.score-container{
  height: 150px;           
  overflow: hidden;
  position: relative;
  padding: 5px;
  border-radius:20px;
  background:linear-gradient(135deg,#2b145f,#5a2bd8);
}

.score-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #222;
  background: #2b145f;
  color: #fff;
}
.score-row h4{
    font-size: 15px;
}
.left{
  display: flex;
  align-items: center;
  gap: 10px;
}

.game-icon{
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.amount{
  font-weight: bold;
  color: #00ff9c;
}
    /* Tabs */
    .game-tabs {
      display: flex;
      gap: 25px;
      padding: 20px 30px;
      background: #1a1a1a;
      border-radius: 50px;
      margin-top: 20px;
    }

    .game-tabs a {
      text-decoration: none;
      color: #bfbfbf;
      font-weight: 600;
      position: relative;
      transition: color 0.3s ease;
    }

    .game-tabs a.active, 
    .game-tabs a:hover {
      color: #ffd700;
    }

    /* Section */
       .games-section {
      padding: 40px 60px;
    }

    .game-card {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      background: #1a1a1a;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .game-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      transition: transform 0.4s ease, filter 0.4s ease;
    }

    .game-card:hover img {
      transform: scale(1.08);
      filter: brightness(0.5);
    }

    /* Overlay for hover */
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .game-card:hover .overlay {
      opacity: 1;
    }

    .play-btn {
     color: #fff;
      font-weight: 700;
      padding: 8px 20px;
      border-radius: 25px;
      text-transform: uppercase;
      font-size: 0.9rem;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.3s ease;
    }

    .game-card:hover .play-btn {
      opacity: 1;
      transform: translateY(0);
    }

    .play-btn:hover {
    color: #fff;
    text-decoration: none;
    }

    .game-title {
      position: absolute;
      left: 10px;
      bottom: 10px;
      font-weight: 600;
      font-size: 0.95rem;
      color: #fff;
      text-shadow: 0 0 5px rgba(0,0,0,0.7);
    }

    /* Custom 5-column grid for desktop */
    @media (min-width: 1200px) {
      .col-xl-5th {
        flex: 0 0 20%;
        max-width: 20%;
      }
    }

    /* Mobile - 2 per row */
    @media (max-width: 767.98px) {
      .col-xl-5th {
        flex: 0 0 50%;
        max-width: 50%;
      }
    }

/* Load More Button */
    .load-more {
      display: block;
      margin: 40px auto 0;
      background:linear-gradient(90deg,#00c6ff,#7fff00);
      color:#fff;
      font-weight: 700;
      border: none;
      border-radius: 30px;
      padding: 12px 30px;
      font-size: 1rem;
      text-transform: uppercase;
      transition: all 0.3s ease;
    }

    .load-more:hover {
     background:linear-gradient(90deg,#00c6ff,#7fff00);
     color:#fff;
      transform: scale(1.05);
    }
.testimonial-slider {
  overflow: hidden;
  max-width: 100%;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 25px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 320px;
}


.testimonial-section{
  padding:60px 20px;
  text-align:center;
}

.testimonial-section h3{
  margin-bottom:40px;
  color:#333;
}

/* Row */
.testimonial-row{
  display:flex;
  gap:25px;
  justify-content:center;
  flex-wrap:wrap;
}

/* Card */
.testimonial-card{
  background:#fff;
  width:320px;
  padding:25px;
  border-radius:8px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  text-align:left;
}

/* Stars */
.stars{
  color:#f5b301;
  font-size:18px;
  margin-bottom:10px;
}

/* Text */
.testimonial-card p{
  font-size:14px;
  color:#555;
  line-height:1.6;
  margin-bottom:20px;
}

/* Responsive */
@media(max-width:900px){
  .testimonial-card{
    width:100%;
    max-width:350px;
  }
}
    /* footer */
    footer {
      background-color: #000;
      padding: 60px 0 20px;
    }

    .footer-logo img {
      width: 180px;
      margin-bottom: 20px;
    }

    .footer-text {
      color: #ccc;
      line-height: 1.6;
      font-size: 0.95rem;
    }

    .footer-text span {
      color: #ffcc00;
      font-weight: 600;
    }

    .footer-heading {
      font-weight: 700;
      margin-bottom: 20px;
      text-transform: uppercase;
      color: #fff;
    }

    .footer-links a {
      display: block;
      color: #a5a5a5;
      text-decoration: none;
      margin-bottom: 10px;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: #ffcc00;
    }

    .social-icons a {
      display: inline-block;
      color: #fff;
      font-size: 1.2rem;
      margin-right: 15px;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .social-icons a:hover {
      color: #ffcc00;
      transform: scale(1.1);
    }

    .contact-info {
      margin-top: 15px;
      font-size: 1.1rem;
      color: #fff;
    }

    .contact-info i {
      margin-right: 10px;
      color: #ffcc00;
    }

    .providers {
      border-top: 1px solid #222;
      margin-top: 40px;
      padding-top: 25px;
      text-align: center;
    }

    .providers h5 {
      font-weight: 700;
      margin-bottom: 20px;
      color: #fff;
    }

    .provider-logos img {
      height: 30px;
      margin: 0 15px 10px;
      transition: transform 0.3s ease;
    }

    .provider-logos img:hover {
      transform: scale(1.1);
    }

    /* Responsive tweaks */
    @media (max-width: 768px) {
      footer {
        text-align: center;
      }
      .social-icons a {
        margin-right: 10px;
      }
    }
    /* footer */

    /* Bottom nav container */
    .bottom-nav {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: #1a1a1a;
      border-top: 1px solid #333;
      display: none; /* hidden on desktop */
      justify-content: space-around;
      align-items: center;
      padding: 8px 0;
      z-index: 9999;
    }

    /* Single nav item */
    .nav-item {
      text-align: center;
      color: #aaa;
      font-size: 0.8rem;
      flex: 1;
    }

    .nav-item i {
      display: block;
      font-size: 1.3rem;
      margin-bottom: 4px;
    }

    .nav-item.active,
    .nav-item:hover {
      color: #ffcc00;
    }

    /* Center highlight button */
    .nav-center {
      position: relative;
      top: -25px;
      background: #ffcc00;
      color: #000;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
      border: 3px solid #1a1a1a;
    }

    .nav-center i {
      font-size: 1.5rem;
    }

    .nav-label {
      font-size: 0.8rem;
      margin-top: 3px;
    }

    /* Show only on mobile */
    @media (max-width: 767px) {
      .bottom-nav {
        display: flex;
      }
    }

    /* faq */
.faq-section {
    width: 100%;
    min-height: 100vh;
    padding: 40px;
    background: #000;
    box-sizing: border-box;
  }

  .faq-section h4 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #fff;
  }

  .faq-item {
    background: #f9f9f9;
    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: 2px solid #00c6ff;
    background: #000;
    color: white;
  }

  .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;
    background: #000;
    padding: 0 20px;
  }

  .faq-answer p {
    padding: 15px 0;
    margin: 0;
    color: #fff;
  }
       /*whatsaap*/
 .float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 80px !important;
    right: 35px;
    background: linear-gradient(
      90deg,
      rgb(55, 223, 97) 0%,
      rgb(9, 187, 3) 100%
    );    
    color: #fff !important;
    bottom: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 100;
  }
  .bb{
    color: #fff;
  }
  .my-float {
    margin-bottom: 8px;
    margin-top: 1px;
    margin-left: 1px;
    font-size: 30px;
  }
  /*whatsaap end*/ 

 @media only screen and (max-width: 476px){
    .menu-horizontal {
        padding-top: 150px;
    }
    .logo{
        margin-left: 130px;
    }
    .icon-btn {
        display: none;
    }
    .flag{
        display: none;
    }
    .menu{
        display: none;
    }
    .btn{
        width: 100%;
    }
    .games-section {
    padding: 9px 15px;
    }
    .game-tabs a {
        font-size: 12px;
    }
    .game-tabs {
      padding: 20px 6px;
    }
    .score-container {
        display: none;
    }
        .faq-section{
        padding: 10px;
    }
    p{
        text-align: justify;
    }
    .clip{
        margin-bottom: 50px;
    }
}