@font-face {
    font-family: Montserrat;
    src: url("./font/Montserrat-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: Montserrat;
    src: url("./font/Montserrat-Medium.ttf") format("truetype");
        font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: Montserrat;
    src: url("./font/Montserrat-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    /* border: 1px solid red; */
  }
  
  ul {
    list-style: inside;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  img, video {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  button {
    all: unset;
    cursor: pointer;
    box-sizing: border-box;
  }
  
  input, textarea, button, select {
    font: inherit;
    border: none;
    outline: none;
  }

  h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    color: #ffffff;
  }
  
  body {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background-color: #232424;
    color: #a6a6a6;
    box-sizing: border-box;
  }

  main{
    width: 90%;
    gap: 30px;
    margin: 30px auto;
  }


    .title{
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 10px auto;
  }

  .txt{
    font-size: 1rem;
    font-weight: 500;
    color: #fff;  
    margin-bottom: 20px;
  }
  /* normilize end */

  header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
    padding: 16px 22px;
    background-color: #281e36;
    border-radius: 12px;
    position: sticky;
    top: 0;
  }

  .h-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 30%;
  }

  .inherit-btn{
    padding: 8px 12px;
    border: 2px solid #d8163a;
    border-radius: 12px;
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    transition: transform .5s ease;
    }

    .inherit-btn:hover{
      background-color: #d8163a;
     transform: scale(1.2);

    }

    .red-btn{
      background-color: #d8163a;
      padding: 8px 12px;
      border: 2px solid #d8163a;
      border-radius: 12px;
      font-size: 1rem;
      color: #fff;
      font-weight: 700;
      transition: transform .5s ease;
    }

    .red-btn:hover{
      background-color: inherit;
     transform: scale(1.2);

    }

.main-banner, .small-banner{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    margin: 30px auto;
  }


  .banner-container{
    background-image:  url(./img/popup-girl.png);
    background-repeat: no-repeat;
    background-position: 65%;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-evenly;
    padding: 40px;
    border-radius: 20px;
    width: 70%;
    height: 400px;
    gap: 20px;
  }

  
  .banner-container p{
    width: 70%;
  }

  .info-box{
    margin: 20px auto;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .info-box img{
    width: 60%;
    height: auto;
    border-radius: 20px;
  }

  .info-txt{
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    margin: 8px auto;
  }


  .btn-dep{
    padding: 4px 14px;
    border-radius: 10px;
    font-size: 1rem;
    background-color: #16d864;
    color: #fff;
    font-weight: 800;
    border: 3px solid #16d864;
    box-shadow: 1px 1px 2px #16d864, 0 0 1em #16d864, 0 0 0.2em #fff;
      transition: transform .5s ease;
  }

  .btn-dep:hover{
     transform: scale(1.2);
  }
  
  .btn-dep:active {
    background-color: #46cc5c;
    box-shadow: 0 5px #28682ac6;
    transform: translateY(4px);
  }


 .banner-bonus-gift{
  background-image: url(img/gift.png);
    padding: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 16px;
 }

  .banner-bonus-cash{
  background-image: url(img/casback.png);
  padding: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 16px;
 }

 .sb-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  width: 100%;
  margin: 0 auto;
  background-color: #281e36;
  border-radius: 16px;
 }

  .sb-container:hover{
background: linear-gradient(90deg,rgba(15, 30, 25, 1) 0%, rgba(216, 22, 58, 0.467) 100%);
  }

   .sb-container:hover img{
    transform: rotate(10deg);
   }

  .sb-container .title{
    text-align: left;
    margin: 0;
  }

  .main-container{
   background-color: #281e36;
  padding: 20px 40px;
  border-radius: 16px;
  }

  table {
  border-collapse: collapse;
  width: 100%;
  border-radius: 12px;  
}

 td,  th {
  border: 1px solid #ddd;
  padding: 8px;
}

 th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #d8163a68;
  color: white;
}

footer{
  padding: 30px;
}

footer ul{
  list-style: none;
}

footer ul li{
  margin: 10px 0;
}

.f-logo {
  display: flex;
  align-items: flex-start; 
  align-items: end;
  gap: 10px; 
}
 hr {
  width: 100%;
  height: 2px;
  border: none;
  background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(11, 18, 16, 1) 97%);
}

.f-info{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 20px;
}


.f-txt{
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

.ios{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 10px;
  margin: 10px 0;
}

.txt-f{
  color: #fff;
  margin: 20px auto;
  text-align: center;
}


 @media (max-width: 768px) {
  header{
    gap: 10px;
    width: 100%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  main{
    width: 96%;
    margin: 0 auto;
  }

  .h-btn{
    width: 100%;
    margin: 4px auto;
    justify-content: space-evenly;
  }

    .inherit-btn, .red-btn{
      padding: 4px 8px;
    }

    .main-banner, .small-banner{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    margin: 30px auto;
  }

    .banner-container{
      width: 100%;
      padding: 20px 10px;
      gap: 10px;
    }

    .txt{
      font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .main-container{
      width: 96%;
      padding: 10px 8px;
      gap: 10px;
      margin: 0 auto;
    }

    table{
      font-size: 0.8rem;
    }

    footer{
       padding: 10px;
    }

    .f-info{
      flex-wrap: wrap;
      width: 100%;  
    }

    footer div{
      width: 100%;
    }

    footer img{
      width: 30px;
      height: auto;
    }
 }