@import url("/assets/css/icon_font.css");
:root {
  --footer: #181e26;
  --bg: #12181f;
  --bg-2: #29313a;
  --header-border: #29313a;
  --font-size: 0.875rem;
  --bg-3: #181e26;
  --color_theme: #f79236;
  --swiper-theme-color: #fff !important;
  --swiper-pagination-bottom: 0 !important;
  --swiper-pagination-bullet-inactive-color: #fff;
}

* {
  font-family: "Avenir", sans-serif;
  font-size: var(--font-size);
  outline: none !important;
  text-decoration: none !important;
  font-weight: 400;
}

.container {
  max-width: 900px !important;
}

.logo {
  width: 160px;
}
@media screen and (max-width: 450px) {
  .logo {
    width: 103px;
  }
}

body {
  background: var(--bg);
}

ul li,
ol li {
  color: #ccc;
}

@keyframes loaderBar {
  0% {
    width: 0%;
    opacity: 1;
  }
  80% {
    width: 90%;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}
@keyframes loaderSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
#page-loader.hidden {
  opacity: 0;
}
#page-loader__bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--color_theme);
  animation: loaderBar 0.6s ease forwards;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 8px var(--color_theme);
}
#page-loader__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--color_theme);
  border-radius: 50%;
  animation: loaderSpin 0.7s linear infinite;
  transform: translate(-50%, -50%);
}

img.lazy-img {
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
img.lazy-img.lazy-loaded {
  opacity: 1;
  transform: scale(1);
}

header {
  border-bottom: 1px solid var(--header-border);
  z-index: 15;
  position: sticky;
  background: var(--bg);
  top: 0;
}

.btn {
  border-radius: 0.25rem !important;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #4a61e9;
  --bs-btn-border-color: #4a61e9;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #334de6;
  --bs-btn-hover-border-color: #334de6;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #334de6;
  --bs-btn-active-border-color: #334de6;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #334de6;
  --bs-btn-disabled-border-color: #334de6;
}

.btn-warning {
  --bs-btn-color: #fff;
  --bs-btn-bg: #f79236;
  --bs-btn-border-color: #f79236;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #f6851d;
  --bs-btn-hover-border-color: #f6851d;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #f6851d;
  --bs-btn-active-border-color: #f6851d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #f6851d;
  --bs-btn-disabled-border-color: #f6851d;
}

.btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #c5315f;
  --bs-btn-border-color: #c5315f;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #b12c55;
  --bs-btn-hover-border-color: #b12c55;
  --bs-btn-focus-shadow-rgb: 220, 53, 69;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #b12c55;
  --bs-btn-active-border-color: #b12c55;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #c5315f;
  --bs-btn-disabled-border-color: #c5315f;
}

.broadcast {
  background: var(--bg-2);
}

.broadcast_content {
  padding: 0 5px;
}
.broadcast_content::after, .broadcast_content::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  height: 100%;
  z-index: 1;
}
.broadcast_content::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-2) 0, transparent);
}
.broadcast_content::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-2) 0, transparent);
}

.nav_scrolling::-webkit-scrollbar {
  display: none;
}
.nav_scrolling a {
  color: #fff;
}
.nav_scrolling a:hover {
  color: var(--color_theme);
}
.nav_scrolling a.active {
  color: var(--color_theme);
}

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

.carousel_badge {
  position: absolute;
  bottom: 0;
  display: flex;
  width: 100%;
  justify-content: center;
  z-index: 1;
}
.carousel_badge span {
  position: relative;
  color: #fff;
}
.carousel_badge img {
  bottom: 0;
  position: absolute;
  height: 1.5rem;
}

.border_custom {
  border: 2px solid var(--color_theme);
}

