html,
body {
  font-family: 'Nunito', sans-serif;
  margin: 0;
  color: #333;
  position: relative;
  z-index: 99;
}

body::-webkit-scrollbar {
  display: none;
}

@font-face {
  font-family: 'Nunito';
  src: url('../fonts/Nunito-VariableFont_wght.ttf') format('truetype');
  font-style: normal;
}

.placeholder {
  object-fit: contain;
  margin: auto;
}

.container {
  max-width: 1140px;
  margin: auto;
  padding: 0 0px;
  width: 100%;
}

*,
::after,
::before {
  box-sizing: border-box;
}

.t_1l {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: #333333;
}

.t_12 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.t_13 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.t_14 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0%;
  padding: 0;
}

h2 {
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Nunito';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  /* 125% */
}

p {
  color: #333;
  font-family: 'Nunito';
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  /* 157.143% */
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0px;
  max-width: 1200px;
  margin: auto;
  padding-right: 10px;
}

.logo a {
  padding: 10px 48px;
  display: block;
  color: #563CD7;
  font-family: Nunito;
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 36px;

  border-radius: 0 0 100px 100px;
}

.nav-links .active a {
  color: #563CD7;
}

.nav-links {
  width: auto;
  display: flex;
  margin: 10px 0;
  padding: 0;
  list-style-type: none;
}


.nav-links li {
  position: relative;
}

.nav-links li a {
  text-transform: capitalize;
  color: #333;
  font-family: 'Nunito';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
  padding: 12px 24px;
  display: block;
}

/* .nav-links li.active a,
.nav-links li:hover a {
    border-radius: 100px;
    background: #FFE82C;
    color: #333;
} */


.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 15px;
}

.line1,
.line2,
.line3 {
  width: 22px;
  height: 2px;
  margin: 2px;
  background: #f87e10;
}

.pc-searbtn {
  border-radius: 12px;
  background: #F9F6F6;
}

.burger,
.h5-searbtn,
.h5-close,
.h5-home {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.h5-text {
  display: none;
}

.burger a,
.h5-home a,
.h5-searbtn a {
  display: contents;
}

.back-to-top {
  border: none;
  position: fixed;
  bottom: 160px;
  right: 65px;
  z-index: 99;
  cursor: pointer;
  display: none;
  color: #563CD7;
  border-radius: 50%;
  background-color: transparent;
}

.back-to-top i {
  font-size: 30px;
}

@media (max-width:1024px) {
  .logo a {
    font-size: 24px;
    line-height: 30px;
  }

  .nav-links li a {
    padding: 10px 18px;
  }
}

@media screen and (max-width: 992px) {

  .navbar {
    padding-right: 20px;
  }

  .nav-links {
    display: none;
    background-color: #fff;
    padding: 40px;
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 9999;
    padding-top: 60px;
    height: 100vh;
    margin: 0px 0;
  }


  .nav-links.nav-active {
    display: flex;
    gap: 16px;
    position: fixed;
    flex-direction: column;
    padding-bottom: calc(100vh - 340px);
  }

  .nav-links li a {
    display: block;
    width: max-content;
    color: #333;
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 14px;
    line-height: 18px;
    margin: auto;
  }


  .pc-searbtn {
    display: none;
  }

  .burger {
    display: flex;
    padding: 10px 12px;
    border-radius: 50%;
    margin-left: 24px;
  }

  .h5-home {
    display: flex;
    padding: 10px 12px;
    border-radius: 50%;
    margin-left: auto;
  }

  .h5-close {
    display: block;
    width: auto !important;
    margin-left: 0 !important;
    text-align: center;
    padding: 20px;
    position: absolute !important;
    top: 5px;
    right: 15px;

  }

  .h5-close i {
    font-size: 20px;
    color: #999;
  }

  .h5-searbtn {
    display: flex;
    padding: 10px 12px;
    border-radius: 50%;
    margin-left: 24px;
  }

  .burger i,
  .h5-searbtn i,
  .h5-home i {
    color: #333;
    font-size: 24px;
  }

  .toggle i {
    color: #999999;
  }

  .toggle {
    position: fixed;
    z-index: 9999;
    right: 20px;
    font-size: 24px;
    top: 0px;
    padding: 20px;
  }

  .logo a {
    padding: 8px 20px;
  }

  .h5-text {
    display: block;
    width: 100% !important;
  }

}

@media (max-width:550px) {
  .navbar {
    padding-right: 12px;
  }

  /* .logo {
        width: calc(100% - 150px);
    } */

  .logo a {
    width: 100%;
    font-size: 20px;
    line-height: 24px;
    padding: 3px 18px;
  }

  .burger,
  .h5-searbtn {
    margin-left: 12px;
  }

  .burger,
  .h5-searbtn,
  .h5-home {
    padding: 8px;
  }


  .h5-close {
    padding: 12px 20px;
  }

  .back-to-top {
    bottom: 130px;
    right: 20px;
  }

  .back-to-top svg {
    width: 25px;
  }

  .burger i,
  .h5-searbtn i,
  .h5-home i {
    font-size: 20px;
  }
}

@media (max-width:380px) {
  .navbar {
    padding-right: 8px;
  }

  .burger,
  .h5-searbtn,
  .h5-home {
    padding: 8px;
  }

  .burger,
  .h5-searbtn {
    margin-left: 8px;
  }
}


#copy-message {
  position: fixed;
  z-index: 999;
  bottom: 30%;
  width: 60px;
  height: 28px;
  left: 50%;
  transform: translate(-50%, 0);
  background: #fff;
  border: 1px solid #d9d9d9;
  color: #333;
  font-size: 12px;
  text-align: center;
  line-height: 28px;
  border-radius: 20px;
}


