* {
    margin: 0;
    padding: 0;
}
    body {
      background-color: #000;
      color: white;
      font-family: sans-serif;
    }
    a{
        text-decoration: none;
        color: #aaa;
    }
    h1, h2, h3 {
      padding: 10px 10px 10px 10px;
    border-style: double;
    border-width: 1px 15px 1px 15px;
    border-color: #EEBC1B;
    border-radius: 5px 20px 5px 20px;
    box-shadow: 0px 0px 12px 4px rgba(124.04687500000001, 111.64218749999999, 0, 0.5);
    }
    p{
      color: #fff;
      font-size: 14px !important;
    }
    b{
      color: #EEBC1B;
      font-size: 20px;
    }
    li{
      color: #fff;
      font-size: 14px !important;
      list-style: none;
    }
    .post{
      width: 100%;
    }
    .still{
      margin-top: 30px;
      margin-bottom: 30px;
    }
   .get {
    position: relative;
    padding: 12px 28px;
    font-size: 16px;
    color: #fff;
    background: #000;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    z-index: 1;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Animated Gradient Border */
.get::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px; /* border size */
    border-radius: 14px;

    background: linear-gradient(
        90deg,
        #ff0000,
        #ff7300,
        #fffb00,
        #48ff00,
        #00ffd5,
        #002bff,
        #7a00ff,
        #ff00ab,
        #ff0000
    );

    background-size: 300%;
    animation: borderAnimation 4s linear infinite;

    /* show only border */
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
            mask-composite: exclude;

    z-index: -1;
}

@keyframes borderAnimation {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 300%;
    }
}
    /* preloader */
    #preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-loader {
  position: relative;
  width: 80px;
  height: 80px;
  animation: rotate 2s linear infinite;
}

.circle-loader span {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #00ffcc;
  border-radius: 50%;
}

/* 4 dots position */
.circle-loader span:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.circle-loader span:nth-child(2) { right: 0; top: 50%; transform: translateY(-50%); }
.circle-loader span:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); }
.circle-loader span:nth-child(4) { left: 0; top: 50%; transform: translateY(-50%); }

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
    /* preloader */
    .top-navbar {
      background-color: #121212;
      color: white;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: fixed;
      width: 100%;
      z-index: 999;
    }

    .top-left {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .logo{
      width: 100px;
    }

    .menu-icons {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .menu-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      color: white;
      font-size: 10px;
      text-decoration: none;
    }

    .menu-item img{
      width: 20px;
    }

    .menu-item:hover {
      color: #fff;
    }
.menu-icons2{
  display:flex;
  align-items:center;
  gap:25px;
  overflow-x:auto;
  white-space:nowrap;
  padding:10px 0;
}

.menu-item2{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:12px;
  text-decoration:none;
  min-width:60px; /* important for single row */
  text-align:center;
  flex-shrink:0; /* prevent wrapping */
}

.menu-item2 img{
  width:20px;
  margin-bottom:5px;
}

.menu-icons2::-webkit-scrollbar{
  display:none;
}

    .login-signup {
      display: flex;
      gap: 0;
    }

    .login-signup .btn {
      border-radius: 0;
      font-weight: bold;
    }

    .btn-login {
      background-color: black;
      border: 2px solid #ffc107;
      color: white;
      font-size: 12px;
      padding: 7px;
      font-weight: 700;
      border-top-left-radius: 8px;
      border-bottom-left-radius: 8px;
    }

    .btn-signup {
      background-color: #ffc107;
      border: 2px solid #ffc107;
      color: black;
      font-size: 12px;
      font-weight: 700;
      padding: 7px;
      border-top-right-radius: 8px;
      border-bottom-right-radius: 8px;
    }

    .btn-login:hover,
    .btn-signup:hover {
      opacity: 0.85;
    }

    .menu-item.cricket span {
      color: #0f0;
      font-size: 10px;
      position: absolute;
      top: -5px;
      right: -10px;
    }

    .menu-item.cricket {
      position: relative;
    }
    .menu-icon{
width:30px;
cursor:pointer;
}

.menu-icon span{
display:block;
height:3px;
background:#fff;
margin:6px 0;
}
#bannerSlider {
  width: 92%;
  margin: auto;
}

.carousel-inner {
  border-radius: 25px;
  overflow: visible;
}