section.home--desktop {
  display: grid;
  grid-gap: 0.5rem;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.home_carousel {
  grid-column: 1/5;
  overflow: hidden;
  border-radius: 5px;
  width: 100%;
}

@keyframes carouselShimmer {
  0% {
    background-position: -800px 0;
  }
  100% {
    background-position: 800px 0;
  }
}
.carousel-skeleton {
  position: relative;
  width: 100%;
  aspect-ratio: 16/6;
  background: var(--bg-2);
  overflow: hidden;
  height: 100%;
  border-radius: inherit;
}
.carousel-skeleton::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-2) 20%, #3b4754 50%, var(--bg-2) 80%);
  background-size: 800px 100%;
  animation: carouselShimmer 1.4s ease-in-out infinite;
  z-index: 1;
  transition: opacity 0.4s ease;
}
.carousel-skeleton:has(img.swiper-lazy-loaded)::before {
  opacity: 0;
  pointer-events: none;
}
.carousel-skeleton img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.carousel-skeleton img.swiper-lazy-loaded {
  opacity: 1;
}

.idn_carousel {
  grid-row: span 2;
  grid-column: span 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
  --swiper-pagination-bottom: 1.5rem !important;
}
.idn_carousel img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.idn_carousel .idn-carousel__special {
  position: absolute;
  bottom: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.idn_carousel .idn-carousel__special img {
  height: 1.25rem;
}
.idn_carousel .idn-carousel__special span {
  position: absolute;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}

.breadcrumb ul::-webkit-scrollbar {
  display: none;
}
.breadcrumb ul a {
  color: #fff;
}
.breadcrumb ul a:hover {
  color: var(--color_theme);
}
.breadcrumb ul a.active {
  color: var(--color_theme);
}

.home__teaser {
  grid-column: 1/5;
  display: grid;
  grid-gap: 0.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.slot--d {
  display: grid;
  grid-gap: 1rem;
  margin-top: 0.5rem;
  align-items: start;
  margin-bottom: 1rem;
  grid-template-rows: unset;
  grid-template-columns: 1fr 5fr;
}

.games-nav--d {
  background-color: #29313a;
}

.games-nav--d__item {
  border-bottom: 1px solid #181e26;
}
.games-nav--d__item a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #fff;
}
.games-nav--d__item a:hover {
  background: #181e26;
}
.games-nav--d__item a img {
  width: 2rem;
  height: 2rem;
}
.games-nav--d__item a span {
  margin-left: 1rem;
  font-weight: 700;
}
.games-nav--d__item a.active {
  color: var(--color_theme);
}

.slot-content__header {
  background-color: #29313a;
  margin-bottom: 1rem;
}

.input--search input {
  color: #fff;
  padding-left: 2.5rem;
  padding-right: 2rem;
  height: 34px;
  border: 1px solid #3d4651;
  background-color: #12181f;
}
.input--search input:hover, .input--search input:focus {
  border-color: var(--color_theme);
}
.input--search i {
  left: 1rem;
  color: var(--color_theme);
}

.games-grid {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
}

footer {
  border-top: 1px solid rgba(213, 214, 213, 0.1019607843);
  background: var(--footer);
}

.search_bar_mobile .search_label img {
  width: 2rem;
  height: 2rem;
}

.grid-slots-menu {
  display: grid;
  flex-shrink: 0;
  align-content: start;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
.grid-slots-menu a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
}
.grid-slots-menu a span {
  font-size: 0.625rem;
  display: block;
  margin-top: 0.25rem;
  white-space: nowrap;
}
.grid-slots-menu a .icon {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #12181f;
  border-radius: 50%;
  border: 1px solid #12181f;
}
.grid-slots-menu a .icon img {
  width: 100%;
}
.grid-slots-menu a.active {
  color: var(--color_theme);
}
.grid-slots-menu a.active .icon {
  border-color: var(--color_theme);
}

.slider_mobile_menu {
  background: var(--bg-2);
}

.prev-button-custom {
  display: flex;
  align-items: center;
}
.prev-button-custom::before {
  left: 0;
  position: absolute;
  color: #12181f;
  font-size: 5rem;
  content: "\e929";
  z-index: 0;
  font-family: "idn";
}
.prev-button-custom .icon {
  position: relative;
  padding-left: 0.25rem;
}
.prev-button-custom .icon i {
  font-size: 1.5rem;
}

.next-button-custom {
  display: flex;
  align-items: center;
}
.next-button-custom::before {
  right: 0;
  position: absolute;
  color: #12181f;
  font-size: 5rem;
  content: "\e929";
  z-index: 0;
  font-family: "idn";
  transform: rotate(180deg);
}
.next-button-custom .icon {
  position: relative;
  padding-right: 0.25rem;
}
.next-button-custom .icon i {
  font-size: 1.5rem;
}

.btn-slider.swiper-button-disabled i {
  color: rgba(255, 255, 255, 0.3803921569);
}

.btn-slider i {
  color: var(--color_theme);
}

@keyframes cardShimmer {
  0% {
    background-position: -600px 0;
  }
  100% {
    background-position: 600px 0;
  }
}
.game-card {
  position: relative;
}
.game-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 0.4rem;
  overflow: hidden;
  background-color: var(--bg-2);
  cursor: pointer;
}
.game-card__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 0.4rem;
  background: linear-gradient(90deg, var(--bg-2) 20%, #3b4754 50%, var(--bg-2) 80%);
  background-size: 600px 100%;
  animation: cardShimmer 1.3s ease-in-out infinite;
  transition: opacity 0.35s ease;
}
.game-card__thumb.img-loaded::before {
  opacity: 0;
  pointer-events: none;
}
.game-card__thumb img:not(.game-card__provider img) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.4rem;
  display: block;
  z-index: 2;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.game-card__thumb img:not(.game-card__provider img).img-visible {
  opacity: 1;
  transform: scale(1);
}
.game-card__thumb:hover .game-card__overlay {
  opacity: 1;
}
.game-card__overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.4392156863);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
  z-index: 4;
  border-radius: 0.4rem;
}
.game-card button {
  font-size: 12px;
  position: relative;
  z-index: 5;
}
.game-card__flags {
  position: absolute;
  z-index: 3;
  top: 0.25rem;
  left: 0;
  right: 0;
  pointer-events: none;
}
.game-card__flags span {
  width: 100px;
  height: 1.25rem;
  margin-left: -4px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
}
.game-card__flags .badge-promo {
  background-image: url("https://cdn-proxy.globalcontentcloud.com/common/default/ribbons/game-promo.svg");
}
.game-card__flags .badge-new {
  background-image: url("https://cdn-proxy.globalcontentcloud.com/common/default/ribbons/game-new.svg");
}
.game-card__provider {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 4;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0.4rem 0 30px;
  filter: drop-shadow(0.1rem 0.1rem 0.1rem #12181f);
  background-color: rgba(41, 49, 58, 0.9);
}
.game-card__provider img {
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 25px;
}
.game-card__info {
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  padding-top: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.game-card__name {
  white-space: nowrap;
  font-size: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.games_list_mobile {
  display: grid;
  grid-gap: 0.75rem;
  grid-template-rows: minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sticky-footer__nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--bg);
  border-top: 1px solid #29313a;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.sticky-footer__nav ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
  height: 56px;
}
.sticky-footer__nav ul li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sticky-footer__nav .btn,
.sticky-footer__nav a,
.sticky-footer__nav button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.35rem 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  background: none;
  border: none;
  text-decoration: none;
  width: 100%;
  height: 100%;
  transition: color 0.2s ease;
}
.sticky-footer__nav .btn:hover, .sticky-footer__nav .btn.active,
.sticky-footer__nav a:hover,
.sticky-footer__nav a.active,
.sticky-footer__nav button:hover,
.sticky-footer__nav button.active {
  color: var(--color_theme);
}
.sticky-footer__nav .btn img,
.sticky-footer__nav a img,
.sticky-footer__nav button img {
  width: 2rem;
  height: 2rem;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.sticky-footer__nav .btn:hover img, .sticky-footer__nav .btn.active img,
.sticky-footer__nav a:hover img,
.sticky-footer__nav a.active img,
.sticky-footer__nav button:hover img,
.sticky-footer__nav button.active img {
  opacity: 1;
}
.sticky-footer__nav .btn span,
.sticky-footer__nav a span,
.sticky-footer__nav button span {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 991px) {
  body {
    padding-bottom: 60px;
  }
}
.no-results {
  width: 100%;
  grid-column: 1/-1;
  padding: 2.5rem 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  font-style: italic;
  background: var(--bg-2);
  border-radius: 0.5rem;
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.game-card__rtp {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
}
.game-card__rtp__bar {
  flex: 1;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.game-card__rtp__bar-fill {
  height: 100%;
  border-radius: 99px;
  background: #2ecc71;
  transition: width 0.6s ease, background-color 0.4s ease;
}
.game-card__rtp__value {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  color: #2ecc71;
}
.game-card__rtp.rtp--green .game-card__rtp__bar-fill {
  background-color: #2ecc71;
}
.game-card__rtp.rtp--yellow .game-card__rtp__bar-fill {
  background-color: #ffc107;
}
.game-card__rtp.rtp--red .game-card__rtp__bar-fill, .game-card__rtp.trend--down .game-card__rtp__bar-fill {
  background-color: #e74c3c;
}
.game-card__rtp.rtp--green .game-card__rtp__value {
  color: #2ecc71;
}
.game-card__rtp.rtp--yellow .game-card__rtp__value {
  color: #ffc107;
}
.game-card__rtp.rtp--red .game-card__rtp__value, .game-card__rtp.trend--down .game-card__rtp__value {
  color: #e74c3c;
}

.game-card__playing_count {
  position: absolute;
  bottom: 0.3rem;
  right: 0.3rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.25rem;
  padding: 0.1rem 0.3rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: rgba(255, 255, 255, 0.85);
}
.game-card__playing_count::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 15px;
  background: #2ecc71;
}
.game-card__playing_count span {
  font-size: 0.65rem;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.app-footer__partners {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(213, 214, 213, 0.1);
}
.app-footer__partners ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr));
}
.app-footer__partners h5 {
  color: var(--color_theme);
}
.app-footer__partners i {
  color: var(--color_theme);
  font-size: 2rem;
}
.app-footer__partners li {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.app-footer__partners span {
  font-size: 0.55rem;
  color: #fff;
}
.app-footer__copyright {
  color: #fff;
  text-align: center;
}

article {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(213, 214, 213, 0.1);
  margin-bottom: 2rem;
}
article p {
  color: #ccc;
}
article a {
  color: var(--color_theme);
}
article h1 {
  font-size: 1.5rem;
}
article h2,
article h3,
article h4,
article h5 {
  font-size: 1.25rem;
}
article h1,
article h2,
article h3,
article h4 {
  color: var(--color_theme);
}

@keyframes sheetUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes sheetDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}
@keyframes backdropIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(4px);
  }
}
@keyframes backdropOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rtpValFlash {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  30% {
    transform: scale(1.18);
    opacity: 0.8;
  }
  60% {
    transform: scale(0.95);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes contentFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-4px);
  }
}
@keyframes contentFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.content-updating {
  animation: contentFadeOut 0.18s ease forwards;
  pointer-events: none;
}

