*{
    margin: 0;
    padding: 0;
}
body {
  background: #0a0a0a;
  color: #fff;
  font-family: Arial;
}
h1, h2, h3, h4{
    color: goldenrod;
    font-weight: bold;
    font-size:30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.post{
    width: 100%;
}
/* Wrapper */
.slider-wrapper {
  overflow: hidden;
  width: 100%;
}

/* Container - smooth infinite scroll */
.slide-icon-container {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: smooth-slide 10s linear infinite;
}

/* Each Icon + Text */
.slide-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: white;
  padding: 5px 10px;
  border-radius: 50px;
  flex-shrink: 0;
  background: transparent;
  transition: transform 0.3s ease;
}

.slide-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.slide-icon:hover {
  transform: scale(1.1);
}

/* Smooth continuous sliding animation */
@keyframes smooth-slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* move only half width (because we duplicated items) */
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .slide-icon-container {
    gap: 6px;
    animation-duration: 25s; /* slower for tablets */
  }
  .slide-icon {
    font-size: 14px;
    padding: 4px 6px;
  }
  .slide-icon img {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .slide-icon-container {
    gap: 4px;
    animation-duration: 30s; /* slower for small screens */
  }
  .slide-icon {
    font-size: 12px;
    padding: 3px 5px;
  }
  .slide-icon img {
    width: 20px;
    height: 20px;
  }
}

/* Header */
      .track{
      background-color: #000;
      padding-top: 10px;
      padding-bottom: 10px;
      border-bottom: 1px solid #fff;
    }
    .logo{
      width: 60px;
    }
    .demo{
      background-color: #000;
      border: none;
      color: #fff;
      padding: 6px 15px;
      border: 1px solid gray;
      border-radius: 50px;
    }
