:root {
  --bs-black: #000;
  --bs-white: #fff;
  --primary: #141d33;
  --bs-red: #f52d3a;
  --bs-danger: #c09c9c;
  --bs-text-gray: #7d818a;


  /* font size */
  --fs-14: 14px;
  --fs-12: 12px;

  /* font-weight */
  --fw-medium: 500
}

body {
  font-family: "Inter", sans-serif;
  background-image: url('../img/bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  background-position: center;
  position: relative;
  top: 0;
}

.text-secondary{
  color: var(--bs-text-gray) !important;
}

.main-section {
  background-image: url('../img/inner-background-img.png');
  background-position-y: start;
  background-position-x: center;
  background-size: cover;
  /* color: var(--bs-white); */
  width: 360px;
  height: 100vh;
  background-color: var(--primary);
  overflow-y: auto;
}
@media (max-width: 600px) {
  .main-section {
    width: 100%;
  }
}

.container-no {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}


@media (min-width: 576px) {
  .container-no {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container-no {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container-no {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container-no {
    max-width: 1140px;
  }
}
.main-section .header-logo {
  padding: 15px 0px;
  border-radius: 20px;
  background-color: #141d33;
}

.logo-container img {
  width: 150px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-section::-webkit-scrollbar {
  display: none;
}
.main-section {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.adsense-container{
  height: 250px;
  width: 90%;
  margin: auto;
}

/* ====> Card Section BEGINNING <==== */
.card{
  background-color: #5a8dfd;
  font-weight: 500;
}
.card button{
  font-size: var(--fs-14) !important;
}
/* ====> Card Section BEGINNING <==== */

/* ====> Game Section BEGINNING <==== */
.game-card{
  padding: 10px;
  flex-direction: column;
  height: 100%;
  transition: 0.2s linear;
  cursor: pointer;
}
.game-card:hover{
  box-shadow: 0 0 10px 0 hsla(0, 0%, 100%, .5);
}
.game-card .image-contaner{
  width: 120px;
  height: 120px;
}
.game-card .image-contaner img{
  object-fit: cover;
  object-position: center;
}
.game-card p{
  font-size: var(--fs-12);
  margin: 0;
  font-weight: 500;
}
a.btn-gradient{
  font-size: var(--fs-12);
  font-weight: 500;
  background: linear-gradient(90deg,#ce1c63,#535edb);
  border-color: transparent;
  word-wrap: break-word;
}
a.btn-gradient:hover{
  background: linear-gradient(90deg,#535edb,#ce1c63);
}
/* ====> Game Section END <==== */

/* ====> Footer Section BEGINNING <==== */
.footer a{
  color: var(--bs-white);
}
/* ====> Footer Section END <==== */

/* ====> Privacy Section BEGINNING <==== */
.privacy-heading{
  color: var(--bs-danger);
}
/* ====> Privacy Section END <==== */

/* 
.jk-container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .jk-container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .jk-container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .jk-container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .jk-container {
    max-width: 1140px;
  }
} */