.content-updated {
  animation: contentFadeIn 0.28s ease both;
}

.rtp-val--flash {
  animation: rtpValFlash 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.contact-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 12;
}
.contact-modal.open {
  display: flex;
  justify-content: center;
}
.contact-modal.closing {
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.contact-modal.closing .contact-modal__backdrop {
  animation: backdropOut 0.25s ease forwards;
}
.contact-modal.closing .contact-modal__sheet {
  animation: sheetDown 0.28s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}
.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7215686275);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
  animation: backdropIn 0.25s ease forwards;
}
.contact-modal__sheet {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-width: 520px;
  background: var(--bg-2);
  border-radius: 1.25rem 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: sheetUp 0.32s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}
.contact-modal__sheet > div:last-child {
  padding: 1rem 1rem 5rem 1rem !important;
}
.contact-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-modal__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.contact-modal__body {
  padding: 1rem 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
}
.contact-btn:active {
  transform: scale(0.98);
}
.contact-btn__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-btn__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.contact-btn__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.contact-btn__label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}
.contact-btn__sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}
.contact-btn__arrow {
  width: 0.5rem;
  height: 0.875rem;
  color: rgba(255, 255, 255, 0.3);
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}
.contact-btn:hover .contact-btn__arrow {
  transform: translateX(3px);
  color: rgba(255, 255, 255, 0.7);
}
.contact-btn--wa {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.2);
}
.contact-btn--wa:hover {
  background: rgba(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.4);
}
.contact-btn--wa .contact-btn__icon {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}
.contact-btn--tg {
  background: rgba(0, 136, 204, 0.1);
  border-color: rgba(0, 136, 204, 0.2);
}
.contact-btn--tg:hover {
  background: rgba(0, 136, 204, 0.18);
  border-color: rgba(0, 136, 204, 0.4);
}
.contact-btn--tg .contact-btn__icon {
  background: rgba(0, 136, 204, 0.15);
  color: #0088cc;
}
.contact-btn--lc {
  background: rgba(247, 146, 54, 0.1);
  border-color: rgba(247, 146, 54, 0.2);
}
.contact-btn--lc:hover {
  background: rgba(247, 146, 54, 0.18);
  border-color: rgba(247, 146, 54, 0.4);
}
.contact-btn--lc .contact-btn__icon {
  background: rgba(247, 146, 54, 0.15);
  color: var(--color_theme);
}