section {
  padding: 16px 0;
}

.gg2 {
  padding: 0 0 16px 0;
}

.cover {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  background: #fff;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.heading {
  position: relative;
  color: #333;
  font-family: Nunito;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
  padding-bottom: 12px;
  text-transform: capitalize;
}

.heading i {
  padding-right: 12px;
  font-size: 20px;
  line-height: 24px;
}

.heading p {
  color: #333;
  font-family: Nunito;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  padding-top: 12px;
}

.search {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 24px;
  width: 90%;
  margin: auto;
}

.search input {
  border-radius: 48px;
  border: 1px solid #563CD7;
  background: #FFF;
  width: 100%;
  outline: none;
  padding: 10px 48px;
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}

.search input::placeholder {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}

.search_btn a {
  border-radius: 100px;
  background: #563CD7;
  display: flex;
  padding: 12px;
}

.search_btn a i {
  color: #fff;
}

footer {
  padding: 20px 0;
  margin-top: 48px;
}

footer .share {
  width: 50%;
  display: flex;
  justify-content: center;
}

footer .share a {
  padding: 3px;
  margin: 0 12px;
  display: flex;
  border-radius: 80px;
  border: 0.8px solid #333;
}

footer .share i {
  color: #333;
  font-size: 25px;
}

footer .pt {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .pt a {
  padding: 0 24px;
  color: #333;
  font-family: 'Nunito';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  position: relative;
  text-decoration: underline;
  /* 125% */
}

footer .pb {
  width: 100%;
  color: #333;
  text-align: center;
  font-family: 'Nunito';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  padding-top: 24px;
  /* 125% */
}

@media (max-width:769px) {
  footer .share a {
    margin: 0 6px;
  }

  footer .pt a {
    padding: 0 12px;
  }

}

@media (max-width:550px) {
  footer .share {
    padding-top: 12px;
    width: 100%;
  }

  footer .pt {
    width: 100%;
    order: -1;
  }

  footer .pt a {
    font-size: 14px;
  }

  footer .pb {
    padding-top: 12px;
    font-size: 14px;
  }

  footer .share a {
    padding: 0px;
  }

  footer .share i {
    font-size: 25px;
    line-height: 25px
  }

  footer {
    padding: 12px 0;
  }
}

.icon-head01:before {
  color: #FF9800;
}

.icon-a-NewGames:before {
  color: #FF9800;
}

.icon-head03:before {
  color: #FF9800;
}







.g1 .flex {
  gap: 20px;
  justify-content: space-between;
}

.g1 a {
  display: block;
  width: 18.5%;
  border-radius: 12px;
  background: #F8F8F8;
  box-shadow: inset 0px 0px 4px 0px rgba(86, 60, 215, 0.25);
}

a img {
  aspect-ratio: 1/0.66;
}

.g1 a .item .text {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.g1 a .item .text .play {
  border-radius: 8px;
  padding: 6px 0;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  background: #563CD7;
  color: #FFFFFF;
}

.g2 a {
  display: block;
  width: 15%;
  background: #FFFFFF;
  box-shadow: 0px 2px 0px 0px #563CD7;
  border-radius: 12px 12px 12px 12px;
  border: 1px solid rgba(86, 60, 215, 0.5);
}

.g2 .flex {
  justify-content: space-around;
  gap: 20px;
}

.g2 a .item {
  border-radius: 12px;
  background: #FFF;
}

.g2 a .item .title {
  padding: 8px 12px;
}

.g3 a .item {
  border-radius: 12px;
  background: #FFF;
}

.g3 a {
  width: 12.6%;
}

.g3 a img {
  aspect-ratio: 1/1;
}

.g3 a .item .play {
  padding: 4px 24px;
  width: fit-content;
  margin: 12px auto 0;
  border-radius: 100px;
  font-weight: 700;
  background: #563CD7;
  color: #FFFFFF;
}

.g3 {
  padding: 0px 0 16px 0;
}

.g33 {
  padding: 16px 0;
}

.dt .left,
.dt .right {
  width: 23%;
  display: flex;
  flex-wrap: wrap;
  padding: 6px;
}

.dt .left a,
.dt .right a {
  display: block;
  padding: 6px;
  width: 50%;
}

.dt .left a img,
.dt .right a img {
  border-radius: 12px;
  aspect-ratio: 1/1;
}

.dt .main {
  width: 54%;
  padding: 12px;
}

.dt .main .box {
  padding: 24px;
  background: #F8F8F8;
  box-shadow: inset 0px 0px 4px 0px rgba(86, 60, 215, 0.25);
  border-radius: 12px 12px 12px 12px;
}

.dt .main .gameLink {
  display: block;
}

.dt .main .gameLink img {
  border-radius: 12px;
  margin-bottom: 24px;
}

.icon-head05:before {
  color: #FF9800;
}

.dt .main .gameLink .title {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.dt .main .gameLink .title h2 {
  font-size: 20px;
  line-height: 24px;
  color: #391E1E;
}

.dt .main .gameLink .title .play {
  white-space: nowrap;
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 20px;
  background: #563CD7;
  color: #fff;
}

.dt .main .gameLink .catename {
  text-transform: capitalize;
  padding: 12px 0;
  font-size: 16px;
  line-height: 20px;
  color: #563CD7;
}

.dt .main .text {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  max-height: 96px;
  overflow: auto;
  padding-right: 12px;
}


.play-game {
  aspect-ratio: 1 / 0.9;
  position: relative;
  border-radius: 24px;
  margin-bottom: 24px;
  margin-left: 60px;
  margin-right: 60px;
}

.play-game .top {
  height: calc(100% - 60px);
  border-radius: 24px 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  box-shadow: 0px 0px 20px 0 #e4e4e4;
  position: relative;
}

.play-game .top::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 24px 24px 0 0;
  background: rgba(0, 0, 0, 0.02);
}

.play-game .top .top__shading {
  width: 100%;
  border-radius: 24px 24px 0 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

.play-game .top .top__shading .img-border {
  width: 200px;
  height: 200px;
  display: block;
  margin: 0 auto 24px;
  border-radius: 12px;
}


.play-game .top .bg {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  background: #D9D9D9;
  margin: 0 auto 20px;
}

.play-game .top .palybtn {
  margin: auto;
  cursor: pointer;
  width: max-content;
  margin-top: 12px;
  padding: 8px 100px;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
  background: #563CD7;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 100px 100px 100px 100px;
  color: #fff;
}

#gameIframe {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 50%;
  top: 0px;
  z-index: 9;
}

.play-game .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 32px;
  border-radius: 0 0 21px 21px;
  background: #333;
  position: relative;
  z-index: 99;
}

.play-game .bottom p {
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
  color: #FFF;
}

.play-game .bottom .botton-full {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.play-game .bottom .botton-full i {
  color: #fff;
  font-size: 24px;
}

@media (max-width:992px) {
  .g3 a {
    width: 20%;
  }

  .dt .left,
  .dt .right,
  .dt .main {
    width: 100%;
  }

  .dt .left a,
  .dt .right a {
    width: 20%;
  }

  .dt .main .gameLink img {
    max-width: 478px;
    margin: 0 auto 24px;
  }
}

@media (max-width:769px) {
  .g1 a {
           width: 31.4%;
  }

  .g1 .flex,
  .g2 .flex {
    width: 95%;
    margin: 0 auto;
    justify-content: flex-start;
  }

  .heading {
    padding-left: 20px;
  }

  .g2 a {
    width: 22.8%;
  }

  .g3,
  .g2 {
    padding: 16px 0;
  }

  section {
    padding: 8px 0;
  }

  .play-game {
    aspect-ratio: 1/1;
    margin-left: 12px;
    margin-right: 12px;
  }
}

@media (max-width:550px) {
  section {
    padding: 6px 0;
  }

  .g1 a {
    width: 48%;
  }

  .g2 a {
    width: 48%;
  }

  .g3 a {
    width: 48%;
  }

  .g3,
  .g2 {
    padding: 8px 0;
  }

  .g1 .flex,
  .g2 .flex {
    width: 100%;
    gap: 12px;
  }

  .container {
    padding: 0 6px;
  }

  .heading {
    padding-left: 6px;
    padding-bottom: 6px;
    font-size: 16px;
    line-height: 20px;
  }

  .heading i {
    font-size: 16px;
    line-height: 20px;
  }

  h2 {
    font-size: 14px;
    line-height: 18px;
  }

  .g1 a,
  .g2 a {
    padding: 6px;
  }

  .g1 a .item .text {
    padding: 8px;
    gap: 8px;
  }
  .g2 a .item .title {
    padding: 6px 10px;
  }
  .g3 a .item h2 {
    -webkit-line-clamp: 2;
    height: 36px;
  }

  .g3 a .item .play {
    width: 100%;
    margin: 6px auto 0;
    text-align: center;
  }

  .heading p {
    padding-top: 6px;
    font-size: 14px;
    line-height: 18px;
  }

  .search input {
    font-size: 14px;
    line-height: 18px;
    padding: 8px 16px;
  }

  .search input::placeholder {
    font-size: 14px;
    line-height: 18px;
  }

  .search {
    gap: 12px;
  }

  .search_btn a {
    padding: 10px;
  }

  .dt .left,
  .dt .right {
    padding: 2px;
  }

  .dt .main {
    padding: 6px;
  }

  .dt .main .box {
    padding: 12px;
  }

  .dt .main .gameLink img {
    margin: 0 auto 12px;
  }

  .dt .main .gameLink .title h2 {
    font-size: 16px;
    line-height: 20px;
  }

  .dt .main .gameLink .title .play {
    font-size: 12px;
    line-height: 16px;
  }

  .dt .main .gameLink .catename {
    font-size: 14px;
    line-height: 18px;
    padding: 4px 0;
  }

  .dt .main .text {
    font-size: 12px;
    line-height: 16px;
    max-height: 64px;
  }

  .dt .left a,
  .dt .right a {
    padding: 4px;
  }

  .play-game {
    aspect-ratio: 1 / 1.4;
    margin-left: 6px;
    margin-right: 6px;
  }

  #gameIframe {
    max-width: 100%;
  }

  .play-game .bottom p {
    font-size: 16px;
    line-height: 20px;
  }

  .play-game .bottom {
    padding: 0 16px;
  }

  .play-game .top .palybtn {
    font-size: 16px;
    line-height: 20px;
    margin-top: 0;
    padding: 12px 96px;
  }

  .play-game .top .top__shading .img-border,
  .play-game .top .bg {
    margin: 0 auto 12px;
  }

}

@media (max-width:375px) {


  .play-game {
    aspect-ratio: 1 / 1.5;
  }

  .play-game .top .top__shading .img-border,
  .play-game .top .bg {
    width: 150px;
    height: 150px;
  }

  .play-game .top .palybtn {
    width: 90%;
    padding: 12px 0;
  }
}

.g3 a:hover {
  border-radius: 12px 12px 12px 12px;
  background: #563CD7;
}

.g3 a:hover .title .t_1l {
  color: #fff;
}

.g3 a:hover .item .play {
  background: #fff;
  color: #563CD7;
}

.g3 a:hover .item {
  border-radius: 12px 12px 12px 12px;
  background: #563CD7;
}