.home-slider {
  margin-bottom: 0;
}
.home-slider .carousel__viewport {
  overflow: hidden;
}
.home-slider .carousel__slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.home-slider .carousel__slide img,
.home-slider .carousel__slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-slider--multi .carousel__slide a {
  border-radius: 12px;
  overflow: hidden;
}
.home-slider--multi .carousel__slide img,
.home-slider--multi .carousel__slide video {
  border-radius: 12px;
}
.home-slider--multi .carousel__prev,
.home-slider--multi .carousel__next {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(var(--card), 0.8);
  border: 1px solid rgba(var(--card-border), 1);
  color: rgba(var(--t), 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.home-slider--multi .carousel__prev svg,
.home-slider--multi .carousel__next svg {
  width: 14px;
  height: 14px;
}
.home-slider--multi .carousel__prev:hover,
.home-slider--multi .carousel__next:hover {
  background: rgba(var(--card), 1);
  color: rgba(var(--t), 1);
}
.homepage-games[data-v-ef9061b8] {
  padding: 0;
  margin: 0;
}
.games-horizontal[data-v-ef9061b8] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.game-card-horizontal[data-v-ef9061b8] {
  display: flex;
  background: rgba(var(--card), 1);
  border: 1px solid rgba(var(--card-border), 1);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 140px;
}
.game-card-horizontal[data-v-ef9061b8]:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    135deg,
    rgba(var(--primary), 0.1) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
.game-card-horizontal[data-v-ef9061b8]:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--t), 0.12);
}
.game-card-horizontal[data-v-ef9061b8]:hover:before {
  opacity: 1;
}
.game-card-horizontal:hover .cover-image[data-v-ef9061b8] {
  transform: scale(1.1);
}
.game-card-horizontal:hover .play-overlay[data-v-ef9061b8] {
  opacity: 1;
}
.mobile-view .game-card-horizontal[data-v-ef9061b8] {
  flex-direction: column;
  height: auto;
  border-radius: 10px;
  border: none;
  background: transparent;
}
.mobile-view .game-card-horizontal[data-v-ef9061b8]:before {
  display: none;
}
.mobile-view .game-card-horizontal[data-v-ef9061b8]:hover {
  transform: none;
  border: none;
}
.game-cover[data-v-ef9061b8] {
  position: relative;
  width: 110px;
  min-width: 110px;
  margin: 8px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(var(--b), 1);
  box-shadow: 0 2px 8px #0003;
}
.mobile-view .game-cover[data-v-ef9061b8] {
  width: auto;
  min-width: auto;
  margin: 0;
  aspect-ratio: 3/4;
  border-radius: 10px;
  box-shadow: none;
}
.cover-image[data-v-ef9061b8] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.play-overlay[data-v-ef9061b8] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 30%,
    rgba(0, 0, 0, 0.8) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.play-btn[data-v-ef9061b8] {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(var(--primary), 1),
    rgba(var(--primary), 0.8)
  );
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.play-btn svg[data-v-ef9061b8] {
  width: 20px;
  height: 20px;
  color: rgba(var(--primary-sc), 1);
  margin-left: 2px;
}
.play-btn[data-v-ef9061b8]:hover {
  transform: scale(1.1);
}
.play-btn[data-v-ef9061b8]:active {
  transform: scale(0.95);
}
.mobile-view .play-btn[data-v-ef9061b8] {
  width: 36px;
  height: 36px;
}
.mobile-view .play-btn svg[data-v-ef9061b8] {
  width: 14px;
  height: 14px;
}
.hot-badge[data-v-ef9061b8] {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, red, #c00);
  color: #fff;
  font-size: var(--fs-lg);
  padding: 4px 8px;
  border-radius: 8px;
  z-index: 3;
  animation: pulse-hot-ef9061b8 2s ease-in-out infinite;
  line-height: 1;
}
.mobile-view .hot-badge[data-v-ef9061b8] {
  top: 4px;
  right: 4px;
  font-size: var(--fs-sm);
  padding: 2px 5px;
  border-radius: 5px;
}
@keyframes pulse-hot-ef9061b8 {
  0%,
  to {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.game-info[data-v-ef9061b8] {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  position: relative;
  z-index: 2;
  gap: 10px;
}
.mobile-view .game-info[data-v-ef9061b8] {
  display: none;
}
.game-name[data-v-ef9061b8] {
  font-size: var(--fs-md);
  font-weight: 700;
  color: rgba(var(--t), 1);
}
.game-stats[data-v-ef9061b8] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stat[data-v-ef9061b8] {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-label[data-v-ef9061b8] {
  font-size: var(--fs-xs);
  color: rgba(var(--t), 0.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-value[data-v-ef9061b8] {
  font-size: var(--fs-xs);
  color: rgba(var(--primary), 1);
  font-weight: 700;
}
.stat-divider[data-v-ef9061b8] {
  width: 1px;
  height: 24px;
  background: rgba(var(--card-border), 1);
}
.play-now-btn[data-v-ef9061b8] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(
    135deg,
    rgba(var(--primary), 1),
    rgba(var(--primary), 0.9)
  );
  color: rgba(var(--primary-sc), 1);
  border: none;
  border-radius: 10px;
  font-size: var(--fs-md);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
.play-now-btn[data-v-ef9061b8]:hover {
  opacity: 0.9;
  background: linear-gradient(
    135deg,
    rgba(var(--primary), 1),
    rgba(var(--primary), 1)
  );
}
.play-now-btn[data-v-ef9061b8]:active {
  transform: scale(0.98);
}
.games-empty[data-v-ef9061b8] {
  text-align: center;
  padding: 60px 20px;
}
.games-empty p[data-v-ef9061b8] {
  font-size: var(--fs-base);
  color: rgba(var(--t), 0.5);
  font-weight: 600;
  margin: 0;
}
.yt-grid[data-v-9a889452] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.yt-card[data-v-9a889452] {
  display: flex;
  flex-direction: column;
  background: rgba(var(--card), 1);
  border: 1px solid rgba(var(--card-border), 1);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s ease;
  text-decoration: none;
}
.yt-card[data-v-9a889452]:hover {
  border-color: rgba(var(--t), 0.12);
  box-shadow: 0 4px 12px #00000026;
}
.yt-card:hover .yt-card__play[data-v-9a889452] {
  opacity: 1;
}
.yt-card:hover .yt-card__thumb img[data-v-9a889452] {
  transform: scale(1.03);
}
.yt-card__thumb[data-v-9a889452] {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: rgba(var(--b), 1);
}
.yt-card__thumb img[data-v-9a889452] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.yt-card__thumb[data-v-9a889452]:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(
    to top,
    rgba(var(--card), 1) 0%,
    transparent 100%
  );
  pointer-events: none;
}
.yt-card__play[data-v-9a889452] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0000004d;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1;
}
.yt-card__play svg[data-v-9a889452] {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}
.yt-card__date[data-v-9a889452] {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: #000000a6;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 9px;
  color: #fffc;
  font-weight: 600;
  z-index: 1;
}
.yt-card__info[data-v-9a889452] {
  padding: 8px;
}
.yt-card__info h3[data-v-9a889452] {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(var(--t), 0.8);
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .yt-grid[data-v-9a889452] {
    grid-template-columns: repeat(3, 1fr);
  }
}
.mobile-view .yt-grid[data-v-9a889452] {
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.mobile-view .yt-card__play svg[data-v-9a889452] {
  width: 22px;
  height: 22px;
}
.mobile-view .yt-card__info[data-v-9a889452] {
  padding: 6px;
}
.ig[data-v-71f72942] {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.ig__stage[data-v-71f72942] {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 600px;
}
.ig__card[data-v-71f72942] {
  position: absolute;
  width: 52%;
  max-width: 200px;
  aspect-ratio: 9/14;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  backface-visibility: hidden;
  will-change: transform, opacity;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.15, 1),
    opacity 0.5s cubic-bezier(0.4, 0, 0.15, 1),
    filter 0.5s cubic-bezier(0.4, 0, 0.15, 1),
    box-shadow 0.5s cubic-bezier(0.4, 0, 0.15, 1);
}
.ig__card img[data-v-71f72942] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ig__card--active[data-v-71f72942] {
  transform: translate(0) scale(1);
  opacity: 1;
  z-index: 5;
  border: 1px solid rgba(var(--primary), 0.15);
  box-shadow: 0 6px 24px #00000059;
}
.ig__card--active[data-v-71f72942]:hover {
  box-shadow: 0 10px 32px #00000073;
}
.ig__card--prev[data-v-71f72942] {
  transform: translate(-42%) scale(0.78) rotateY(4deg);
  opacity: 0.45;
  z-index: 3;
  filter: blur(1px) brightness(0.7);
  border: 1px solid rgba(var(--card-border), 0.15);
}
.ig__card--next[data-v-71f72942] {
  transform: translate(42%) scale(0.78) rotateY(-4deg);
  opacity: 0.45;
  z-index: 3;
  filter: blur(1px) brightness(0.7);
  border: 1px solid rgba(var(--card-border), 0.15);
}
.ig__card--far-prev[data-v-71f72942] {
  transform: translate(-70%) scale(0.6) rotateY(6deg);
  opacity: 0.15;
  z-index: 1;
  filter: blur(2px) brightness(0.5);
  border: 1px solid transparent;
}
.ig__card--far-next[data-v-71f72942] {
  transform: translate(70%) scale(0.6) rotateY(-6deg);
  opacity: 0.15;
  z-index: 1;
  filter: blur(2px) brightness(0.5);
  border: 1px solid transparent;
}
.ig__card--hidden[data-v-71f72942] {
  transform: translate(0) scale(0.5);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}
.ig__card-overlay[data-v-71f72942] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.1) 35%,
    transparent 60%
  );
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.ig__card-info[data-v-71f72942] {
  width: 100%;
}
.ig__card-info p[data-v-71f72942] {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: #fff;
  margin: 0 0 2px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ig__card-info span[data-v-71f72942] {
  font-size: 9px;
  color: #fff6;
  font-weight: 500;
}
.mobile-view .ig__stage[data-v-71f72942] {
  min-height: 340px;
}
.mobile-view .ig__card[data-v-71f72942] {
  width: 48%;
  max-width: 160px;
  border-radius: 10px;
}
.ev[data-v-f9b286eb] {
  margin: 0;
}
@keyframes evPulse-f9b286eb {
  0%,
  to {
    border-color: rgba(var(--primary), 0.15);
    box-shadow: 0 0 rgba(var(--primary), 0);
  }
  50% {
    border-color: rgba(var(--primary), 0.5);
    box-shadow: 0 0 12px rgba(var(--primary), 0.15);
  }
}
.ev-grid[data-v-f9b286eb] {
  display: grid;
  gap: 8px;
}
.ev-grid--1[data-v-f9b286eb] {
  grid-template-columns: 1fr;
}
.ev-grid--2[data-v-f9b286eb] {
  grid-template-columns: repeat(2, 1fr);
}
.ev-grid--3[data-v-f9b286eb] {
  grid-template-columns: repeat(3, 1fr);
}
.ev-grid--4[data-v-f9b286eb] {
  grid-template-columns: repeat(4, 1fr);
}
.ev-card[data-v-f9b286eb] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 12px;
  background: rgba(var(--card), 1);
  border: 1px solid rgba(var(--card-border), 1);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  text-align: center;
}
.ev-card[data-v-f9b286eb]:hover {
  border-color: rgba(var(--t), 0.12);
  box-shadow: 0 4px 16px #00000026;
}
.ev-card:hover .ev-card__cta[data-v-f9b286eb] {
  background: rgba(var(--primary), 0.12);
  color: rgba(var(--primary), 1);
}
.ev-card:hover .ev-card__cta svg[data-v-f9b286eb] {
  fill: rgba(var(--primary), 1);
}
.ev-card--pulse[data-v-f9b286eb] {
  animation: evPulse-f9b286eb 2.5s ease-in-out infinite;
}
.ev-card__top[data-v-f9b286eb] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}
.ev-card__logo[data-v-f9b286eb] {
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ev-card__logo img[data-v-f9b286eb] {
  max-height: 22px;
  max-width: 90px;
  object-fit: contain;
}
.ev-card__joined[data-v-f9b286eb] {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(var(--primary), 0.1);
  color: rgba(var(--primary), 1);
}
.ev-card__title[data-v-f9b286eb] {
  font-size: var(--fs-md);
  font-weight: 700;
  color: rgba(var(--t), 0.85);
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
}
.ev-card__award[data-v-f9b286eb] {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.ev-card__award b[data-v-f9b286eb] {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: rgba(var(--primary), 1);
}
.ev-card__award span[data-v-f9b286eb] {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(var(--t), 0.4);
}
.ev-card__timer[data-v-f9b286eb] {
  display: flex;
  align-items: center;
  gap: 4px;
}
.ev-card__time[data-v-f9b286eb] {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 28px;
  padding: 4px 2px;
  background: rgba(var(--t), 0.04);
  border-radius: 6px;
}
.ev-card__time b[data-v-f9b286eb] {
  font-size: var(--fs-md);
  font-weight: 800;
  color: rgba(var(--t), 0.9);
  line-height: 1;
}
.ev-card__time span[data-v-f9b286eb] {
  font-size: 8px;
  font-weight: 600;
  color: rgba(var(--t), 0.3);
  text-transform: uppercase;
}
.ev-card__sep[data-v-f9b286eb] {
  font-size: var(--fs-sm);
  color: rgba(var(--t), 0.15);
  font-weight: 700;
}
.ev-card__cta[data-v-f9b286eb] {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  border-radius: 6px;
  background: rgba(var(--t), 0.04);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: rgba(var(--t), 0.5);
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
  justify-content: center;
}
.ev-card__cta svg[data-v-f9b286eb] {
  width: 14px;
  height: 14px;
  fill: rgba(var(--t), 0.3);
  transition: fill 0.2s ease;
}
.ev-grid--1 .ev-card[data-v-f9b286eb] {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px 16px;
  padding: 14px 18px;
  text-align: left;
  align-items: center;
}
.ev-grid--1 .ev-card .ev-card__top[data-v-f9b286eb] {
  width: auto;
}
.ev-grid--1 .ev-card .ev-card__title[data-v-f9b286eb] {
  width: auto;
  flex: 1;
  min-width: 120px;
  -webkit-line-clamp: 1;
}
.ev-grid--1 .ev-card .ev-card__award b[data-v-f9b286eb] {
  font-size: var(--fs-2xl);
}
.ev-grid--1 .ev-card .ev-card__cta[data-v-f9b286eb] {
  width: auto;
  margin-left: auto;
}
.ev-grid--2 .ev-card[data-v-f9b286eb] {
  padding: 16px 14px;
}
.ev-grid--2 .ev-card .ev-card__award b[data-v-f9b286eb] {
  font-size: var(--fs-xl);
}
@media (max-width: 1024px) {
  .ev-grid--3[data-v-f9b286eb],
  .ev-grid--4[data-v-f9b286eb] {
    grid-template-columns: repeat(2, 1fr);
  }
}
.mobile-view .ev-grid--3[data-v-f9b286eb],
.mobile-view .ev-grid--4[data-v-f9b286eb] {
  grid-template-columns: repeat(2, 1fr);
}
.mobile-view .ev-grid--1 .ev-card[data-v-f9b286eb] {
  flex-direction: column;
  text-align: center;
}
.mobile-view .ev-grid--1 .ev-card .ev-card__cta[data-v-f9b286eb] {
  width: 100%;
  margin-left: 0;
}
.mobile-view .ev-card[data-v-f9b286eb] {
  padding: 12px 10px;
  gap: 8px;
}
.mobile-view .ev-card__award b[data-v-f9b286eb] {
  font-size: var(--fs-lg);
}
.mobile-view .ev-card__time[data-v-f9b286eb] {
  min-width: 24px;
}
.mobile-view .ev-card__time b[data-v-f9b286eb] {
  font-size: var(--fs-sm);
}
.mobile-view .ev-card__cta[data-v-f9b286eb] {
  padding: 5px 10px;
}
.tk[data-v-788b4bdd] {
  margin: 0;
}
@keyframes tkPulse-788b4bdd {
  0%,
  to {
    border-color: rgba(var(--primary), 0.15);
    box-shadow: 0 0 rgba(var(--primary), 0);
  }
  50% {
    border-color: rgba(var(--primary), 0.5);
    box-shadow: 0 0 12px rgba(var(--primary), 0.15);
  }
}
.tk-grid[data-v-788b4bdd] {
  display: grid;
  gap: 8px;
}
.tk-grid--1[data-v-788b4bdd] {
  grid-template-columns: 1fr;
}
.tk-grid--2[data-v-788b4bdd] {
  grid-template-columns: repeat(2, 1fr);
}
.tk-grid--3[data-v-788b4bdd] {
  grid-template-columns: repeat(3, 1fr);
}
.tk-grid--4[data-v-788b4bdd] {
  grid-template-columns: repeat(4, 1fr);
}
.tk-card[data-v-788b4bdd] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 12px;
  background: rgba(var(--card), 1);
  border: 1px solid rgba(var(--card-border), 1);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  text-align: center;
}
.tk-card--pulse[data-v-788b4bdd] {
  animation: tkPulse-788b4bdd 2.5s ease-in-out infinite;
}
.tk-card[data-v-788b4bdd]:hover {
  border-color: rgba(var(--t), 0.12);
  box-shadow: 0 4px 16px #00000026;
}
.tk-card:hover .tk-card__cta[data-v-788b4bdd] {
  background: rgba(var(--primary), 0.12);
  color: rgba(var(--primary), 1);
}
.tk-card:hover .tk-card__cta svg[data-v-788b4bdd] {
  fill: rgba(var(--primary), 1);
}
.tk-card__top[data-v-788b4bdd] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}
.tk-card__logo[data-v-788b4bdd] {
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tk-card__logo img[data-v-788b4bdd] {
  max-height: 22px;
  max-width: 90px;
  object-fit: contain;
}
.tk-card__joined[data-v-788b4bdd] {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(var(--primary), 0.1);
  color: rgba(var(--primary), 1);
}
.tk-card__title[data-v-788b4bdd] {
  font-size: var(--fs-md);
  font-weight: 700;
  color: rgba(var(--t), 0.85);
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
}
.tk-card__award[data-v-788b4bdd] {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.tk-card__award b[data-v-788b4bdd] {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: rgba(var(--primary), 1);
}
.tk-card__award span[data-v-788b4bdd] {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(var(--t), 0.4);
}
.tk-card__timer[data-v-788b4bdd] {
  display: flex;
  align-items: center;
  gap: 4px;
}
.tk-card__time[data-v-788b4bdd] {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 28px;
  padding: 4px 2px;
  background: rgba(var(--t), 0.04);
  border-radius: 6px;
}
.tk-card__time b[data-v-788b4bdd] {
  font-size: var(--fs-md);
  font-weight: 800;
  color: rgba(var(--t), 0.9);
  line-height: 1;
}
.tk-card__time span[data-v-788b4bdd] {
  font-size: 8px;
  font-weight: 600;
  color: rgba(var(--t), 0.3);
  text-transform: uppercase;
}
.tk-card__sep[data-v-788b4bdd] {
  font-size: var(--fs-sm);
  color: rgba(var(--t), 0.15);
  font-weight: 700;
}
.tk-card__cta[data-v-788b4bdd] {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  border-radius: 6px;
  background: rgba(var(--t), 0.04);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(var(--t), 0.5);
  transition: all 0.2s ease;
  width: 100%;
  justify-content: center;
}
.tk-card__cta svg[data-v-788b4bdd] {
  width: 14px;
  height: 14px;
  fill: rgba(var(--t), 0.3);
  transition: fill 0.2s ease;
}
.tk-grid--1 .tk-card[data-v-788b4bdd] {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px 16px;
  padding: 14px 18px;
  text-align: left;
  align-items: center;
}
.tk-grid--1 .tk-card .tk-card__top[data-v-788b4bdd] {
  width: auto;
}
.tk-grid--1 .tk-card .tk-card__title[data-v-788b4bdd] {
  width: auto;
  flex: 1;
  min-width: 120px;
  -webkit-line-clamp: 1;
}
.tk-grid--1 .tk-card .tk-card__award b[data-v-788b4bdd] {
  font-size: var(--fs-2xl);
}
.tk-grid--1 .tk-card .tk-card__cta[data-v-788b4bdd] {
  width: auto;
  margin-left: auto;
}
.tk-grid--2 .tk-card[data-v-788b4bdd] {
  padding: 16px 14px;
}
.tk-grid--2 .tk-card .tk-card__award b[data-v-788b4bdd] {
  font-size: var(--fs-xl);
}
@media (max-width: 1024px) {
  .tk-grid--3[data-v-788b4bdd],
  .tk-grid--4[data-v-788b4bdd] {
    grid-template-columns: repeat(2, 1fr);
  }
}
.mobile-view .tk-grid--3[data-v-788b4bdd],
.mobile-view .tk-grid--4[data-v-788b4bdd] {
  grid-template-columns: repeat(2, 1fr);
}
.mobile-view .tk-grid--1 .tk-card[data-v-788b4bdd] {
  flex-direction: column;
  text-align: center;
}
.mobile-view .tk-grid--1 .tk-card .tk-card__cta[data-v-788b4bdd] {
  width: 100%;
  margin-left: 0;
}
.mobile-view .tk-card[data-v-788b4bdd] {
  padding: 12px 10px;
  gap: 8px;
}
.mobile-view .tk-card__award b[data-v-788b4bdd] {
  font-size: var(--fs-lg);
}
.mobile-view .tk-card__time[data-v-788b4bdd] {
  min-width: 24px;
}
.mobile-view .tk-card__time b[data-v-788b4bdd] {
  font-size: var(--fs-sm);
}
.mobile-view .tk-card__cta[data-v-788b4bdd] {
  padding: 5px 10px;
}
.qa[data-v-a834236b] {
  display: flex;
  gap: 8px;
  margin: 0;
}
.qa__card[data-v-a834236b] {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(var(--card), 1);
  border: 1px solid rgba(var(--card-border), 1);
  border-radius: 10px;
  transition: all 0.2s ease;
}
.qa__card[data-v-a834236b]:hover {
  border-color: rgba(var(--t), 0.12);
  box-shadow: 0 2px 12px #0000001f;
}
.qa__left[data-v-a834236b] {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.qa__lottie[data-v-a834236b] {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qa__lottie--coin img[data-v-a834236b] {
  width: 36px !important;
  height: 36px !important;
}
.qa__text[data-v-a834236b] {
  min-width: 0;
}
.qa__text b[data-v-a834236b] {
  display: block;
  font-size: var(--fs-md);
  font-weight: 700;
  color: rgba(var(--t), 0.9);
  line-height: 1.2;
}
.qa__text span[data-v-a834236b] {
  display: block;
  font-size: var(--fs-sm);
  color: rgba(var(--t), 0.35);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.qa__btn[data-v-a834236b] {
  flex-shrink: 0;
  height: 34px !important;
  padding: 0 14px !important;
  font-size: var(--fs-sm) !important;
  font-weight: 700 !important;
  min-width: auto;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .qa__lottie[data-v-a834236b] {
    width: 40px;
    height: 40px;
  }
  .qa__text span[data-v-a834236b] {
    display: none;
  }
  .qa__btn[data-v-a834236b] {
    padding: 0 10px !important;
  }
}
@media (max-width: 1024px) {
  .qa__card[data-v-a834236b] {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
  }
  .qa__left[data-v-a834236b] {
    flex-direction: column;
    gap: 4px;
  }
  .qa__btn[data-v-a834236b] {
    width: 100%;
    height: 30px !important;
  }
}
.mobile-view .qa[data-v-a834236b] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.mobile-view .qa__card[data-v-a834236b] {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 8px;
  gap: 6px;
  border-radius: 12px;
}
.mobile-view .qa__left[data-v-a834236b] {
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.mobile-view .qa__lottie[data-v-a834236b] {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(var(--primary), 0.06);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-view .qa__text b[data-v-a834236b] {
  font-size: var(--fs-sm);
  font-weight: 700;
}
.mobile-view .qa__text span[data-v-a834236b] {
  display: block;
  font-size: 9px;
  color: rgba(var(--t), 0.3);
  line-height: 1.2;
}
.mobile-view .qa__btn[data-v-a834236b] {
  width: 100%;
  height: 28px !important;
  padding: 0 8px !important;
  font-size: 10px !important;
  border-radius: 8px;
}
.steps[data-v-bfd120bf] {
  margin: 0;
}
.steps__track[data-v-bfd120bf] {
  display: flex;
  align-items: flex-start;
}
.steps__item[data-v-bfd120bf] {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  gap: 8px;
  padding: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.steps__item:hover .steps__dot[data-v-bfd120bf] {
  transform: scale(1.1);
}
.steps__item:hover .steps__content b[data-v-bfd120bf] {
  color: rgba(var(--t), 1);
}
.steps__dot[data-v-bfd120bf] {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.2s ease;
  z-index: 2;
}
.steps__dot svg[data-v-bfd120bf] {
  width: 20px;
  height: 20px;
}
.steps__dot--green[data-v-bfd120bf] {
  background: #3a1a1a;
  border: 2px solid rgba(var(--primary), 0.3);
}
.steps__dot--green svg[data-v-bfd120bf] {
  fill: rgba(var(--primary), 1);
}
.steps__dot--blue[data-v-bfd120bf] {
  background: #1a2640;
  border: 2px solid rgba(59, 130, 246, 0.3);
}
.steps__dot--blue svg[data-v-bfd120bf] {
  fill: #3b82f6;
}
.steps__dot--purple[data-v-bfd120bf] {
  background: #271a40;
  border: 2px solid rgba(139, 92, 246, 0.3);
}
.steps__dot--purple svg[data-v-bfd120bf] {
  fill: #8b5cf6;
}
.steps__dot--red[data-v-bfd120bf] {
  background: #3a1a1a;
  border: 2px solid rgba(239, 68, 68, 0.3);
}
.steps__dot--red svg[data-v-bfd120bf] {
  fill: #ef4444;
}
.steps__content[data-v-bfd120bf] {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.steps__content b[data-v-bfd120bf] {
  font-size: var(--fs-md);
  font-weight: 700;
  color: rgba(var(--t), 0.8);
  transition: color 0.2s ease;
}
.steps__num[data-v-bfd120bf] {
  font-size: 9px;
  font-weight: 700;
  color: rgba(var(--t), 0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.steps__desc[data-v-bfd120bf] {
  font-size: var(--fs-sm);
  color: rgba(var(--t), 0.3);
  font-weight: 500;
}
.steps__line[data-v-bfd120bf] {
  flex-shrink: 0;
  height: 2px;
  flex: 0 1 40px;
  background: linear-gradient(
    90deg,
    rgba(var(--t), 0.08),
    rgba(var(--t), 0.04)
  );
  margin-top: 22px;
  border-radius: 2px;
}
.mobile-view .steps__dot[data-v-bfd120bf] {
  width: 34px;
  height: 34px;
}
.mobile-view .steps__dot svg[data-v-bfd120bf] {
  width: 15px;
  height: 15px;
}
.mobile-view .steps__line[data-v-bfd120bf] {
  flex: 0 1 16px;
}
.mobile-view .steps__desc[data-v-bfd120bf] {
  display: none;
}
.mobile-view .steps__content b[data-v-bfd120bf] {
  font-size: var(--fs-sm);
}
.mobile-view .steps__num[data-v-bfd120bf] {
  font-size: 8px;
}
.sr[data-v-289a6ef7] {
  margin: 0;
}
.sr__grid[data-v-289a6ef7] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.sr__card[data-v-289a6ef7] {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(var(--card), 1);
  border: 1px solid rgba(var(--card-border), 1);
  border-radius: 10px;
  transition: all 0.2s ease;
}
.sr__card[data-v-289a6ef7]:hover {
  border-color: rgba(var(--t), 0.1);
  box-shadow: 0 2px 10px #0000001a;
}
.sr__icon[data-v-289a6ef7] {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sr__icon svg[data-v-289a6ef7] {
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
}
.sr__info[data-v-289a6ef7] {
  flex: 1;
  min-width: 0;
}
.sr__info b[data-v-289a6ef7] {
  display: block;
  font-size: var(--fs-md);
  font-weight: 700;
  color: rgba(var(--t), 0.9);
  line-height: 1.2;
}
.sr__info > span[data-v-289a6ef7] {
  display: block;
  font-size: var(--fs-sm);
  color: rgba(var(--t), 0.35);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sr__info .sr__coin[data-v-289a6ef7] {
  color: rgba(var(--primary), 1);
  font-weight: 700;
  font-size: var(--fs-sm);
}
.sr__btn[data-v-289a6ef7] {
  flex-shrink: 0;
  height: 32px;
  padding: 0 16px;
  border-radius: 8px;
  background: rgba(var(--primary), 1);
  color: rgba(var(--primary-sc), 1);
  font-size: var(--fs-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.sr__btn[data-v-289a6ef7]:hover {
  opacity: 0.85;
}
.sr__btn.disabled[data-v-289a6ef7] {
  opacity: 0.5;
  pointer-events: none;
}
.sr__done[data-v-289a6ef7] {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(var(--primary), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sr__done svg[data-v-289a6ef7] {
  width: 16px;
  height: 16px;
  fill: rgba(var(--primary), 1);
}
@media (max-width: 1024px) {
  .sr__grid[data-v-289a6ef7] {
    grid-template-columns: repeat(2, 1fr);
  }
}
.mobile-view .sr__grid[data-v-289a6ef7] {
  grid-template-columns: 1fr;
}
.mobile-view .sr__card[data-v-289a6ef7] {
  padding: 10px 12px;
  gap: 10px;
}
.mobile-view .sr__icon[data-v-289a6ef7] {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.mobile-view .sr__icon svg[data-v-289a6ef7] {
  width: 16px !important;
  height: 16px !important;
}
.mobile-view .sr__info > span[data-v-289a6ef7] {
  display: none;
}
.mobile-view .sr__btn[data-v-289a6ef7] {
  height: 28px;
  padding: 0 12px;
  font-size: 10px;
}
.mobile-view .sr__done[data-v-289a6ef7] {
  width: 28px;
  height: 28px;
}
.custom-section[data-v-c5568bcf] {
  width: 100%;
}
.qn {
  display: flex;
  background: rgba(var(--card), 1);
  border: 1px solid rgba(var(--card-border), 1);
  border-radius: 10px;
  overflow: hidden;
  margin: 0;
}
.qn__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 4px;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  min-width: 0;
}
.qn__item svg {
  width: 18px !important;
  height: 18px !important;
  fill: rgba(var(--t), 0.6) !important;
  margin: 0 !important;
  transition: fill 0.2s ease;
  flex-shrink: 0;
}
.qn__item span {
  font-size: var(--fs-md);
  font-weight: 600;
  color: rgba(var(--t), 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  transition: color 0.2s ease;
}
.qn__item:hover {
  background: rgba(var(--t), 0.04);
}
.qn__item:hover svg {
  fill: rgba(var(--t), 0.9) !important;
}
.qn__item:hover span {
  color: rgba(var(--t), 0.8);
}
.qn__item.router-link-active {
  background: rgba(var(--primary), 0.06);
}
.qn__item.router-link-active svg {
  fill: rgba(var(--primary), 1) !important;
}
.qn__item.router-link-active span {
  color: rgba(var(--primary), 1);
}
.qn__item + .qn__item {
  border-left: 1px solid rgba(var(--t), 0.04);
}
@media (max-width: 1200px) {
  .qn__item {
    padding: 10px 2px;
  }
  .qn__item span {
    font-size: var(--fs-sm);
  }
}
@media (max-width: 900px) {
  .qn {
    flex-wrap: wrap;
  }
  .qn__item {
    flex: 0 0 16.6666666667%;
    padding: 10px 2px;
    border-left: none !important;
    border-bottom: 1px solid rgba(var(--t), 0.04);
  }
  .qn__item:nth-last-child(-n + 6) {
    border-bottom: none;
  }
  .qn__item:not(:nth-child(6n)) {
    border-right: 1px solid rgba(var(--t), 0.04);
  }
}
.mobile-view .qn {
  flex-wrap: wrap;
}
.mobile-view .qn .qn__item {
  flex: 0 0 25%;
  padding: 10px 4px;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 1px solid rgba(var(--t), 0.04);
}
.mobile-view .qn .qn__item:nth-last-child(-n + 4) {
  border-bottom: none;
}
.mobile-view .qn .qn__item:not(:nth-child(4n)) {
  border-right: 1px solid rgba(var(--t), 0.04);
}
.mobile-view .qn .qn__item svg {
  width: 16px !important;
  height: 16px !important;
}
.mobile-view .qn .qn__item span {
  font-size: var(--fs-sm);
}
.recent-winners[data-v-8cdd0900] {
  overflow: hidden;
}
.winners-ticker[data-v-8cdd0900] {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 4%,
    black 96%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 4%,
    black 96%,
    transparent 100%
  );
}
.winners-track[data-v-8cdd0900] {
  display: flex;
  gap: 10px;
  animation: scroll-left-8cdd0900 var(--duration, 60s) linear infinite;
  animation-duration: var(--afce2284);
  width: max-content;
  padding: 6px 0;
}
.winners-track[data-v-8cdd0900]:hover {
  animation-play-state: paused;
}
@keyframes scroll-left-8cdd0900 {
  0% {
    transform: translate(0);
  }
  to {
    transform: translate(-50%);
  }
}
.winner-card[data-v-8cdd0900] {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 250px;
  padding: 10px 18px 10px 10px;
  background: rgba(var(--card), 1);
  border: 1px solid rgba(var(--card-border), 1);
  border-radius: 14px;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.winner-card[data-v-8cdd0900]:hover {
  border-color: rgba(var(--t), 0.12);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px #00000040;
}
.winner-card:hover .winner-card__bg[data-v-8cdd0900] {
  opacity: 0.3;
}
.winner-card:hover .winner-cover img[data-v-8cdd0900] {
  transform: scale(1.08);
}
.winner-card__bg[data-v-8cdd0900] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.2;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: inherit;
}
.winner-card--blackjack .winner-card__bg[data-v-8cdd0900] {
  background: linear-gradient(
    135deg,
    rgba(var(--game-blackjack), 1) 0%,
    transparent 65%
  );
}
.winner-card--limbo .winner-card__bg[data-v-8cdd0900] {
  background: linear-gradient(
    135deg,
    rgba(var(--game-limbo), 1) 0%,
    transparent 65%
  );
}
.winner-card--plinko .winner-card__bg[data-v-8cdd0900] {
  background: linear-gradient(
    135deg,
    rgba(var(--game-plinko), 1) 0%,
    transparent 65%
  );
}
.winner-card--dice .winner-card__bg[data-v-8cdd0900] {
  background: linear-gradient(
    135deg,
    rgba(var(--game-dice), 1) 0%,
    transparent 65%
  );
}
.winner-card--mines .winner-card__bg[data-v-8cdd0900] {
  background: linear-gradient(
    135deg,
    rgba(var(--game-mines), 1) 0%,
    transparent 65%
  );
}
.winner-card:not(.winner-card--blackjack):not(.winner-card--limbo):not(
    .winner-card--plinko
  ):not(.winner-card--dice):not(.winner-card--mines)
  .winner-card__bg[data-v-8cdd0900] {
  background: linear-gradient(
    135deg,
    rgba(var(--primary), 1) 0%,
    transparent 65%
  );
}
.winner-cover[data-v-8cdd0900] {
  position: relative;
  width: 55px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  z-index: 1;
}
.winner-cover img[data-v-8cdd0900] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.cover-fallback[data-v-8cdd0900] {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--t), 0.06);
}
.cover-fallback svg[data-v-8cdd0900] {
  width: 22px;
  height: 22px;
  color: rgba(var(--t), 0.25);
}
.winner-multiplier[data-v-8cdd0900] {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(var(--t), 0.35);
}
.winner-info[data-v-8cdd0900] {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.winner-user[data-v-8cdd0900] {
  display: flex;
  align-items: center;
  gap: 5px;
}
.winner-avatar[data-v-8cdd0900] {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(var(--t), 0.1);
  flex-shrink: 0;
}
.winner-name[data-v-8cdd0900] {
  font-size: var(--fs-md);
  font-weight: 700;
  color: rgba(var(--t), 0.9);
}
.winner-result[data-v-8cdd0900] {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.winner-amount[data-v-8cdd0900] {
  font-size: var(--fs-md);
  font-weight: 800;
  color: rgba(var(--success), 1);
}
.winner-coin[data-v-8cdd0900] {
  font-size: var(--fs-md);
  font-weight: 600;
  color: rgba(var(--t), 1);
}
.total-win[data-v-9d58236b] {
  width: 100%;
  padding: 28px 36px;
  border-radius: 14px;
  border: 2px solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-image: linear-gradient(
      135deg,
      rgba(var(--header), 1),
      rgba(var(--card), 1)
    ),
    linear-gradient(
      var(--tw-angle),
      transparent 25%,
      rgba(var(--primary), 0.8) 50%,
      transparent 75%
    );
  animation: twBorderRotate-9d58236b 3s linear infinite;
  box-shadow: 0 6px 24px #0003;
  position: relative;
  overflow: hidden;
}
.total-win__shimmer[data-v-9d58236b] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--t), 0.06),
    transparent
  );
  animation: twSweep-9d58236b 4s ease-in-out infinite;
  pointer-events: none;
}
.total-win__content[data-v-9d58236b] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.total-win__lottie[data-v-9d58236b] {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  margin: -20px -10px -20px -16px;
}
.total-win__lottie[data-v-9d58236b] .lottie-animation-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.total-win__text[data-v-9d58236b] {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: rgba(var(--t), 0.9);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.total-win__text strong[data-v-9d58236b] {
  font-size: var(--fs-3xl);
  font-weight: 900;
  color: rgba(var(--primary), 1);
  margin: 0 5px;
  display: inline-flex;
  align-items: baseline;
  animation: twGlow-9d58236b 2.5s ease-in-out infinite;
}
.total-win[data-v-9d58236b] .odometer {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
  color: rgba(var(--primary), 1);
  -webkit-text-fill-color: rgba(var(--primary), 1);
  background: none;
}
.total-win[data-v-9d58236b] .odometer-inside {
  display: inline-flex;
}
.total-win[data-v-9d58236b] .odometer-digit,
.total-win[data-v-9d58236b] .odometer-formatting-mark,
.total-win[data-v-9d58236b] .odometer-digit-spacer,
.total-win[data-v-9d58236b] .odometer-digit-inner,
.total-win[data-v-9d58236b] .odometer-ribbon-inner {
  color: inherit;
  -webkit-text-fill-color: inherit;
}
@keyframes twSweep-9d58236b {
  0% {
    transform: translate(-100%);
  }
  to {
    transform: translate(100%);
  }
}
@keyframes twGlow-9d58236b {
  0%,
  to {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.25);
  }
}
@property --tw-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes twBorderRotate-9d58236b {
  to {
    --tw-angle: 360deg;
  }
}
.mobile-view .total-win[data-v-9d58236b] {
  padding: 14px 16px;
  border-radius: 12px;
}
.mobile-view .total-win .total-win__content[data-v-9d58236b] {
  gap: 0;
}
.mobile-view .total-win .total-win__lottie[data-v-9d58236b] {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  margin: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.mobile-view
  .total-win
  .total-win__lottie[data-v-9d58236b]
  .lottie-animation-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-view .total-win .total-win__text[data-v-9d58236b] {
  font-size: var(--fs-base);
  letter-spacing: 0.5px;
  text-align: center;
  width: 100%;
}
.mobile-view .total-win .total-win__text strong[data-v-9d58236b] {
  font-size: var(--fs-xl);
  display: block;
  margin: 2px 0;
}
.mobile-view .bottom-fix {
  left: 0 !important;
  right: 0 !important;
}
.mobile-view .bottom-fix .bottom-fix__inner {
  height: auto !important;
}
.mobile-view .bottom-fix img,
.mobile-view .bottom-fix video {
  display: block;
  width: 100% !important;
  height: auto !important;
}
.mobile-view .bottom-fix .close {
  right: 4px;
  top: -12px;
  width: 24px;
  height: 24px;
  min-width: 24px;
}
.bottom-fix {
  position: fixed;
  bottom: 0;
  z-index: 998;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
  background: transparent;
}
.bottom-fix .bottom-fix__inner {
  width: 100%;
  max-width: 1000px;
  height: 80px;
  position: relative;
  pointer-events: auto;
  overflow: visible;
}
.bottom-fix section.carousel,
.bottom-fix img,
.bottom-fix video {
  border-radius: 0 !important;
  height: 100% !important;
  width: 100% !important;
}
.bottom-fix .close {
  position: absolute;
  right: 6px;
  top: -14px;
  z-index: 2;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--card), 1);
  border: 1px solid rgba(var(--card-border), 1);
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.15s ease;
  box-shadow: 0 2px 8px #0000004d;
}
.bottom-fix .close svg {
  width: 10px;
  height: 10px;
  fill: rgba(var(--t), 0.6);
}
.bottom-fix .close:hover {
  background: rgba(var(--danger), 0.1);
  border-color: rgba(var(--danger), 0.3);
}
.bottom-fix .close:hover svg {
  fill: rgba(var(--danger), 1);
}
.tmp_h_2 .bottom-fix {
  left: var(--left-side-width);
}
.side-collapsed .bottom-fix {
  left: var(--left-side-collapsed);
}
.tmp_h_1 .bottom-fix,
.tmp_h_3 .bottom-fix {
  left: 0;
}
.chat-opened .bottom-fix {
  right: var(--chat-width);
}
@media (max-width: 1400px) {
  .chat-opened .bottom-fix {
    right: 0;
  }
}
.capitalize[data-v-9a0768fd] {
  text-transform: capitalize;
}
.pm[data-v-9a0768fd] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
}
.pm__logo[data-v-9a0768fd] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: 100%;
  background: rgba(var(--t), 0.03);
  border-radius: 10px;
}
.pm__logo img[data-v-9a0768fd] {
  max-height: 44px;
  max-width: 180px;
  object-fit: contain;
}
.pm__bonus[data-v-9a0768fd] {
  font-size: var(--fs-base);
  font-weight: 500;
  text-align: center;
  margin: 0;
  line-height: 1.5;
}
.pm__bonus b[data-v-9a0768fd] {
  color: rgba(var(--primary), 1);
  font-weight: 800;
}
.pm__features[data-v-9a0768fd] {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.pm__feature[data-v-9a0768fd] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  color: rgba(var(--t), 0.75);
}
.pm__feature svg[data-v-9a0768fd] {
  width: 16px !important;
  height: 16px !important;
  fill: rgba(var(--primary), 1) !important;
  flex-shrink: 0;
  margin: 0 !important;
}
.pm__feature b[data-v-9a0768fd] {
  color: rgba(var(--primary), 1);
}
.pm__btn[data-v-9a0768fd] {
  margin-top: 4px;
  font-weight: 700;
  font-size: var(--fs-sm);
}
