*{
    margin: 0;
    padding: 0;
}
h1, h2, h3{
    color: #0b7bdc;
    font-size: 25px;
}
p, li{
    color: #000;
}
a{
    text-decoration: none;
}

/* TOP MARQUEE */
.yet{
    position: fixed;
    width: 100%;
    z-index: 999;
}
.top-marquee{
    height:40px;
    background:#d8f4ff;
    display:flex;
    align-items:center;
    gap:12px;
    padding:0 15px;
    color:#0b7bdc;
    font-size:14px;
    font-weight:600;
}

.top-marquee i{
    font-size:18px;
}
marquee{
    color: #0b7bdc !important;
}
/* HEADER */

.main-header{
    height:50px;
    background:#efefef;
    display:flex;
    align-items:center;
    justify-content:space-between;
    z-index: 9999 !important;
    padding:0 20px;

    border-bottom-left-radius:25px;
    border-bottom-right-radius:25px;
}

/* LEFT */

.left-header{
    display:flex;
    align-items:center;
    gap:25px;
}

.menu-toggle{
    font-size:20px;
    color:#7b8794;
    cursor:pointer;
}

.logo{
    width: 100px;
}

/* CENTER MENU */

.center-menu{
    display:flex;
    align-items:center;
    gap:35px;
}

.center-menu a{
    display:flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#0b7bdc;
    font-size:16px;
    font-weight:700;
}
.center-menu a:hover{
    color: #0b7bdc !important;
}

/* RIGHT */

.right-header{
    display:flex;
    align-items:center;
    gap:20px;
}

.theme-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:20px;
    color:#4b5563;
    cursor:pointer;
}

.login-btn{
    padding:12px 20px;
    border:none;
    border-radius:18px;
    background:#fff;
    color:#222;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
}

/* MOBILE */

@media(max-width:991px){

    .center-menu{
        display:none;
    }

    .logo{
        width:170px;
    }

    .main-header{
        padding:0 12px;
    }

    .login-btn{
        padding:10px 20px;
        font-size:15px;
    }
}
/* HEADER */
.main-layout{
display:flex;
height:100vh;
}


/* Left Sidebar */
.left-sidebar{
width:230px;
background:#DFE3E8;
color: #000;
position:fixed;
left:0;
top:0;
bottom:0;
overflow-y:auto;
margin-top: 100px;
}

/* Right Sidebar */
.right-sidebar{
width:300px;
background:#DFE3E8;
color:#000;
position:fixed;
right:0;
top:0;
bottom:0;
overflow-y:auto;
margin-top: 100px;
}

/* Center Content */
.center-content{
margin-left:225px;
margin-right:285px;
width: 800px;
overflow-y:auto;
background:#DFE3E8;
padding:20px;
margin-top: 100px;
}
.call{
      background-color: #0b7bdc;
      color: #fff !important;
      font-size: 15px;
      margin-bottom: 10px;
      margin-top: 10px;
      text-align: center;
      border-radius: 10px;
    
}

.carousel{
    margin-top: 10px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
 .sidebar {
      padding: 5px;
      height: 100%;
      border-radius: 10px;
    }

    .sidebar ul {
      list-style: none;
      padding: 0;
    }
    .sidebar li {
      padding: 8px 0;
    }
    .sidebar p {
      color: #000;
    }
    .sidebar li a {
      color: #000;
      text-decoration: none;
      display: flex;
      align-items: center;
    }
 

.how{
    margin-top: 30px;
    margin-bottom: 30px;
}
.can{
    margin-top: 30px;
    margin-bottom: 30px;
}
 .faq-section {
    width: 100%;
    /*padding: 40px;*/
    background: transparent;
    box-sizing: border-box;
  }

  .faq-section h4 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #0b7bdc;
  }

  .faq-item {
    background: transparent;
    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 #fff;
    background: #0b7bdc;
    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: transparent;
    padding: 0 20px;
  }

  .faq-answer p {
    padding: 15px 0;
    margin: 0;
    color: #000;
  }

/* footer */
.footer-section{
    background:#f3f5f7;
    padding:20px;
    border-radius:18px 18px 0 0;
    font-family:Arial, sans-serif;
}

/* TOP LINKS */

.footer-top-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;
    margin-bottom:18px;
}

.footer-top-links a{
    text-decoration:none;
    color:#4f667d;
    font-size:15px;
    font-weight:500;
}

.second-links{
    margin-top:-5px;
    padding-bottom:20px;
    border-bottom:1px solid #d7d7d7;
}

