
.footer {
  background-color: var(--bg-default);
  display: flex;
  flex-direction: column;
  font-weight: 400;
  margin-top: 1rem;
}
.footer__link {
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 24px;
  overflow: hidden;
  text-decoration: none;
  text-overflow: ellipsis;
  text-wrap: nowrap;
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: var(--text-secondary-dark);
}
.footer__copyright {
  align-items: center;
  color: var(--text-secondary);
  display: flex;
  font-size: 1rem;
  justify-content: flex-start;
  margin-top: 1rem;
}
.faq {
  width: 100%;
}
.faq__title {
  color: var(--text-primary);
  font-size: 2rem;
  font-weight: 600;
}
.faq__content {
  font-size: 1.6rem;
}
.faq__question {
  color: var(--text-primary);
  font-size: 1.8rem;
}
.faq__answer {
  color: var(--text-link);
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
.faq__answer ol {
  margin: 1rem 0;
}
.faq__answer a {
  transition: color 0.3s;
}
.faq__answer a:hover {
  color: var(--text-link-hover);
}
.side-items {
  align-items: flex-end;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: fixed;
  right: 2rem;
  z-index: 1000;
}
.side-items__item {
  align-items: center;
  animation-duration: 1.5s;
  animation-iteration-count: 4;
  animation-name: animation-scroll-to-top;
  animation-timing-function: ease;
  background: var(--color-accent-inverse);
  border: 1px solid var(--color-accent);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  color: var(--color-accent);
  cursor: pointer;
  display: flex;
  font-family: Nunito, sans-serif;
  font-size: 1.8rem;
  height: 5rem;
  justify-content: center;
  min-width: 5rem;
  overflow: hidden;
  padding: 4px 8px;
  position: relative;
  transition: all 0.3s;
}
.side-items__item span {
  display: inline-block;
  margin-left: 0;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.4s ease, opacity 0.3s ease, margin-left 0.3s ease;
  white-space: nowrap;
}
@media (min-width: 64rem) {
  .side-items__item:hover {
    width: auto;
  }
  .side-items__item:hover span {
    margin-left: 0.5rem;
    max-width: 25rem;
    opacity: 1;
  }
}
.scroll-to-top {
  opacity: 0;
  visibility: hidden;
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.share-game {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  width: 100%;
}
.share-game__title {
  color: var(--text-primary);
  font-size: 2.6rem;
  text-align: center;
}
.share-game__social {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  justify-content: flex-start;
}
.share-game__social button {
  align-items: center;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  height: 6rem;
  justify-content: center;
  transition: box-shadow 0.3s, transform 0.3s;
  width: 6rem;
}
@media (max-width: 37.5rem) {
  .share-game__social button {
    height: 4rem;
    width: 4rem;
  }
}
.share-game__social button:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.2rem);
}
.share-game__social button svg {
  height: 100%;
  width: 100%;
}
.share-game__copy {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  width: 100%;
}
.share-game__copy input {
  background-color: var(--bg-section);
  border: 2px solid var(--text-secondary);
  border-radius: 0.5rem;
  color: var(--text-primary);
  font-family: Nunito, sans-serif;
  font-size: 1.6rem;
  height: 5rem;
  padding: 0.5rem;
  width: 100%;
}
@media (max-width: 37.5rem) {
  .share-game__copy input {
    font-size: 1.6rem;
    height: 3.5rem;
  }
}
.share-game__copy button {
  background-color: var(--color-accent);
  border: none;
  border-radius: 0.5rem;
  color: var(--text-light);
  cursor: pointer;
  font-family: Nunito, sans-serif;
  font-size: 1.6rem;
  height: 5rem;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s;
}
@media (max-width: 37.5rem) {
  .share-game__copy button {
    height: 3.5rem;
  }
}
.share-game__copy button:hover {
  background-color: var(--color-accent-dark);
}
.share-game-modal {
  align-items: center;
  background: var(--bg-default-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 20rem;
  padding: 1.5rem;
  position: relative;
}
@media (min-width: 37.5rem) {
  .share-game-modal {
    min-width: 50rem;
  }
}
@media (max-width: 37.5rem) {
  .share-game-modal {
    padding: 1rem;
  }
}
.share-game-modal__close {
  background-color: transparent;
  border: none;
  color: var(--btn-close-invert);
  cursor: pointer;
  font-size: 2rem;
  padding: 1rem;
  position: absolute;
  right: 0;
  top: 0;
  transition: color 0.3s;
}
.share-game-modal__close:hover {
  color: var(--btn-close);
}
.language-selector {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  position: relative;
}
.language-selector button {
  align-items: center;
  background: transparent;
  border: 2px solid var(--text-secondary-dark);
  border-radius: 0.8rem;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  font-family: Nunito, sans-serif;
  font-size: 1.6rem;
  height: 4rem;
  justify-content: space-between;
  transition-duration: 0.1s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  width: 18rem;
}
.language-selector button:hover {
  border-color: var(--text-primary);
}
.language-selector__item {
  align-items: center;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  font-size: 1.6rem;
  justify-content: flex-start;
  padding: 0.5rem 0 0.5rem 1.5rem;
  transition: background 0.3s ease;
}
.language-selector__item--active,
.language-selector__item:hover {
  background: var(--text-secondary-dark);
}
.language-selector__dropdown {
  background: var(--bg-default-light);
  border: 2px solid var(--text-secondary);
  border-radius: 0.8rem;
  bottom: 4.2rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 50rem;
  left: 0;
  overflow-y: auto;
  position: absolute;
  scrollbar-color: var(--scrollbar-thumb) transparent;
  scrollbar-width: thin;
  transition: background 0.3s ease;
  width: 18rem;
}
.list-section {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.list-section__list-header {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0.5rem;
}
.list-section__list-title {
  color: var(--text-primary);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin-right: 1rem;
}
.list-section__more {
  color: var(--color-accent);
  display: flex;
  font-size: 1.2rem;
  margin-left: auto;
  transition: color 0.3s ease;
}
.list-section__more:hover {
  color: var(--color-accent-dark);
}
.read_more__content {
  overflow: hidden;
  position: relative;
}
.read_more__collapsed:after {
  background: linear-gradient(180deg, rgba(19, 20, 30, 0) 0, var(--bg-section) 90%);
  bottom: 0;
  content: "";
  height: 3rem;
  left: 0;
  position: absolute;
  right: 0;
}
.read_more button {
  background: none;
  border: none;
  color: var(--text-secondary-dark);
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0;
  transition: color 0.3s ease;
}
.read_more button:hover {
  color: var(--text-secondary);
}
.pagination {
  flex-wrap: wrap;
  margin: 0.5rem 0;
}
.pagination,
.pagination__item {
  display: flex;
  justify-content: center;
}
.pagination__item {
  align-items: center;
  background-color: var(--color-accent-inverse);
  border-radius: 0.5rem;
  color: var(--color-accent);
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0.2rem 0.1rem;
  padding: 0.7rem 1rem;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.pagination__item--current-page {
  background-color: var(--color-accent);
  color: var(--color-accent-inverse);
  cursor: pointer;
  display: inline-block;
}
.pagination__item--disabled {
  display: none;
}
.pagination__item:focus,
.pagination__item:hover {
  background-color: var(--color-accent);
  color: var(--color-accent-inverse);
}
.tags {
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: start;
}
.tag,
.tags {
  display: flex;
}
.tag {
  align-items: center;
  background-color: var(--bg-default-light);
  border-radius: 1rem;
  color: var(--text-primary);
  height: 3.5rem;
  position: relative;
}
.tag:focus,
.tag:hover {
  outline: 2px solid var(--color-accent-dark);
}
.tag__container {
  margin: 0 1rem;
}
.tag__serial {
  background: var(--color-accent);
  border-radius: 0.3rem 0.3rem 0.3rem 1rem;
  color: var(--color-accent-inverse);
  font-size: 0.7rem;
  padding: 0.2rem 0.8rem;
  position: absolute;
  right: -2px;
  top: -5px;
}
.tag img {
  border-radius: 1rem;
  display: block;
  height: 3.5rem;
  width: 3.5rem;
}
.tag__count {
  color: var(--color-accent);
  font-weight: 700;
  text-align: center;
}
.recommended-tags {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.recommended-tags__title {
  align-items: flex-start;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  font-size: 2.2rem;
  justify-content: space-between;
}
.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-start;
}
.categories .category {
  align-items: center;
  background-color: var(--bg-default-light);
  border-radius: 1rem;
  color: var(--text-primary);
  display: flex;
  height: 3.5rem;
  position: relative;
}
.categories .category:focus,
.categories .category:hover {
  outline: 1px solid var(--color-accent-dark);
}
.categories .category__container {
  margin: 0 1rem;
}
.categories .category__count {
  color: var(--color-accent);
  font-weight: 700;
  text-align: center;
}
.breadcrumbs {
  align-self: start;
  color: var(--color-accent);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 1.4rem;
  list-style: none;
  margin: 1rem 0;
  padding-left: 1rem;
  width: 100%;
}
.breadcrumbs__item {
  display: inline-flex;
  text-align: center;
  transition: color 0.3s;
}
.breadcrumbs__item:not(:last-child):hover {
  color: var(--color-accent-dark);
}
.breadcrumbs__separator {
  align-items: center;
  display: flex;
  font-size: 0.7rem;
  justify-content: center;
  margin: 0 0.2rem;
}
.tabs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.tabs__navigation {
  align-items: center;
  border-bottom: 1px solid var(--border-divider);
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.tabs__nav-item {
  background-color: transparent;
  border: none;
  border-radius: 0.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  font: inherit;
  font-size: 1.8rem;
  padding: 0.5rem 1rem;
  transition-duration: 0.3s;
}
.tabs__nav-item:hover {
  background-color: transparent;
  color: var(--text-primary);
}
.tabs .active {
  color: var(--text-primary);
  position: relative;
}
.tabs .active:after {
  background-color: var(--color-accent);
  border-radius: 500px;
  bottom: 0;
  content: "";
  height: 0.3rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 95%;
}
.tabs__content-container {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}
.tabs__content {
  display: flex;
  width: 100%;
}
.ad-block-detect {
  background: var(--bg-default);
  border-radius: 1rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  color: var(--text-secondary-dark);
  display: none;
  left: 50%;
  max-width: 50rem;
  min-width: 30rem;
  padding: 2rem;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
.ad-block-detect.active {
  display: block;
}
.ad-block-detect__title {
  align-items: flex-start;
  display: flex;
  font-size: 20px;
  justify-content: space-between;
  padding-bottom: 0.7rem;
}
.ad-block-detect__close {
  background: none;
  border: none;
  color: var(--btn-close);
  cursor: pointer;
  font-size: 20px;
  right: 10px;
  top: 10px;
  transition: color 0.3s;
}
.ad-block-detect__close:hover {
  color: var(--btn-close-invert);
}
.ad-block-detect__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 1rem 0;
}
@media (min-width: 768px) {
  .ad-block-detect__content {
    flex-direction: row;
  }
}
.ad-block-detect__content-text {
  font-size: 16px;
  margin-left: 1rem;
}
.ad-block-detect__refresh {
  align-items: center;
  background: var(--color-primary);
  border: none;
  border-radius: 1rem;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 1.6rem;
  justify-content: center;
  margin: 1rem auto;
  min-width: 10rem;
  padding: 1rem 3rem;
  transition: background 0.3s;
}
@media (min-width: 768px) {
  .ad-block-detect__refresh {
    margin: 1rem 0 1rem auto;
  }
}
body:has(dialog[data-dialog-target="dialog"][open]) {
  overflow: hidden;
}
dialog {
  border: none;
  border-radius: 2rem;
  box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.5);
  padding: 0;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
dialog[data-dialog-target="dialog"][open] {
  animation: fade-in 0.2s forwards;
}
dialog[data-dialog-target="dialog"][closing] {
  animation: fade-out 0.2s forwards;
}
.live-results {
  align-items: center;
  background: var(--bg-section);
  border-radius: 1rem;
  color: var(--text-secondary);
  display: none;
  justify-content: center;
  left: 0;
  min-height: 16rem;
  padding: 1rem;
  position: absolute;
  top: 4.4rem;
  width: 100%;
  z-index: 1002;
}
.live-results__container {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 50vh;
  overflow-x: hidden;
  overflow-y: auto;
  padding-bottom: 3rem;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  scrollbar-width: thin;
  width: 100%;
}
@media (max-width: 37.5rem) {
  .live-results__container {
    max-height: calc(100vh - 6rem);
  }
}
.live-results__header {
  color: var(--text-primary);
}
.live-results__games {
  margin: 1rem 0;
}
.live-results__games .games-list {
  justify-content: center;
}
.live-results__more {
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  font-size: 1.6rem;
  justify-content: flex-end;
  margin-right: 1rem;
}
.live-results__empty {
  align-items: center;
  display: flex;
  font-size: 1.6rem;
  height: 100%;
  justify-content: center;
}
@font-face {
  font-family: swiper-icons;
  font-style: normal;
  font-weight: 400;
  src: url("data:application/font-woff;charset=utf-8;base64, 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");
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper {
  display: block;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0;
}
.swiper,
.swiper-wrapper {
  position: relative;
  z-index: 1;
}
.swiper-wrapper {
  box-sizing: content-box;
  display: flex;
  height: 100%;
  transform: translateZ(0);
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  width: 100%;
}
.swiper-slide {
  display: block;
  flex-shrink: 0;
  height: 100%;
  position: relative;
  transition-property: transform;
  width: 100%;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.games-swiper {
  height: 100%;
  padding: 0.5rem;
  position: relative;
  width: 100%;
}
@media (min-width: 64rem) {
  .games-swiper:hover .games-swiper__navigation {
    visibility: visible;
  }
}
.games-swiper__navigation {
  align-items: center;
  background: var(--slider-navigation) center no-repeat;
  border: none;
  border-radius: 0.2rem 0 0 0.2rem;
  display: flex;
  flex-direction: column;
  height: calc(100% - 0.6rem);
  justify-content: center;
  opacity: 0.75;
  position: absolute;
  top: 0.3rem;
  transition: opacity 0.25s ease;
  visibility: hidden;
  width: 40px;
  z-index: 10;
}
.games-swiper__navigation--disabled {
  display: none;
}
.games-swiper__navigation:hover {
  cursor: pointer;
  opacity: 0.9;
}
.games-swiper__navigation[data-direction="next"] {
  right: 0;
}
.games-swiper__navigation[data-direction="prev"] {
  left: 0;
}
.games-swiper__games-batch {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.games-swiper__slide {
  margin-right: 1.5rem;
  width: 140px;
}
.games-swiper__slide:last-child {
  margin-right: 0;
}
.badge {
  border-radius: 0.3rem 0.3rem 0.3rem 1rem;
  color: #fff;
  font-family: Nunito, sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  padding: 0.4rem 0.7rem;
  position: absolute;
  right: -5px;
  top: -2px;
  z-index: 2;
}
.badge--new {
  background: #16a34a;
}
.badge--hot {
  background: #e71b0d;
}
.badge--top {
  background: #e71b0d;
}
.badge--serial {
  background: red;
}
.game-skeleton {
  animation: skeleton-loading 2s infinite;
  aspect-ratio: 4/3;
  background: linear-gradient(
    100deg,
    var(--color-primary-medium) 25%,
    var(--color-primary-light) 50%,
    var(--color-primary-medium) 75%
  );
  background-size: 200% 100%;
  border-radius: 0.4rem;
  position: relative;
  width: 100%;
}