.register{
    position: relative;
    overflow: hidden;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
background: linear-gradient(135deg,#d4af37,#000000,#ffd700);
    background-size: 300% 300%;
    animation: gradientMove 4s ease infinite;
    box-shadow: 0 0 15px rgba(188, 187, 187, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Shine Effect Always Running */
.register::before{
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 40%;
    height: 100%;
    background: rgba(255,255,255,0.35);
    transform: skewX(-25deg);
    animation: shine 2s linear infinite;
}

/* Glow Pulse */
.register::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(255,80,0,0.6);
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes gradientMove{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

@keyframes shine{
    0%{left:-80%;}
    100%{left:140%;}
}

@keyframes pulse{
    0%{opacity:0.4; transform:scale(1);}
    50%{opacity:1; transform:scale(1.05);}
    100%{opacity:0.4; transform:scale(1);}
}
     /* Main Menu */
    .main-menu {
      background-color: goldenrod;
      display: flex;
      /* justify-content: center; */
      text-align: center;
      overflow-x: auto;
    }
    .main-menu a {
      color: #fff;
      border: none;
      padding: 5px 18px;
      font-weight: 600;
      border-radius: 10px;
      white-space: nowrap;
      text-decoration: none;
      font-size: 13px;
      margin-left: 20px;
    }
    .main-menu a:hover {
      color: #fff;
    }
     .main-menu::-webkit-scrollbar {
  display: none;
}
.sidebar {
  background: radial-gradient(circle, goldenrod 0%, #000 70%);
  min-height: 100vh;
  border-right: 2px solid goldenrod;
}

/* Section Title */
.menu-section .race{
  color: #fff;
  background-color: #000;
  padding: 5px;
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: bold;
  border-left: 3px solid goldenrod;
  padding-left: 8px;
}

/* List */
.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin: 8px 0;
}

/* Links */
.sidebar ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ddd;
  text-decoration: none;
  padding: 10px;
  border-radius: 8px;
  transition: 0.3s;
}

/* Hover Effect ðŸ”¥ */
.sidebar ul li a:hover {
  background: #000;
  color: #fff;
  transform: translateX(5px);
}

/* Icons */
.sidebar ul li a i {
  font-size: 18px;
}


    @media (max-width: 992px) {
      .sidebar {
        display: none;
      }
    }
          .west{
        width: 20px;
      }



/* HERO */
.hero {
  padding: 60px;
  background: radial-gradient(circle, #c62332 0%, #000 70%);
}

.card-box {
  border: 1px solid goldenrod;
  padding: 20px;
  margin: 10px;
  border-radius: 10px;
  background: #111;
}

.appa-pannel {
    background-image: linear-gradient(to bottom right, #000, goldenrod);
    padding: 30px;
    border-radius: 15px;
    height: 330px;
    width: 240px;
    margin-left: 10px;
    box-shadow: 5px 5px 10px lightblue inset;
    margin-bottom: 20px;
}

.appa-pannel img {
    width: 150px;
    background-color: #000;
}

.our-patner {
    text-align: center;
   
}



.appa-pannel p {
    color: #fff;
    font-family: sans-serif;
    font-size: 15px;
}

.appa-pannel a {
    background: linear-gradient(to right, #bf953f, #ead26e, #f0dc77, #d3b151, #aa771c) !important;
    padding: 10px;
    border-radius: 2px;
}

.why-choose {
  text-align: center;
  color:#fff;
  text-align: justify;
}

   .celebs-image .item img{
    width:200px;
 }

   
   .item img{
  width:100%;
  /*height:220px;*/
  object-fit:cover;
  border-radius:12px;
}

.item p{
  text-align:center;
  margin-top:8px;
  font-weight:500;
}

/* optional glow effect */
.item{
  border:1px solid goldenrod;
  padding:10px;
  border-radius:12px;
  background:#111;
  margin-bottom: 30px;
}
.ticker-wrap{
    width:100%;
    overflow:hidden;
    /*background:#f5f5f5;*/
    padding:20px 0;
}

.ticker{
    width:105%;
    margin-left:-2%;
    overflow:hidden;
    transform: rotate(-2deg);
    margin-bottom:18px;
    border-top:1px solid #d4af37;
    border-bottom:1px solid #ffd700;
    box-shadow:0 0 15px rgba(255,215,0,0.25);
}

.ticker-track{
    display:flex;
    width:max-content;
    animation: scrollLeft 18s linear infinite;
}

.ticker-track span{
    font-size:58px;
    font-weight:300;
    color:#fff;
    white-space:nowrap;
    padding-right:60px;
    font-family:Arial, sans-serif;
    line-height:1.6;
    text-shadow:0 0 8px rgba(255,215,0,0.5);
}

/* Top Line */
.top{
    background:linear-gradient(90deg,#000,#d4af37,#000,#ffd700,#000);
    background-size:300% 100%;
    animation:bgmove 6s linear infinite;
}

/* Bottom Line */
.bottom{
    background:linear-gradient(90deg,#000,#ffd700,#000,#d4af37,#000);
    background-size:300% 100%;
    animation:bgmove 6s linear infinite;
}

.reverse{
    animation: scrollRight 18s linear infinite;
}

/* Animation */
@keyframes scrollLeft{
    0%{transform:translateX(0);}
    100%{transform:translateX(-50%);}
}

@keyframes scrollRight{
    0%{transform:translateX(-50%);}
    100%{transform:translateX(0);}
}

@keyframes bgmove{
    0%{background-position:0% 50%;}
    100%{background-position:100% 50%;}
}

/* Mobile */
@media(max-width:768px){
.ticker-track span{
    font-size:28px;
}
}
.table-container {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px; /* mobile scroll ke liye */
}

table th, table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
}

table th {
  background: #000;
  font-weight: bold;
  color: #fff;
}
table td{
  color: #fff;
}


   .best-bookie p{
    text-align: justify;
    color:#fff;
   } 
   .best-bookie ul{
    text-align: justify;
    color:#fff;
   } 
   /* faq */
.faq h3{
  text-align: center;
  color:#fff;
}
.faq-container {
   background-color:#232323;
   margin-top: 20px;
   margin-bottom: 20px;
   }

  .tab2 {
    cursor: pointer;
    padding: 10px;
    color:#fff;
    width:500px;
    border-bottom: 1px solid #d3b151;
       }

  .answer {
    display: none;
    padding: 10px;
    background-color: #fff;
    color: #000;
    width:500px;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  }

  .main-faq{
    background-color: #000;
 }

 .casino-image{
    box-shadow: 5px 5px 10px lightblue inset;
}
 
 .casino-image img{
    width:600px;
    border-radius: 30px;
 }
/* Title */
.match-title {
  color: goldenrod;
  font-weight: bold;
  margin-bottom: 30px;
}

/* Tabs */
.tabs {
  /*background: #ffc107;*/
  background: #9c6f00;
color: #fff;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}

.tab {
  flex: 1;
  text-align: center;
  padding: 12px;
  font-weight: bold;
  cursor: pointer;
  color: #c62332;
}

.tab.active {
  background: #666;
  color: #fff;
}

/* Match Card */
.match-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin: 15px 0;
}

/* Team */
.team .sr{
  font-weight: bold;
  color: #000;
}

.team p {
  font-weight: bold;
  color: #000;
}

/* Center */
.match-center p {
  margin: 5px 0;
  color: #000;
}

.match-center strong {
  display: block;
  margin: 5px 0;
  color: #000;
}

/* Button */
.btn-warning {
  background: #ff9800;
  border: none;
  font-weight: bold;
}
.stay {
    text-align: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: bold;
    color: goldenrod;
    font-size: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
  
}
.swiper {
  padding: 30px 0;
}

.swiper-slide {
  text-align: center;
}

.swiper-slide img {
  width: 100%;
  /* height: 120px; */
  object-fit: contain;
  border-radius: 10px;
  padding: 0px;
}
.stand{
    padding-top: 20px;
    padding-bottom: 20px;
}
.easy{
    padding: 10px;
    border: 2px solid #fff;
    width: 260px;
    margin-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}
.easy b{
    color: #FACF4D;
    font-size: 20px;
}
.like{
    background-color: #fff0;
    background-image: radial-gradient(at center center, #676060 0%, #000000 100%);
    padding: 50px;
}
.go{
    height: 60px;
}
.trust{
    text-align: center;
}
.trust b{
    color: #ffc107;
}
.trust img{
    width: 200px;
}

/* footer */
.footer{
    background-color:#000;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin-top:20px;
    padding: 30px;
   
   }
   .footer-logo img{
    width:150px;
   }

   .footer-logo p{
    color:#fff;
   }

        .important-link .fol {
            color: goldenrod;
            font-size: 22px;
            font-weight: 700;
            text-align: start;
        }

        .important-link a {
            color: #FFF;
            text-decoration: none;
        }

        .important-link h4 {
            text-align: start;
            font-size: 25px;
        }


  .social-icon a i{
    font-size: 25px;
    margin:10px;
  }
  
  
  .i-game img{
    width:200px;
  }

  .igame-contant p{
    color:#fff;
  }

  .footer-section{
    border-top:1px dotted #fff;
  }
        /*whatsaap*/
.whatsapp-image {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 999;
  animation: zoomPulse 3s infinite ease-in-out;
}

/* Image animation */
@keyframes zoomPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.whatsapp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
  

 @media only screen and (max-width: 476px){
    .sidebar{
        display: none;
    }
    .appa-pannel{
        width: 95%;
        margin-left: 10px;
        height: auto;
    }
    .logo{
      width: 50px;
    }
    .main-faq{
        width: 100%;
    }
    .faq-container {
        width: 100%;
    }
    .tab2 {
        width: 100% !important;
    }
     .casino-image img{
        width: 100%;
     }
     .item img{
  width:100% !important;
     }
     .easy{
    width: 96%;
    margin-left: 10px;
    margin-bottom: 10px;
}
.footer {
    padding: 10px;
}
 }