.btn-contact-trigger {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  width: 100%;
  color: inherit;
}

.pola-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 12;
}
.pola-modal.open {
  display: flex;
  justify-content: center;
}
.pola-modal.closing {
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.pola-modal.closing .pola-modal__backdrop {
  animation: backdropOut 0.25s ease forwards;
}
.pola-modal.closing .pola-modal__sheet {
  animation: sheetDown 0.28s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}
.pola-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7215686275);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
  animation: backdropIn 0.25s ease forwards;
}
.pola-modal__sheet {
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 520px;
  max-height: 88dvh;
  background: var(--bg-2);
  border-radius: 1.25rem 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: sheetUp 0.32s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}
.pola-modal__header {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.pola-modal__game-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow: hidden;
}
.pola-modal__thumb {
  width: 48px;
  height: 64px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.4rem;
  flex-shrink: 0;
  background: var(--bg-2);
}
.pola-modal__provider {
  font-size: 1rem;
  color: var(--color_theme);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pola-modal__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
}
.pola-modal__close {
  background: rgba(255, 255, 255, 0.07);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.pola-modal__close svg {
  width: 13px;
  height: 13px;
}
.pola-modal__close:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.pola-modal__rtp-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}
.pola-modal__rtp-label {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.pola-modal__rtp-bar-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pola-modal__rtp-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
}
.pola-modal__rtp-fill {
  height: 100%;
  border-radius: 99px;
  transition: width 0.7s ease, background 0.4s ease;
}
.pola-modal__rtp-val {
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
  min-width: 36px;
  text-align: right;
}
.pola-modal__tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.pola-modal__tab {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.65rem 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.pola-modal__tab.active {
  color: var(--color_theme);
  border-bottom-color: var(--color_theme);
}
.pola-modal__tab:hover:not(.active) {
  color: rgba(255, 255, 255, 0.7);
}
.pola-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}
.pola-modal__body::-webkit-scrollbar {
  width: 4px;
}
.pola-modal__body::-webkit-scrollbar-track {
  background: transparent;
}
.pola-modal__body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}
.pola-modal__panel {
  display: none;
}
.pola-modal__panel.active {
  display: block;
  animation: tabFadeIn 0.5s ease both;
}