/* TEXT */

.footer-text{
    margin-top:18px;
    color:#4f667d;
    font-size:15px;
    line-height:1.7;
}

.footer-text a{
    color:#0b7cff;
    text-decoration:none;
    font-weight:500;
}

/* LANGUAGE */

.language-box{
    width:120px;
    border:1px solid #d5d5d5;
    border-radius:12px;
    padding:10px;
    margin-top:20px;
    background:#fff;
    text-align:center;
}

.language-box span{
    display:block;
    color:#4f667d;
    font-size:14px;
}

.language-box strong{
    display:block;
    margin-top:5px;
    font-size:15px;
    color:#000;
}

/* BOTTOM LINKS */

.footer-bottom-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:28px;
    margin-top:28px;
}

.footer-bottom-links a{
    text-decoration:none;
    color:#4f667d;
    font-size:15px;
    font-weight:500;
}

/* COPYRIGHT */

.copyright{
    margin-top:25px;
    background:#e7e8ea;
    padding:14px;
    text-align:center;
    color:#4f667d;
    font-size:16px;
    font-weight:600;
}

.copyright a{
    color:#0b7cff;
    text-decoration:none;
}

/* MOBILE */

@media(max-width:768px){

    .footer-top-links{
        gap:15px;
    }

    .footer-top-links a,
    .footer-bottom-links a{
        font-size:15px;
    }

    .footer-text{
        font-size:15px;
    }

    .footer-bottom-links{
        gap:16px;
    }

    .language-box{
        width:100px;
    }
}
/* footer */

/* POPUP BACKGROUND */

/* POPUP BACKGROUND */

.welcome-popup{
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    background: rgba(0,0,0,0.65);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 999999;
}

/* POPUP BOX */

.popup-box{
    position: relative;
    width: 380px;   /* SMALL SIZE */
    max-width: 90%;
}

/* IMAGE */

.popup-box img{
    width: 100%;
    display: block;
    border-radius: 14px;
}

/* CLOSE BUTTON RIGHT SIDE */

.close-popup{
    position: absolute;
    top: -10px;
    right: -10px;

    width: 35px;
    height: 35px;

    border: none;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.6);
    color: #fff;

    font-size: 24px;
    font-weight: bold;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* MOBILE */

@media(max-width:576px){

    .popup-box{
        width: 300px;
    }

    .close-popup{
        width: 30px;
        height: 30px;
        font-size: 25px;
    }
}

  .whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 25px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 10px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-family: Arial, sans-serif;
  text-decoration: none;

  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.05);
}
.whatsapp-float span {
font-size: 15px;
}

/* MOBILE BOTTOM MENU */

.mobile-bottom-menu{
    position: fixed;
    bottom: 0;
    left: 0;

    width: 100%;
    background: #dff3ff;

    display: flex;
    justify-content: space-around;
    align-items: center;

    padding: 10px 5px;

    z-index: 99999;

    border-top: 1px solid #c8ddea;
}

/* MENU ITEMS */

.mobile-bottom-menu a{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;

    text-decoration: none;
    color: #0057c2;

    font-size: 14px;
    font-weight: 500;
}

/* ICON */

.mobile-bottom-menu i{
    font-size: 15px;
}

/* IMAGE ICON */

.mobile-bottom-menu img{
    width: 30px;
    height: 20px;
    object-fit: contain;
}

/* DESKTOP HIDE */

.game-card img{
    width: 100%;
}
.game-card b{
    font-size: 12px;
}

@media(min-width:768px){

    .mobile-bottom-menu{
        display: none;
    }
}

      @media (max-width: 992px) {
      .sidebar {
        display: none;
      }
    }
@media (min-width: 992px){
.top-row{
        display: none;
      }
      .notice-bar{
        display: none;
      }
      .match-bar{
        display: none;
      }
}

          @media only screen and (max-width: 476px){
            .left-sidebar{
                display: none;
            }
            .right-sidebar{
                display: none;
            }
            .center-content{
                margin-left: 0px;
                margin-right: 0px;
                margin-top: 100px;
                padding: 5px;
            }
            .icons{
                margin-left: 0px;
            }
            .set{
                display: none;
            }
            .grow{
                display: none;
            }
            .how{
    margin-top: 10px;
    margin-bottom: 10px;
}
    .faq-section{
        padding: 10px;
    }
    p{
        text-align: justify;
    }
    .footer-section {
        margin-bottom: 60px;
    }
}