/* BASE */

body {
  font-family: 'Bricolage Grotesque', sans-serif;
  background: rgb(20, 22, 31);
  color: white;
}

/* CONTAINER */

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

@media (max-width: 1200px) {
  .container {
    padding: 0 12px !important;
  }
}

@media (min-width: 1460px) {
  .container {
    max-width: 1440px;
  }
}

/* HEADER / NAVBAR */

.logo {
  height: 50px;
  width: auto;
}

header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 70px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: rgba(0, 0, 0, 0.04) 0 2px 8px;
  font-size: 14px;
  font-weight: 500;
}

@media (min-width: 991px) {
  .navbar-expand-lg .navbar-collapse {
    justify-content: flex-end;
  }
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* NAV LINKS */

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 14px;
}

@media (max-width: 991px) {
  .navbar-nav .nav-link {
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
}

.navbar-nav .nav-link:hover {
  color: #fff !important;
}

/* NAVBAR ACTIONS (SEARCH + TOGGLER) */

.navbar-actions {
  display: flex;
  align-items: center;
}

/* SEARCH (DESKTOP) */

.search-container {
  display: flex;
  align-items: center;
  margin-left: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

@media (min-width: 991px) {
  .search-container {
    width: 320px;
  }
}

.search-container:focus-within {
  border-color: rgb(255, 66, 165);
}

.search-button {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
}

.btn:first-child:active {
  border: none;
}

.search-popup-header img {
}

.search-input {
  flex: 1;
  padding: 0 10px 0 0;
  border: none;
  outline: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* SEARCH 768-991 */

@media (min-width: 769px) and (max-width: 991px) {
  .search-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
  }
}

/* SOCIAL */

.social-box {
  display: flex;
  align-items: center;
  height: 40px;
  margin-left: 20px;
  padding: 0 8px 0 16px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
}

.social-icons {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-icon {
  width: 40px;
  height: 40px;
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons .title {
  display: none;
}

@media (max-width: 991px) {
  .social-icon {
    width: auto;
  }
}

@media (max-width: 991px) {
  .social-box {
    margin-left: 0;
    padding: 0;
    background: transparent;
    flex-direction: column;
    align-items: start;
    height: auto;
  }
}

@media (max-width: 991px) {
  .social-icons, .social-icons > * {
    flex-direction: column;
    align-items: start;
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 991px) {
  .social-icon a {
    width: 100%;
    text-decoration: none;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
}

@media (max-width: 991px) {
  .social-icons .title {
    display: inline-block;
  }
}

@media (max-width: 991px) {
  .social-box p {
    width: 100%;
    padding: 0.5rem 0;
  }
}

.follow {
  margin-right: 15px;
  color: rgba(255, 255, 255, 0.7);
}

/* MOBILE MENU (SLIDE FROM RIGHT) */

@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    padding: 16px;
    background: rgb(51, 42, 75);
    z-index: 1050;
    display: block !important;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
}

@media (max-width: 991px) {
  .navbar-collapse.show {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
}

/* MOBILE MENU HEADER (LOGO + X) */

@media (max-width: 991px) {
  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
}

@media (max-width: 991px) {
  .menu-logo {
    height: 28px;
  }
}

@media (max-width: 991px) {
  .menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
  }
}

/* MOBILE SEARCH ICON (<=768px) */

@media (max-width: 768px) {
  .navbar-actions {
    margin-left: auto;
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .search-container {
    width: 40px;
    margin-left: 0;
    justify-content: center;
    background: transparent;
    border: none;
  }
}

@media (max-width: 768px) {
  #search-input {
    display: none;
  }
}

/* SEARCH POPUP (FULLSCREEN) */

.search-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #000;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.search-popup.show {
  transform: translateY(0);
}

.search-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.search-popup-header img {
  height: 45px;
  width: auto;
}

.search-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

.search-popup-form {
  margin-top: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.search-popup-form:focus-within {
  border-color: rgb(255, 66, 165);
}

.search-popup-form input {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
}

.listing-section {
  text-align: center;
  padding: 10px 0px;
}

.listing-section .heading {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  margin-bottom: 16px;
}

.listing-section .heading span {
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(0.25turn, rgba(56, 2, 155, 0), rgb(255, 0, 128), rgba(56, 2, 155, 0)) 1 / 1 / 0 stretch;
  font-size: 24px;
  padding-bottom: 12px;
}

.listing-section .games-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 16px 16px 48px;
  list-style: none;
}

.listing-section .games-list li {
  flex-basis: 33%;
  padding: 4px;
}

.listing-section .games-list li a {
  color: rgb(255, 255, 255);
  width: 100%;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  gap: 4px;
  padding: 8px;
  border-radius: 8px;
}

.listing-section .games-list li a img {
  border-radius: 8px;
  height: 84px;
  width: 84px;
  overflow: hidden;
  display: inline-block;
}

.listing-section .games-list li a .game-title {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0px;
  margin: 0px;
}

/* MAIN */

main {
  margin-top: 70px;
}

/* HOT GAMES */

.row-hot {
  display: flex;
  align-items: center;
  /*gap: 19px;*/
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  margin: 10px 0;
  /*width: max-content;*/
}

.row-hot::-webkit-scrollbar {
  display: none;
}

.hotgames-heading {
  color: rgb(255, 255, 255);
  display: flex;
  width: 59px;
  height: 44px;
  -webkit-box-align: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin: 0;
}

.line {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  height: 44px;
  margin: 0 14px;
}

.list-hotgames {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 13px;
  flex: 1 0 0px;
}

.hot-item {
  position: relative;
  min-width: 48px;
}

.hot-item a {
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: white;
}

.hot-item a {
}

.hot-item .heading {
}

.hot-item img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  aspect-ratio: 1/1;
}

.hot-tooltip {
  position: fixed;
  padding: 4px 10px;
  font-size: 10px;
  background: #000;
  color: #fff;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.2);
  white-space: nowrap;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, 5px);
  transition: .15s ease;
}

.hot-tooltip.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.row-hot {
  cursor: grab;
}

.row-hot:active {
  cursor: grabbing;
}

.row-hot.dragging {
  cursor: grabbing;
}

/* TOP GAMES */

.section-title {
  color: #fff;
  font-size: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.section-title .title {
  font-size: 18px;
  margin-bottom: 16px;
}

.games-row {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(8, minmax(0px, 1fr));
  grid-template-rows: repeat(2, auto);
}

@media (min-width: 768px) and (max-width: 1280px) {
  .games-row {
    grid-template-columns: repeat(6, minmax(0px, 1fr));
    grid-template-rows: repeat(2, auto);
  }
}

@media (min-width: 768px) and (max-width: 1280px) {
  .games-row > *:nth-child(n + 13) {
    display: none;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .games-row {
    grid-template-columns: repeat(6, minmax(0px, 1fr));
    grid-template-rows: repeat(2, auto);
    gap: 12px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .games-row > *:nth-child(n + 13) {
    display: none;
  }
}

@media (max-width: 480px) {
  .games-row {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .games-row > *:nth-child(n + 10) {
    display: none;
  }
}

.game-card {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-decoration: none;
  width: 100%;
  position: relative;
}

.thumb {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: .2s ease;
  width: 100%;
}

.thumb img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.game-card:hover .thumb, .game-card.active .thumb {
  border: 2px solid #ff4aa2;
}

.rating {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 5px 0;
  display: none;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
}

.rating img {
  width: 12px;
  height: 12px;
}

.game-card:hover .rating, .game-card.active .rating {
  display: flex;
  align-items: center;
}

.name {
  margin-top: 8px;
  line-height: 1.3;
  opacity: .9;
}

.name {
  color: color(display-p3 1 1 1 / 0.8);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.5em;
  max-height: 3em;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px;
}

.highlight-badge {
  position: absolute;
  top: 0px;
  right: 1px;
  width: 30px;
  height: 30px;
  /*background: #ff6a00;*/
  color: #fff;
  font-size: 13px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.highlight-game .thumb {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: none;
}

/* gradient border */

.highlight-game .thumb {
  border: 2px solid #f1c232;
}

.highlight-game .thumb img {
  position: relative;
  z-index: 1;
}

/* popular */

.row-5 {
  display: grid;
  gap: 24px;
}

.row-5 {
  grid-template-columns: repeat(5, 1fr);
}

@media (min-width: 768px) {
  .row-5 > *:nth-child(n + 6) {
    display: none;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .row-5 {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .row-5 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .row-5 > *:nth-child(n + 5) {
    display: none;
  }
}

.row-5 .thumb img {
  aspect-ratio: 3/4;
}

a.view-all-btn {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
}

.list-cate {
  display: flex;
  gap: 14px;
  -webkit-box-align: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0px;
}

@media (max-width: 767px) {
  .list-cate {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}

.list-cate li {
  list-style: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.list-cate li a {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 150%;
  color: rgb(255, 255, 255);
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  border: 1px solid transparent;
}

@media only screen and (max-width: 768px) and (orientation: portrait) {
  .list-cate li a {
    padding: 4px 8px;
  }
}

.list-cate li a:hover {
  border-color: rgb(255, 66, 165);
}

.list-cate li span {
  display: inline-block;
  width: calc(100% - 30px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list-cate img {
  width: 33px;
  height: 33px;
}

/* BLOGS */

.row-3 {
  display: grid;
  gap: 24px;
}

.row-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (min-width: 481px) and (max-width: 767px) {
  .row-3 {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .row-3 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .row-3 > *:nth-child(n + 3) {
    display: none;
  }
}

.row-3 .thumb img {
  aspect-ratio: 4/2.5;
}

.card-blog {
  overflow: hidden;
  text-decoration: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 16px 0px;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.card-blog:hover {
  border-color: #ff42a5;
}

.card-blog .name {
  padding: 10px 16px;
  max-width: 100% !important;
  max-height: initial;
  margin-top: 0;
}

@media (max-width: 767px) {
  .card-blog .name {
    padding: 0 7px 10px;
  }
}

.card-blog .name span {
  margin: 0px;
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.5em;
  max-height: 3em;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-blog .thumb, .card-blog:hover .thumb {
  border: none;
}

/* ABOUT SECTION */

.about-section h1 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.about-section p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 20px;
}

.about-section a {
  color: rgba(255, 255, 255, 0.6);
}

/* FAQ */

.accordion-item {
  background: rgba(102, 102, 102, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  margin-bottom: 10px;
}

.accordion-button {
  border-radius: 8px !important;
  padding: 12px 16px;
  /*margin-bottom: 8px;*/
  background: transparent !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: transparent;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7) !important;
  box-shadow: none !important;
}

.accordion-button:hover {
  background: rgba(102, 102, 102, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' viewBox='0 0 16 17' fill='none'%3E%3Cpath d='M4 6.5L8 10.5L12 6.5' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' viewBox='0 0 16 17' fill='none'%3E%3Cpath d='M4 6.5L8 10.5L12 6.5' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.accordion-item, .accordion-item a {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  -webkit-box-align: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
}

/* FOOTER */

footer {
  background: url("../../assets/img/hue.e6540d39.png");
  content-visibility: auto;
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  overflow: hidden;
  background-size: cover;
}

@media (max-width: 991px) {
  footer .ft-item {
    margin-bottom: 20px;
  }
}

footer .heading {
  font-weight: 600;
  font-size: 10px;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, .4);
}

footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

footer a {
  text-decoration: none;
  color: rgba(255, 255, 255, .8);
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
  align-items: center;
  display: flex;
  gap: 12px;
}

.ft-icon svg {
  width: 16px;
}

.menu-bottom {
  gap: 24px;
  width: 100%;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.menu-bottom a {
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  text-align: center;
}

.copyright {
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  text-align: center;
}

/* CATEGORIES PAGE */

.page-details {
  font-family: 'Poppins';
}

.page-details .title-page {
  text-align: center;
  max-width: 1080px;
  margin: 120px auto;
  font-family: 'Poppins';
  padding-top: 74px;
}

@media (max-width: 767px) {
  .page-details .title-page {
    margin: 30px auto;
    padding-top: 30px;
  }
}

.page-details a {
  text-decoration: none;
}

.page-details .genre-title {
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(0.25turn, rgba(56, 2, 155, 0), rgb(255, 0, 128), rgba(56, 2, 155, 0)) 1 / 1 / 0 stretch;
  font-weight: bold;
  font-size: 54px;
  line-height: 150%;
  color: rgb(255, 255, 255);
  display: inline-block;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.cg-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 32px;
  justify-content: unset;
}

.cg-list .item {
  width: calc(10% - 11.2px);
  margin-bottom: 24px;
  cursor: pointer;
  position: relative;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .cg-list .item {
    width: calc(20% - 9.6px);
  }
}

@media (min-width: 520px) and (max-width: 767px) {
  .cg-list .item {
    width: calc(25% - 10px);
    justify-content: unset;
  }
}

@media (max-width: 767px) {
  .cg-list .item {
    margin: 12px 0px 0px;
    width: calc(33.3333% - 9.33333px);
  }
}

.cg-list .item a {
  display: block;
  position: relative;
  padding: 8px;
  z-index: 1;
  height: 100%;
  cursor: pointer;
  border-radius: 8px;
}

.cg-list .item .image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 4px;
  aspect-ratio: 1 / 1;
}

.cg-list .item .image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.cg-list .item .game-infor {
  font-size: 12px;
  line-height: 150%;
  color: rgb(255, 255, 255);
  font-weight: 600;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cg-list .item:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: 1;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  box-sizing: border-box;
  display: none;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  border-image: initial;
  background: linear-gradient(45deg, rgb(255, 51, 146), rgb(255, 51, 146)) border-box border-box;
  border-radius: 10px;
  transition: 0.3s linear;
}

.cg-list .item::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 20px;
  left: 10%;
  bottom: -6px;
  background: linear-gradient(270deg, rgb(255, 51, 146) 0%, rgb(255, 51, 146) 99.48%);
  filter: blur(8px);
  border-radius: 100px;
  box-sizing: border-box;
  display: none;
  transition: 0.3s linear;
}

.cg-list .item:hover::before, .cg-list .item:hover::after {
  display: block;
  transition: 0.3s linear;
}

.cg-list .item:hover a {
  background-color: rgb(17, 17, 17);
}

/* MORE CATE */

.block-title {
  text-align: center;
  margin: 0px auto 32px;
  font-weight: 600;
  font-size: 32px;
  line-height: 150%;
}

.block-title span {
  display: inline-block;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(0.25turn, rgba(56, 2, 155, 0), rgb(255, 0, 128), rgba(56, 2, 155, 0)) 1 / 1 / 0 stretch;
  padding-bottom: 12px;
}

.game-sub-cat {
  display: block;
  height: auto;
  overflow: hidden;
  width: 100%;
  margin-left: -12px;
  padding-bottom: 20px;
  text-align: center;
}

@media (max-width: 767px) {
  .game-sub-cat {
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 14px;
    margin-left: 0;
  }
}

.game-sub-cat a {
  justify-content: center;
  min-width: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin: 12px;
  padding: 13.5px 16px;
  color: rgb(255, 255, 255);
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  line-height: 150%;
  display: inline-block;
  float: inherit;
  border: 1px solid transparent;
}

.game-sub-cat a:hover {
  border-color: rgb(255, 66, 165);
}

@media (max-width: 767px) {
  .game-sub-cat a {
    margin: 0;
    width: 100% !important;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    text-align: center;
  }
}

.game-sub-cat img {
  float: left;
  margin: 0px 10px 0px -5px;
  height: 20px;
  width: 20px;
}

.show-more-btn, .show-more-btn:hover {
  height: 40px;
  width: auto;
  padding: 0px 16px;
  border-radius: 6px;
  font-size: 16px;
  transition: 0.4s ease-in-out;
  border: 1px solid rgb(255, 66, 165);
  filter: drop-shadow(rgba(0, 0, 0, 0.2) 0px 4px 4px);
  background: transparent;
  margin: 0px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.show-more-btn span {
  font-size: 14px;
  margin-left: 0px;
  color: rgb(255, 66, 165);
  font-weight: 600;
  line-height: 150%;
}

.row-6 {
  display: grid;
  gap: 24px;
}

.row-6 {
  grid-template-columns: repeat(6, 1fr);
}

@media (min-width: 1025px) {
  .row-6 > *:nth-child(n + 7) {
    display: none;
  }
}

@media (max-width: 1024px) {
  .row-6 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 12px;
  }
}

@media (max-width: 1024px) {
  .row-6 > *:nth-child(n + 9) {
    display: none;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .row-6 {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 12px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .row-6 > *:nth-child(n + 7) {
    display: none;
  }
}

@media (max-width: 480px) {
  .row-6 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .row-6 > *:nth-child(n + 5) {
    display: none;
  }
}

.row-6 .thumb img {
  aspect-ratio: 3/4;
}

.image-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 6px;
  z-index: 1;
  transform: translateY(0px);
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.image-wrapper > div {
  /*position: relative;*/
  z-index: 9;
  overflow: hidden;
  border-radius: 10px;
  background-color: rgb(17, 17, 17);
  aspect-ratio: 3 / 4;
  width: 100%;
}

.game-tile-overlay {
  display: none;
  background: radial-gradient(124.24% 100.47% at 25.16% 100%, rgba(11, 2, 35, 0.9) 0%, rgba(11, 2, 35, 0) 100%) !important;
  position: absolute;
  width: 100%;
  height: 35%;
  bottom: 0px;
  z-index: 9;
  overflow: hidden;
  border-radius: 10px;
}

.game-tile-overlay .game-title {
  position: absolute;
  bottom: 28px;
  left: 0px;
  z-index: 12;
  font-size: 12px;
  color: rgb(255, 255, 255);
  font-weight: 500;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0px 8px;
  width: 100%;
}

.game-tile-overlay .play-btn {
  width: calc(100% - 4px);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 16px;
  color: var(--white);
  position: absolute;
  bottom: 0px;
  left: 0px;
  max-width: 100%;
  z-index: 10;
  font-weight: 600;
  height: 24px;
  background: #ff43a6;
  border-radius: 0px 0px 12px 12px;
  border-width: 0px;
  border-style: initial;
  border-color: initial;
  border-image: initial;
  outline: none;
  overflow: hidden;
  margin: 2px;
  padding: 0;
}

.popular-games-item:hover .image-wrapper .game-tile-overlay {
  display: block;
}

.row-4 {
  display: grid;
  gap: 24px;
}

.row-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 576px) {
  .row-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.row-4 .thumb img {
  aspect-ratio: 4/2.5;
}

/* DESC-FAQ */

.desc-faq {
  padding: 60px 0px 88px;
  background: rgba(255, 255, 255, 0.1);
}

.description {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.9);
}

/* DETAILS */

.gameplay-top {
  display: flex;
  flex-direction: row;
}

.game-player {
  position: relative;
  flex: 1;
  min-width: 0;
  transition: all .3s ease;
  order: 1;
}

.app-list {
  display: flex;
  gap: 12px;
  min-width: 70px;
  flex-direction: column;
  padding: 0;
  margin: 0 10px 0 0;
}

.app-list li {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.app-list li .thumb {
  width: 70px;
  height: 70px;
  flex: 1;
}

.app-list li a::before {
  opacity: 0;
  pointer-events: none;
  content: attr(data-title);
  position: absolute;
  top: 110%;
  z-index: 2;
  text-align: center;
  font-size: 10px;
  transition: 0.3s ease-out;
  background: rgb(17, 17, 17);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow-wrap: break-word;
  width: max-content;
  max-width: 250%;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 5px;
}

.app-list li a:hover::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  background: rgb(255, 66, 165);
  border-radius: 100px;
  animation-name: lbWRkT;
  animation-duration: 0.3s;
  bottom: -1.53px;
  height: 5px;
  filter: blur(5.5px);
}

.app-list li a:hover::before {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1459px) {
  .app-list > *:nth-child(n + 9) {
    display: none;
  }
}

@media (max-width: 991px) {
  .app-list > *:nth-child(n + 8) {
    display: none;
  }
}

@media (max-width: 767px) {
  .app-list > *:nth-child(n + 7) {
    display: none;
  }
}

@media (max-width: 576px) {
  .app-list > *:nth-child(n + 7) {
    display: flex;
  }
}

.game-player {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

@media (min-width: 992px) {
  .game-player {
    min-height: 644px;
  }
}

@media (min-width: 1460px) {
  .game-player {
    min-height: 808px;
  }
}

@media (max-width: 576px) {
  .game-player {
    aspect-ratio: 16/12;
  }
}

@media (max-width: 991px) {
  .game-player {
    min-height: 562px;
  }
}

@media (min-width: 360px) {
  .game-player {
    min-height: 398px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .game-player {
    min-height: 480px;
  }
}

.game-iframe-container {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 580px;
  max-height: 580px;
  min-height: calc(100% - 64px);
}

.game-iframe-container {
  /*padding-top: 56.25% !important;*/
  height: calc(100% - 64px);
  max-height: 100%;
}

@media (max-width: 992px) {
  .game-iframe-container {
    /*padding-top: 56.25% !important;*/
    height: calc(100% - 64px);
  }
}

@media (max-width: 576px) {
  .game-iframe-container {
    padding-top: 56.25% !important;
    height: calc(100% - 64px);
  }
}

@media (max-width: 576px) {
  .app-list {
    overflow-x: scroll;
    overflow-y: hidden;
    margin-bottom: 20px;
    flex-direction: row;
    scrollbar-width: none;
    padding-left: 0;
  }
}

@media (max-width: 576px) {
  .gameplay-top {
    flex-direction: column;
  }
}

.game-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  /*max-height: 540px;*/
}

@media (min-width: 1400px) {
  .game-iframe {
    /*max-height: 640px;*/
  }
}

.game-iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 10px 10px 0 0;
}

/* gg */

.game-info {
  background: rgba(255,255,255,.1);
  padding: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  width: 100%;
}

@media (max-width: 767px) {
  .game-info .logo {
    display: none;
  }
}

.header-left, .header-right, .icon-detail-game {
  display: flex;
  color: white;
  align-items: center;
  gap: 0.5rem;
}

.icon-detail-game > * {
  color: white;
}

@media (max-width: 576px) {
  .icon-detail-game > * {
    padding: 5px;
  }
}

.header-left img {
  border-radius: 10px;
  margin-left: 0.75rem;
  object-fit: cover;
}

.header-left {
  width: calc(100% - 220px);
  overflow: hidden;
}

@media (max-width: 576px) {
  .header-left {
    width: calc(100% - 180px);
    overflow: hidden;
  }
}

h1.single-title {
  margin: 0;
  font-weight: bold;
  font-size: 1.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: nowrap;
}

@media (max-width: 992px) {
  h1.single-title {
    font-size: 1.05rem;
  }
}

.other-games {
  padding: 48px 32px;
  background: rgba(255, 255, 255, .1);
}

@media (max-width: 767px) {
  .other-games {
    padding: 48px 20px;
  }
}

/* ABOUT PAGE */

.hero-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 5px;
  padding: 60px 0;
}

.hero-section img {
  width: 100%;
}

@media (max-width: 767px) {
  .content {
    flex-direction: column !important;
  }
}

.hero-section.s1 {
  background: rgba(255, 255, 255, 0.05);
  height: 540px;
}

@media (max-width: 767px) {
  .hero-section.s1 {
    height: auto;
  }
}

.hero-section .content {
  align-items: center;
  justify-content: center;
  gap: 72px;
  position: relative;
  /*text-align: center;*/
  max-width: 100%;
  padding: 0 24px;
}

.hero-section .left-section {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
}

.hero-section .right-section {
  width: 50%;
  height: auto;
}

@media (max-width: 767px) {
  .hero-section .left-section, .hero-section .right-section {
    width: 100%;
    position: relative;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .hero-section .left-section {
    order: 1;
  }
}

@media (max-width: 767px) {
  .hero-section .right-section {
    order: 2;
  }
}

@media (max-width: 767px) {
  .hero-section.s1 .content {
    flex-direction: column-reverse !important;
    gap: 20px;
  }
}

.hero-section .top-heading {
  /*color: #111;*/
  font-family: Helvetica;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  word-break: auto-phrase;
  text-align: left;
}

.hero-section .heading {
  /*color: #111;*/
  font-family: Helvetica;
  font-size: 84px;
  font-style: normal;
  font-weight: 700;
  text-align: left;
  line-height: 120%;
  backdrop-filter: blur(1.9369035959px);
  -webkit-backdrop-filter: blur(1.9369035959px);
  margin: 10px 0 10px;
  word-break: auto-phrase;
}

@media (min-width: 767px) and (max-width: 1200px) {
  .hero-section .heading {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .hero-section .container .top-heading {
    font-size: 20px;
    line-height: 120%;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .hero-section .container .heading {
    font-size: 48px;
    line-height: 120%;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .hero-section {
    text-align: center;
  }
}

.hero-section .act-now {
  margin-top: 25px;
  border-radius: 13.645px;
  background: #ff42a5;
  box-shadow: 0 10.916px 21.833px 0 rgba(0, 0, 0, .1);
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 21.833px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  padding: 12px 42px;
}

.hero-section.grow-your-game .heading {
  text-align: center;
  font-family: Helvetica;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 767px) {
  .hero-section.grow-your-game .heading {
    font-size: 24px;
    line-height: 150%;
    flex-direction: column;
    gap: 0;
    padding-bottom: 24px;
  }
}

.grow-your-game .title {
  text-align: center;
  font-family: Helvetica;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

@media (max-width: 767px) {
  .grow-your-game .title {
    font-size: 20px;
  }
}

.hero-section.out-partners {
  background: rgba(255, 255, 255, 0.05);
}

.developer-logo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  /*padding-top: 40px;*/
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.developer-logo-list .logo-item {
  width: 180px;
  height: 180px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.developer-logo-list .logo-item .logo-img {
  height: auto;
  width: 100%;
  padding: 12px 8px;
  display: flex;
  width: 180px;
  height: 180px;
  padding: 27px 19.8px 27.576px 19.8px;
  border-radius: 7.2px;
  background: rgba(255,255,255,0.1);
}

.developer-logo-list .col-logo .logo-item .logo-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

/* TXT PAGE */

.txt-page {
  color: rgba(255, 255, 255, 0.7);
}

.txt-page .title-page {
  color: white;
  font-size: 36px;
  line-height: 54px;
  font-weight: 800;
}

.txt-page .sub-heading {
  font-size: 24px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.7);
}

.txt-page .date {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.txt-page p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 20px;
}

