*{
    margin: 0;
    padding: 0;
}
body {
  background: #0a0a0a;
  color: #fff;
  font-family: Arial;
}
h1, h2, h3, h4{
  background: linear-gradient(
    to bottom,
    #fff4b0 0%,
    #ffd54a 35%,
    #c88712 70%,
    #6b1d00 100%
  );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    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%;
}
/* Header */


/* TOP STRIP */

.top-strip{
  background: linear-gradient(
  135deg,
  #4b1200,
  #9c5b00,
  #ffcf40,
  #fff8cc,
  #8a4300
);
  color:#000;
  display:flex;
  align-items:center;
  padding:5px 15px;
  font-size:13px;
  font-weight:600;
}

.live-box{
  background:#000;
  padding:4px 12px;
  border-radius:30px;
  margin-right:15px;
  display:flex;
  align-items:center;
  gap:8px;
  color: #fff;
  white-space:nowrap;
}

.live-dot{
  width:8px;
  height:8px;
  background:red;
  border-radius:50%;
  animation:pulse 1s infinite;
}

@keyframes pulse{
  0%{transform:scale(1);}
  50%{transform:scale(1.6);}
  100%{transform:scale(1);}
}

/* HEADER */

.main-header{
  background:rgba(10,10,10,0.95);
  backdrop-filter:blur(10px);
  position:sticky;
  top:0;
  z-index:999;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

/* ANIMATED TOP BORDER */

.animated-line{
  height:2px;
  width:100%;
  background:linear-gradient(
    90deg,
    #C9883B,
    #00c3ff,
    #ff00c8,
    #C9883B
  );
  background-size:300%;
  animation:moveLine 4s linear infinite;
}

@keyframes moveLine{
  0%{background-position:0%}
  100%{background-position:300%}
}

.main-header .container{
  padding:15px 0;
}

/* LOGO */

.logo-area{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo{
  width:50px;
  transition:.3s;
}

.logo:hover{
  transform:scale(1.05);
}

.brand-text span{
  color:#C9883B;
  font-size:12px;
  letter-spacing:2px;
}

/* MENU */

.menu-list{
  display:flex;
  justify-content:center;
  gap:30px;
  margin:0;
  padding:0;
  list-style:none;
}

.menu-list a{
  color:#fff;
  text-decoration:none;
  position:relative;
  font-weight:600;
}

.menu-list a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#C9883B;
  transition:.3s;
}

.menu-list a:hover::after{
  width:100%;
}

/* RIGHT */

.right-section{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:10px;
}

.wallet-box{
  background:#151515;
  color:#C9883B;
  padding:8px 14px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,0.08);
  gap:8px;
  align-items:center;
}

.login-btn{
  background:transparent;
  border:1px solid #555;
  color:#fff;
  padding:8px 18px;
  border-radius:30px;
  transition:.3s;
}

.login-btn:hover{
  background:#222;
}

.register-btn{
  border:none;
  color:#fff;
  padding:8px 20px;
  border-radius:30px;
  background:linear-gradient(45deg,#C9883B,#C9883B);
  font-weight:bold;
  box-shadow:0 0 15px rgba(217, 170, 14, 0.669);
  transition:.3s;
}

.register-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 0 25px  rgba(217, 170, 14, 0.669);
}

/* MOBILE */

@media(max-width:768px){

  .logo{
    width:50px;
  }

  .brand-text{
    display:none;
  }

  .login-btn,
  .register-btn{
    padding:6px 12px;
    font-size:12px;
  }

  .top-strip{
    font-size:11px;
  }
}

/* header */

     /* Main Menu */
  .main-menu{
  display:flex;
  align-items:center;
  gap:12px;
  overflow-x:auto;
  overflow-y:hidden;
  white-space:nowrap;
  padding:12px 15px;
  background:#000;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
}

.main-menu::-webkit-scrollbar{
  display:none;
}

/* MENU ITEMS */

.main-menu a{

  flex:0 0 auto;   /* IMPORTANT */
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  white-space:nowrap;
  padding:10px 18px;
  font-size:13px;
  font-weight:700;
  color:#000;
  border-radius:14px;
  background: linear-gradient(
  135deg,
  #5a1800 0%,
  #c88712 28%,
  #ffd54a 52%,
  #fff4b0 70%,
  #b86b00 100%
);
  border:1px solid rgba(255,255,255,0.08);
  transition:.3s ease;
}

