* {
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none !important;
}
h1 {
    color: red;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
}
h2 {
    color: red!important;
    font-size: 28px !important;
    text-decoration: none !important;
    font-weight: 600;
}
h3 {
    color: red !important;
    font-size: 28px !important;
    text-decoration: none !important;
    font-weight: 600;
}

p{
    color: #fff;
    font-size: 20px;
    text-align: justify;
}
li{
    color: #fff;
    font-size: 20px;
}
/* HEADER */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-image: linear-gradient(134deg, #060557 0%, #00D1FD 100%);
}

/* LOGO */
.logo {
    width: 100px;
}

.logo span {
    font-size: 14px;
    color: #ff3c3c;
}

/* LOGIN AREA */
.login-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-area input {
    padding: 8px 10px;
    border-radius: 5px;
    border: none;
    outline: none;
}

/* BUTTONS */
.login-btn {
    background: #8B0000;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.demo-btn {
    background: linear-gradient(to right, #ff0000, #ff4d4d);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

/* MENU BAR */
.menu-bar {
  background-image: linear-gradient(180deg, #5083D3 0%, #1FC7F6 100%);
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.menu-bar::-webkit-scrollbar {
  display: none;
}

.menu-bar ul {
  display: flex;
  flex-wrap: nowrap; /* IMPORTANT */
  justify-content: flex-start; /* center hatao */
  padding: 0;
  margin: 0;
}

.menu-bar ul li {
  padding: 10px 15px;
  color: black;
  font-weight: 500;
  border-right: 1px solid rgba(0,0,0,0.3);
  cursor: pointer;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  font-size: 13px;
  white-space: nowrap;
  list-style: none;
}

.menu-bar ul li:last-child {
  border-right: none;
}
.game-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 10px;
}

/* CARD */
.game-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

/* IMAGE FIX (NO DISTORTION) */
.game-card img {
    width: 100%;
    height: 320px;
    object-fit: cover; /* 🔥 main fix */
    display: block;
}

/* OVERLAY BAR */
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
}

/* TEXT */
.overlay span {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

/* BUTTON */
.overlay button {
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
}

/* HOVER EFFECT */
.game-card:hover img {
    transform: scale(1.05);
    transition: 0.4s;
}
.game-section2 {
    display: grid;
    grid-template-columns: repeat(4, 2fr);
    gap: 20px;
    padding: 10px;
}

/* CARD */
.game-card2 {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

/* IMAGE FIX (NO DISTORTION) */
.game-card2 img {
    width: 100%;
    height: 320px;
    object-fit: cover; /* 🔥 main fix */
    display: block;
}

/* OVERLAY BAR */
.overlay2 {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
}

/* TEXT */
.overlay2 span {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

/* BUTTON */
.overlay2 button {
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
}

/* HOVER EFFECT */
.game-card2:hover img {
    transform: scale(1.05);
    transition: 0.4s;
}

    h2, h3 {
      color: white;
      margin: 10px 0;
    }

    h2 {
      font-size: 20px;
      text-decoration: underline;
    }

    h3 {
      font-size: 18px;
      text-decoration: underline;
    }

 
    .golf{
        background-color: #0F0F0F;
    }

    .betting-card {
      background-color: #111;
      border: 2px solid #2a2a2a;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
      transition: transform 0.3s;
      height: 100%;
    }

    .betting-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
    }

    .betting-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
    }

    .betting-card h4 {
      color: #d98b8b;
      font-weight: bold;
      margin-bottom: 10px;
    }


    .highlight {
      font-weight: bold;
      color: white;
    }
      .faq-section {
    width: 100%;
    min-height: 100vh;
    padding: 40px;
    background: #000;
    box-sizing: border-box;
    border-bottom: 2px solid #fff;
  }

  .faq-section h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #fff;
  }

  .faq-item {
    background: #f9f9f9;
    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 #C5898B;
    background: #000;
    color: #C5898B;
  }

  .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: #000;
    padding: 0 20px;
  }

  .faq-answer p {
    padding: 15px 0;
    margin: 0;
    color: #fff;
  }
  .how{
    background-color: #000;
  }
.rub{
    color: #C5898B;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
}
.fa-facebook{
    font-size: 30px;
    color: #fff;
}
.fa-square-twitter{
    font-size: 30px;
    color: #fff;
}
.fa-youtube{
    font-size: 30px;
    color: #fff;
}
.tick{
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding-top: 30px;
    padding-bottom: 30px;
}
.fill{
    padding-top: 20px;
    padding-bottom: 20px;
}
  
   /*whatsaap*/
 .float {
    position: fixed;
    width: 50px;
    height: 50px;
    /* bottom: 20px; */
    right: 35px;
    background: linear-gradient(
      90deg,
      rgb(55, 223, 97) 0%,
      rgb(9, 187, 3) 100%
    );    
    color: #fff !important;
    bottom: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 100;
  }
  .bb{
    color: #fff;
  }
  .my-float {
    margin-bottom: 8px;
    margin-top: 1px;
    margin-left: 1px;
    font-size: 30px;
  }
  /*whatsaap end*/ 

  @media only screen and (max-width: 476px){
    p{
        text-align: justify !important;
    }
    li{
         text-align: justify !important;
    }
    .overlay {
            padding: 5px 9px;
    }
    .overlay span {
        font-size: 18px;
    }
    .overlay2 span {
        font-size: 15px;
    }
    .overlay2 button{
            padding: 5px 10px;
    }
    .overlay button{
        padding: 5px 15px;
    }
    .game-card img {
        height: auto;
    }
    .login-area input{
        display: none;
    }
    .demo-btn {
        display: none;
    }
    .game-section {
        grid-template-columns: repeat(1, 1fr);
    }
    .game-section2 {
        grid-template-columns: repeat(2, 1fr);
    }
    }
    
    
   /*...................... */
   
    p, div {
    font-size: 18px;
  }

  @media only screen and (max-width: 600px) {
    p, div {
      font-size: 14px;
    }
  }
  
  
  
  

    
    