*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#efefef;
}
.ban{
width: 100%;
}

/* header */
.topbar{
    background:#032b2e;
    padding:14px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
    position: fixed;
    width: 100%;
    z-index: 9999;
}

.logo{
    width: 150px;
}


.time{
    color:#fff;
    font-size:13px;
    line-height:28px;
}

.search-box{
    flex:1;
    max-width: 350px;
    position:relative;
}

.search-box input{
    width:100%;
    height:35px;
    border:none;
    border-radius:35px;
    padding-left:60px;
    font-size:15px;
}

.search-box i{
    position:absolute;
    left:22px;
    top:10px;
    color:#999;
    font-size:20px;
}

.top-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.login-btn,
.lang-btn{
    border:1px solid #d1d1d1;
    padding:10px 20px;
    border-radius:30px;
    color:#fff;
    background:transparent;
    font-size:15px;
    cursor:pointer;
}

/* MENU */

.menu{
    background:#fff;
    display:flex;
    gap:10px;
    padding:10px 12px;
    overflow:auto;
    position: fixed;
    width: 100%;
    margin-top: 80px;
    z-index: 9999;
}
.menu::-webkit-scrollbar{
  display:none;
}
.menu a{
    text-decoration:none;
    color:#4b005d;
    background:#f5f5f5;
    border:1px solid #ddd;
    padding:10px 10px;
    border-radius:30px;
    white-space:nowrap;
    font-weight:600;
    font-size: 14px;
}

.menu a.active{
    background:linear-gradient(90deg,#2e66ff,#ae28ff);
    color:#fff;
}
/* header */

/* MAIN */

.main{
    display:flex;
    gap:18px;
    padding:14px;
}

/* LEFT SIDEBAR */

.sidebar{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    height:fit-content;
    position:sticky;
    top:150px;
    width:250px;
}
.sidebar-item{
    padding:15px 20px;
    border-bottom:1px solid #eee;
    font-size:15px;
    display:flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
}

.sidebar-item:hover{
    background:#f7f7f7;
}

/* CENTER */

.content{
    margin-top: 140px;
}

.banner-wrapper{
    overflow:hidden;
    width:100%;
    position: relative;
    z-index: 1;
}

.banner-grid{
    display:flex;
    gap:12px;
    overflow:auto;
    margin-top: 10px;
}
.banner-grid::-webkit-scrollbar{
  display:none;
}
.banner{
    width:200px;
    height: 50px;
    border-radius:8px;
    color:#fff;
    font-size:15px;
    display:flex;
    align-items:center;
    padding-left:20px;
    font-weight:bold;
    background-size:cover;
    background-position:center;
    flex-shrink:0;
}

.red{
    background-image:url('img/slot1.avif');
}

.pink{
    background-image:url('img/slot2.avif');
}

.blue{
    background-image:url('img/slot3.png');
}

.cyan{
    background-image:url('img/slot4.avif');
}

.white{
    background-image:url('img/slot5.avif');
}

.black{
    background-image:url('img/slot6.avif');
}

@keyframes scrollLeft{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

.games{
    background:#fff;
    border-radius:10px;
    padding:14px;
}

.tabs{
    display:flex;
    gap: 27px;
    border-bottom:1px solid #ddd;
    margin-bottom:20px;
}

.tabs button{
    border:none;
    background:none;
    font-size:15px;
    padding-bottom:12px;
    cursor:pointer;
}

.tabs button.active{
    border-bottom:4px solid #000;
    font-weight:bold;
}

.cards{
    display:flex;
    gap:16px;
    overflow:auto;
}
.cards::-webkit-scrollbar{
  display:none;
}
.card{
    min-width:180px;
    border-radius:10px;
    overflow:hidden;
    position:relative;
}

.card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.still{
    background-color: #fff;
}
.still img{
border-radius: 10px;
}
/* RIGHT */

.right{
    background:#fff;
    border-radius:10px;
    padding:20px;
    margin-top: 140px;
    position: sticky;
    right: 0;
    height: 100%;
}

.bet-tabs{
    display:flex;
    margin-bottom:40px;
}

.bet-tabs button{
    flex:1;
    height:35px;
    border:none;
    font-size:15px;
    cursor:pointer;
}

.bet-tabs button:first-child{
    background:#f5f5f5;
}

.bet-tabs button:last-child{
    background:#032b2e;
    color:#fff;
    border-radius:8px;
}

.right p{
    font-size:14px;
}

.right a{
    color:#2f6570;
    text-decoration:none;
}

/* faq */
    .faq-section {
    width: 100%;
    /* padding: 40px; */
    box-sizing: border-box;
  }


  .faq-item {
    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: 1px solid #fff;
    color: #fff;
    background-color: #032b2e;
  }

  .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;
    padding: 0 20px;
  }

  .faq-answer p {
    padding: 15px 0;
    margin: 0;
    color: #000;
  }
/* faq */

/* footer */
.footer-section{
    background:#f3f3f3;
    padding:30px 20px 90px; /* bottom padding important */
    position:relative;
    z-index:1;
}

.quick-links h3{
    font-size:20px;
    font-weight:700;
    margin-bottom:20px;
    position:relative;
    display:inline-block;
}

.quick-links h3::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:80px;
    height:3px;
    background:#0f4c5c;
}

.links-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px 40px;
    margin-bottom:60px;
}

.links-grid a{
    text-decoration:none;
    color:#111;
    font-size:16px;
    font-weight:500;
}

.footer-logos{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.footer-logos img{
    width: 170px;
    height:auto;
    object-fit:contain;

    filter: brightness(0);
}
.gam{
    width: 200px;
}

.copyright{
    text-align:center;
    color:#888;
    font-size:16px;
    margin-top:10px;
}

/* MOBILE */
@media(max-width:768px){

    .links-grid{
        grid-template-columns:1fr 1fr;
        gap:20px;
    }

    .footer-logos{
        gap:25px;
    }

    .footer-logos img{
        max-width:100px;
    }

    .copyright{
        font-size:14px;
    }

}
/* footer */

 .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;
}

.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);
    }
}

/* RESPONSIVE */

@media(max-width:1200px){
    .main{
        flex-direction:column;
    }

    .sidebar,
    .right{
        width:100%;
    }
}

@media(max-width:768px){


    .search-box{
        max-width:100%;
        width:100%;
    }

    .banner-grid{
        grid-template-columns:1fr;
    }

    .sidebar-item{
        font-size:18px;
    }
}
 @media only screen and (max-width: 476px){
    .sidebar{
        display: none;
    }
    .right{
        display: none;
    }
    .time{
        display: none;
    }
    .search-box{
        display: none;
    }
    .menu {
        margin-top: 72px;
    }
    p{
        text-align: justify;
    }
    .faq-section {
            padding: 10px;
        }
 }