/* ICON */

.main-menu a i{
  color:#000;
  font-size:14px;
}

/* HOVER */

.main-menu a:hover{
background: linear-gradient(
  135deg,
  #5a1800 0%,
  #c88712 28%,
  #ffd54a 52%,
  #fff4b0 70%,
  #b86b00 100%
);

  transform:translateY(-3px);
  color:#fff;
  box-shadow:0 6px 16px  rgba(217, 170, 14, 0.669);
}

.main-menu a:hover i{
  color:#000;
}

/* MOBILE */

@media(max-width:768px){

  .main-menu{
    gap:10px;
    padding:10px;
  }

  .main-menu a{
    font-size:12px;
    padding:8px 14px;
  }
}
/* main menu */

/* SIDEBAR */

.sidebar{

  background: linear-gradient(
  180deg,
  #4b1200 0%,
  #b56a00 25%,
  #ffd54a 50%,
  #fff4b0 70%,
  #c77c00 85%,
  #6b1d00 100%
);

  min-height:100vh;

  border-right:1px solid  rgba(217, 170, 14, 0.669);

  position:relative;

  overflow:hidden;
}

/* BACKGROUND GLOW */

.sidebar::before{

  content:'';

  position:absolute;

  width:300px;
  height:300px;

background:
  radial-gradient(
    circle,
    rgba(255, 215, 0, 0.35) 0%,
    rgba(255, 204, 51, 0.18) 35%,
    rgba(184, 107, 0, 0.08) 55%,
    transparent 75%
  );

  top:-100px;
  left:-100px;

  animation:moveGlow 8s linear infinite alternate;
}

@keyframes moveGlow{

  100%{
    transform:
    translate(80px,120px);
  }
}


/* TITLE */

.race{

  color:#fff;

  font-size:13px;

  text-transform:uppercase;

  letter-spacing:1px;

  font-weight:700;

  margin-bottom:14px;

  padding-left:10px;

  border-left:4px solid #C9883B;
}

/* MENU */

.sidebar ul{
  list-style:none;
  padding:0;
  margin:0;
}

.sidebar ul li{
  margin-bottom:12px;
}

/* LINK */

.sidebar ul li a{

  position:relative;

  display:flex;

  justify-content:space-between;

  align-items:center;

  padding:13px 14px;

  border-radius:16px;

  text-decoration:none;

  color:#000;

 background: rgba(255, 223, 90, 0.10);

  border:
  1px solid rgba(255,255,255,0.06);

  transition:.35s;

  overflow:hidden;
}

/* LEFT */

.left-menu{

  display:flex;

  align-items:center;

  gap:12px;
}

/* ICON */

.left-menu i{

  font-size:18px;

  color:#C9883B;

  transition:.3s;
}

/* HOVER */

.sidebar ul li a:hover{

  transform:
  translateX(8px)
  scale(1.02);

  background: linear-gradient(
  135deg,
  #4b1200,
  #c88712,
  #ffd54a,
  #fff4b0,
  #b86b00
);

  color:#000;

  box-shadow:
  0 10px 22px rgba(0,255,153,0.3);
}

.sidebar ul li a:hover i{
  color:#000;
}

/* ACTIVE */

.active-menu{

  background: linear-gradient(
  135deg,
  #4b1200,
  #c88712,
  #ffd54a,
  #fff4b0,
  #b86b00
);
  color:#000 !important;

  box-shadow:
  0 0 20px rgba(0,255,153,0.35);
}

.active-menu i{
  color:#000 !important;
}

/* BADGE */

.menu-badge{

  background:#C9883B;

  color:#000;

  font-size:10px;

  padding:4px 8px;

  border-radius:20px;

  font-weight:700;
}

.menu-badge.red{

  background:#ff3d3d;

  color:#fff;
}

/* COUNT */

.menu-count{

  background:#111;

  color:#C9883B;

  min-width:24px;

  height:24px;

  border-radius:50%;

  display:flex;

  align-items:center;

  justify-content:center;

  font-size:11px;

  font-weight:700;
}