.modal-mobile .pola-modal__body {
  padding: 1rem 1rem 5rem 1rem;
}

.pola-phases {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.pola-fase {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  padding: 0.65rem 0.75rem;
}
.pola-fase__label {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.5rem;
}
.pola-fase__row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
}
.pola-fase__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.pola-fase__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}

.pola-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.65rem;
  border-radius: 0.4rem;
  width: 100%;
  text-align: center;
  letter-spacing: 0.02em;
}
.pola-badge.spin-sys--auto {
  background: rgba(74, 97, 233, 0.18);
  color: #7b93f5;
  border: 1px solid rgba(74, 97, 233, 0.3);
}
.pola-badge.spin-sys--manual {
  background: rgba(155, 89, 182, 0.18);
  color: #c39bd3;
  border: 1px solid rgba(155, 89, 182, 0.3);
}
.pola-badge.spin-count {
  background: rgba(247, 146, 54, 0.15);
  color: var(--color_theme);
  border: 1px solid rgba(247, 146, 54, 0.3);
  font-size: 0.85rem;
}
.pola-badge.spin-type--normal {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.pola-badge.spin-type--turbo {
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}
.pola-badge.spin-type--cepat {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.pola-tips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pola-tips li {
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--color_theme);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 0.6rem 0.75rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.pola-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
}
.pola-info-row span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem !important;
}
.pola-info-row strong {
  font-size: 1rem !important;
  color: #fff;
  font-weight: 700;
}

