*{
    margin: 0;
    padding: 0;
}
body{
    background:#f5f5f5;
    font-family:Arial,sans-serif;
}
h1, h2, h3{
    color: #0f696e;
    font-weight: 700;
    font-size: 30px;
}
/* Header */
.top-header{
    background:#0c9ca6;
    padding:20px;
    color:#fff;
}

.logo{
    width: 120px;
}

.user-box{
    text-align:right;
}

.login-btn,
.register-btn{
    background:#fff;
    color:#006b75;
    padding: 5px 10px;
    border-radius:5px;
    text-decoration:none;
    font-weight:600;
    font-size: 15px;
}

/* Main Menu */
.main-menu{
    background:#006b75;
    overflow-x:auto;
    overflow-y:hidden;
    white-space:nowrap;
}

.main-menu::-webkit-scrollbar{
    display:none;
}

.main-menu ul{
    display:flex;
    flex-wrap:nowrap;
    list-style:none;
    margin:0;
    padding:0;
    min-width:max-content;
}

.main-menu li{
    flex:0 0 auto;
}

.main-menu a{
    display:block;
    padding:15px 20px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
}
/* Sidebar */
.sidebar{
    background:#d9d9d9;
    min-height:100vh;
}

.sidebar-title{
    background:#0c9ca6;
    color:#fff;
    padding:5px;
    font-weight:bold;
}

.sidebar ul{
    list-style:none;
    margin:0;
    padding:0;
}

.sidebar li{
    padding: 5px 10px;
    border-bottom:1px solid #c4c4c4;
    font-size: 14px;
    font-weight: 600;
}

/* Match Cards */
.top-cards{
    display:flex;
    gap:10px;
    overflow:auto;
    margin:20px 0;
}

.match-card{
    min-width:180px;
    background:#006b75;
    color:#fff;
    border-radius:8px;
    padding:15px;
}

/* Market Tabs */
.market-tabs{
    background:#ccc;
    padding:15px;
    display:flex;
    justify-content:space-around;
    font-weight:bold;
}

/* Odds Table */
.market-table{
    background:#fff;
    border-radius:8px;
    overflow:hidden;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.game-card {
    text-align: center;
}

.game-card img {
    width: 100%;
    display: block;
}

.game-card span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #04a1a6 0%, #0f696e 100% );
    background-color: #0f696e;
    padding: 3px;
}
.gift{
    margin-top: 30px;
    margin-bottom: 30px;
}

.faq-section {
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
  }

  .faq-section h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
  }

  .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;
    color: #fff;
    background: linear-gradient(90deg, #04a1a6 0%, #0f696e 100% );
  }

  .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: #fff;
    padding: 0 20px;
  }

  .faq-answer p {
    padding: 15px 0;
    margin: 0;
    color: #000;
  }
   .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);
    }
}
/* footer */
.footer{
    background-color: #2f4358;
}
.rest h4{
    color: #fff;
}
.rest li{
list-style: none;
color: #fff;
font-size: 15px;
margin-bottom: 10px;
}
.rest a{
    color: #fff;
    text-decoration: none;
}
.footer-area{
    background:#2f4358;
    padding:60px 0 25px;
    color:#fff;
}

.footer-area .container{
    width:100%;
}

.footer-top{
    display:flex;
    gap:180px;
    margin-bottom:50px;
}

.footer-col h4{
    font-size:20px;
    font-weight:700;
    margin-bottom:25px;
}

.footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col ul li{
    margin-bottom:18px;
}

.footer-col ul li a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
}

.footer-col ul li a:hover{
    color:#f7c948;
}

.footer-area hr{
    border:none;
    border-top:1px solid rgba(255,255,255,0.2);
    margin:35px 0;
}

.disclaimer{
    text-align:center;
    max-width:1200px;
    margin:auto;
}

.disclaimer h3{
    color:#ffd93d;
    font-size:22px;
    margin-bottom:25px;
    font-weight:700;
}

.disclaimer p{
    color:#f1f1f1;
    line-height:1.9;
    font-size:16px;
}

.copyright{
    text-align:center;
    color:#f5f5f5;
    font-size:16px;
}

/* Mobile */

@media(max-width:768px){

    .footer-top{
        flex-direction:column;
        gap:30px;
    }

    .footer-col ul li a{
        font-size:16px;
    }

    .disclaimer h3{
        font-size:20px;
    }

    .disclaimer p{
        font-size:14px;
        line-height:1.8;
    }

    .copyright{
        font-size:14px;
    }
}
/* footer */
@media(max-width:576px){
    .whatsapp{
        width: 90%;
        justify-content: center;
        bottom: 15px;
        font-size: 15px;
        padding: 12px 15px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-card span {
        font-size: 12px;
    }
}

@media only screen and (max-width: 476px){
    p{
        text-align: justify;
    }
    .faq-section{
        padding: 10px;
    }
    .bal{
        display: none;
    }
    .sidebar{
        display: none;
    }
}