.carousel-item {
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.carousel-item img {
  border-radius: 25px;
  height: 320px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Side preview effect */
.carousel-item-next,
.carousel-item-prev {
  transform: scale(0.9);
  opacity: 0.6;
}

/* Active slide highlight */
.carousel-item.active {
  transform: scale(1);
  opacity: 1;
}

/* Background blur effect */
.carousel-item:not(.active) img {
  filter: brightness(0.7);
}
/* Sidebar */
.sidebar2{
position:fixed;
left:-250px;
top:0;
width:250px;
height:100%;
background:#222;
color:white;
transition:0.3s;
padding:20px;
}

.sidebar2.active{
left:0;
}
.close-btn{
font-size:20px;
cursor:pointer;
text-align:right;
margin-bottom:20px;
}

.sidebar2 ul{
list-style:none;
padding:0;
}

.sidebar2 li{
padding:10px 0;
border-bottom:1px solid #444;
}

.layout{
    padding-top: 60px;
}
.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
          overflow-x: auto;
      flex-wrap: nowrap;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none; /* Firefox */
  }

  .game-tag {
    padding: 10px 90px;
    border-radius: 20px;
    font-size: 15px;
    white-space: nowrap;
    color: #fff;
    font-weight: 700;
  }

  /* Color classes */
  .gradient-1 { background-image: linear-gradient(270deg, #9c31f0, #ec62e2); }
  .gradient-2 { background-image: linear-gradient(270deg, #95d7e6, #07abd0); }
  .gradient-3 { background-image: linear-gradient(270deg, #f2d71a, #ecb024); }
  .gradient-4 { background-image: linear-gradient(270deg, #242156, #3984f7); }
  .gradient-5 { background-image: linear-gradient(270deg, #242156, #3984f7); }

  /* Mobile: horizontal scroll */
  @media (max-width: 767.98px) {
    .game-tags {
      overflow-x: auto;
      flex-wrap: nowrap;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none; /* Firefox */
    }

    .game-tags::-webkit-scrollbar {
      display: none; /* Chrome, Safari */
    }
  }

  .how{
    margin-top: 30px;
    margin-bottom: 30px;
  }
    .fan{
        font-size: 20px !important;
        margin-top: 5px;
        border: 1px solid #565656;
        color: #fff;
        border-radius: 5px;
        background-color: #383838;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .well{
        width: 154px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .cell{
        width: 100%;
        border-radius: 10px;
    }
    .video-section{
padding: 10px 0;
}

.video-slider{
display:flex;
overflow-x:auto;
gap:20px;
padding-bottom:10px;
}

.video-card{
min-width:180px;
height:300px;
border-radius:12px;
overflow:hidden;
position:relative;
background:#111;
}

.video-card img{
width:100%;
height:100%;
object-fit:cover;
}

.play-btn{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:60px;
height:60px;
background:rgba(0,0,0,0.6);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
color:#fff;
}

.support-box{
background:#1b1b1b;
padding:25px;
border-radius:10px;
display:flex;
justify-content:space-between;
align-items:center;
margin-top:40px;
}

.support-btn{
background:#ffd400;
color:#000;
padding:12px 25px;
border-radius:8px;
font-weight:600;
border:none;
}

/*.footer{*/
/*text-align:center;*/
/*margin-top:40px;*/
/*margin-bottom: 140px;*/
/*}*/

/*.download-btn{*/
/*background:#ffd400;*/
/*color:#000;*/
/*padding:12px 25px;*/
/*border-radius:8px;*/
/*font-weight:600;*/
/*margin-left:15px;*/
/*}*/

/*.lang-box{*/
/*border:1px solid #444;*/
/*display:inline-block;*/
/*padding:10px 20px;*/
/*border-radius:8px;*/
/*margin:20px 0;*/
/*}*/

.video-slider::-webkit-scrollbar{
display: none;
}

.video-slider::-webkit-scrollbar-thumb{
background:#444;
border-radius:10px;
}

.mobile-bottom-menu{
  display:none;
}

.toc-wrapper{
    max-width:1700px;
    margin:auto;
    background:#555555;
    padding:20px 20px;
}

.toc-heading{
    background:#7b5200;
    border:2px solid #ffcc00;
    border-radius:10px;
    padding:10px 20px;
    color:#ffcc00;
    font-size:20px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:18px;
}

.toc-heading i{
    font-size:30px;
}

.toc-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    margin-top:35px;
}

.toc-list{
    list-style:none;
}

.toc-list li{
    margin-bottom:6px;
}

.toc-list a{
    text-decoration:none;
    color:#ffbf00;
    font-size:17px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap: 10px;
    transition:0.3s;
}

.toc-list a:hover{
    color:#ffffff;
}

.toc-list i{
    font-size:30px;
}
.table-wrapper{
    position:relative;
    padding:2px;
    border-radius:16px;
    overflow:hidden;

    background: #444;

    background-size:300%;
    animation:borderMove 5s linear infinite;
}

/* Table */
.gradient-table{
    width:100%;
    border-collapse:collapse;
    background:#1a1a1a;
    color:#fff;
    border-radius:14px;
    overflow:hidden;
}

/* Header */
.gradient-table th{
    background:#EEBC1B;
    padding:16px;
    text-align:left;
    color: #000;
}

/* Table cells */
.gradient-table td{
    padding:16px;
    border-top:1px solid #EEBC1B;
}

/* Hover */
.gradient-table tbody tr:hover{
    background:#2a2a2a;
}

/* Animation */
@keyframes borderMove{
    0%{
        background-position:0%;
    }
    100%{
        background-position:300%;
    }
}
/* MOBILE RESPONSIVE */

.box{
  background-color: #434242B8;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0px 0px 12px 4px rgba(124.04687500000001, 111.64218749999999, 0, 0.5);
    width: 350px;
    margin-left: 20px;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 20px;
}
.box img{
  width: 50px;
}
.box h3{
  border: none;
  color: #EEBC1B;
  background-color: transparent;
  box-shadow: none;
  font-size: 15px;
  font-weight: 800;
}
.box2{
  background-color: #434242B8;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0px 0px 12px 4px rgba(124.04687500000001, 111.64218749999999, 0, 0.5);
    width: 550px;
    margin-left: 20px;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 20px;
}
.box2 img{
  width: 50px;
}
.box2 h3{
  border: none;
  color: #EEBC1B;
  background-color: transparent;
  box-shadow: none;
  font-size: 15px;
  font-weight: 800;
}

.log{
  box-shadow: rgba(127, 83, 3, 0.5) 0px 0px 15px 6px inset;
  background-color: #555555;
  padding: 20px;
}

  /* faq start */
.faq-section {
      max-width: 1100px;
      margin: auto;
    }
.faq-section h4{
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  text-align: center;
}

    .faq-item {
      background: #fff;
      margin: 10px 0;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      overflow: hidden;
    }

    .faq-question {
      background: #EEBC1B;
      color: #000;
      padding: 15px;
      cursor: pointer;
      font-size: 16px;
      position: relative;
      font-weight: 700;
    }

    .faq-question::after {
      content: "+";
      position: absolute;
      right: 20px;
      font-size: 20px;
    }

    .faq-question.active::after {
      content: "-";
    }

    .faq-answer {
      display: none;
      padding: 15px;
      color: #fff;
      line-height: 1.6;
      background: #000;
    }
/* faq end */

@media(max-width:991px){

    .toc-grid{
        grid-template-columns:1fr;
        gap:10px;
    }

    .toc-heading{
        font-size:20px;
        padding:18px 20px;
    }

    .toc-list a{
        font-size:18px;
    }

    .toc-list i{
        font-size:24px;
    }

}

@media (max-width:768px){

.mobile-bottom-menu{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:#000;
  display:flex;
  justify-content:space-around;
  align-items:center;
  padding:10px 0;
  border-radius:20px 20px 0 0;
  z-index:9999;
}

.mobile-bottom-menu a{
  color:#fff;
  text-align:center;
  font-size:12px;
  text-decoration:none;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.mobile-bottom-menu i{
  font-size:18px;
  margin-bottom:3px;
}

.center-btn{
  background:#0aa9d8;
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  margin-top:-25px;
  border:4px solid #111;
}

.center-btn i{
  font-size:22px;
}

}

 @media only screen and (max-width: 476px){
.menu-icons {
    display: none;
}
.game-tag {
        padding: 10px 20px;
}
.well {
    width: 100px;
}
.box{
  width: 95%;
  margin-left: 10px;
}
.box2{
  width: 95%;
  margin-left: 10px;
}
.faq-section{
  padding: 10px;
}
}
@media (min-width: 992px){
    .menu-icons2{
        display: none;
    }
    .logo{
        display: none;
    }
}