.text-green {
  color: #2ecc71 !important;
}

.text-yellow {
  color: #ffc107 !important;
}

.pola-note {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.75rem;
  line-height: 1.5;
  font-style: italic;
}

.footer-article {
  position: relative;
}
.footer-article__body {
  max-height: 5.6em;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-article__body.is-open {
  max-height: 600px;
}
.footer-article__fade {
  position: absolute;
  bottom: 2.4rem;
  left: 0;
  right: 0;
  height: 7.5em;
  background: linear-gradient(to bottom, transparent, var(--footer));
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.footer-article__fade.is-hidden {
  opacity: 0;
}
.footer-article__btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  margin-inline: auto;
  position: relative;
  padding: 0.4rem 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.footer-article__btn:hover {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.35);
}

.contact-modal__social {
  padding: 1rem 1rem 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-modal__social-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
}

.contact-modal__social-row {
  display: flex;
  gap: 0.6rem;
}

.contact-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.contact-social-btn svg {
  width: 1.1rem;
  height: 1.1rem;
}
.contact-social-btn:hover {
  transform: translateY(-2px);
}
.contact-social-btn--fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
}
.contact-social-btn--ig:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  border-color: #d6249f;
  color: #fff;
}
.contact-social-btn--tw:hover {
  background: #000;
  border-color: #333;
  color: #fff;
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes toastSlideOut {
  from {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  to {
    opacity: 0;
    transform: translateX(-50%) translateY(1rem);
  }
}
.no-contact-toast {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.no-contact-toast.show {
  opacity: 1;
  pointer-events: auto;
  animation: toastSlideIn 0.3s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}
.no-contact-toast.hiding {
  animation: toastSlideOut 0.25s ease forwards;
  pointer-events: none;
}
.no-contact-toast__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.1rem;
  background: var(--bg-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.85rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-width: 220px;
  max-width: 90vw;
}
.no-contact-toast__icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color_theme);
  flex-shrink: 0;
}
.no-contact-toast__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.no-contact-toast__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.no-contact-toast__sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}/*# sourceMappingURL=style.css.map */