/* MOBILE */

@media(max-width:992px){

  .sidebar{
    display:none;
  }
}
          .west{
        width: 20px;
      }



/* HERO */
.hero {
  padding: 60px;
  background: radial-gradient(circle, #0f0 0%, #000 70%);
}



.why-choose {
  text-align: center;
  color:#fff;
  text-align: justify;
}

   .celebs-image .item img{
    width:200px;
 }

   
   .item img{
  width:100%;
  object-fit:cover;
  border-radius:12px;
}

.item p{
  text-align:center;
  margin-top:8px;
  font-weight:500;
}

/* optional glow effect */
.item{
  border:1px solid #C9883B;
  padding:10px;
  border-radius:12px;
  background:#111;
  margin-bottom: 30px;
}
.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;
    border-bottom: 1px solid #d3b151;
       }

  .answer {
    display: none;
    padding: 10px;
    background-color: #fff;
    color: #000;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  }

  .main-faq{
    background-color: #000;
 }

/* Title */
.match-title {
  color: #1e8449;
  font-weight: bold;
  margin-bottom: 30px;
}

/* Tabs */
.tabs {
  background: #ffc107;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}

.tab {
  flex: 1;
  text-align: center;
  padding: 12px;
  font-weight: bold;
  cursor: pointer;
  background: linear-gradient(to bottom, #7CFC00, #228B22);
}

.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;
     background: linear-gradient(
    to bottom,
    #fff4b0 0%,
    #ffd54a 35%,
    #c88712 70%,
    #6b1d00 100%
  );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    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;
}
.choose-section{
    padding:70px 0;
    background: #000;
    position:relative;
    overflow:hidden;
}

.section-heading{
    text-align:center;
    margin-bottom:50px;
}

.section-heading h3{
    font-size:42px;
    font-weight:800;
    color:#fff;
    margin-bottom:15px;
    line-height:1.3;
}

.section-heading p{
    color:#cbd5e1;
    max-width:850px;
    margin:auto;
    font-size:16px;
    line-height:1.8;
}

.easy-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    transition:0.4s ease;
    backdrop-filter:blur(10px);
    position:relative;
    overflow:hidden;
}

.easy-card::before{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    background:rgba(250,207,77,0.12);
    border-radius:50%;
    top:-40px;
    right:-40px;
}

.easy-card:hover{
    transform:translateY(-10px);
    border-color:#FACF4D;
    box-shadow:0 10px 30px rgba(250,207,77,0.25);
}

.icon-box{
    width:75px;
    height:75px;
    margin:auto;
    margin-bottom:25px;
    border-radius:20px;
    background:linear-gradient(135deg,#FACF4D,#f5a623);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#111827;
    box-shadow:0 8px 20px rgba(250,207,77,0.35);
}

.easy-card h4{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.easy-card p{
    color:#d1d5db;
    font-size:15px;
    line-height:1.9;
    margin:0;
}

/* MOBILE */
@media(max-width:768px){

    .choose-section{
        padding:50px 15px;
    }

    .section-heading h3{
        font-size:30px;
    }

    .section-heading p{
        font-size:14px;
    }

    .easy-card{
        padding:30px 20px;
    }

    .easy-card h4{
        font-size:20px;
    }

}
.go{
    height: 60px;
}


/* 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 h4{
    color:#C9883B;
    font-size:30px;
    font-weight: 700;
    text-align: start;
    font-size: 20px;
   }

  .important-link a{
    color:#FFF;
    text-decoration: none;
  }
  .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;
  }
 .trending-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;
}

.trending-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:576px){
    .trending-whatsapp{
        width: 90%;
        justify-content: center;
        bottom: 15px;
        font-size: 15px;
        padding: 12px 15px;
    }
}

 @media only screen and (max-width: 476px){
    .sidebar{
        display: none;
    }

    .main-faq{
        width: 100%;
    }
    .faq-container {
        width: 100%;
    }
    .tab2 {
        width: 100% !important;
    }
     .casino-image img{
        width: 100%;
     }
     .easy{
    width: 96%;
    margin-left: 10px;
    margin-bottom: 10px;
}
.footer {
    padding: 10px;
}
 }