:root {
  --bg-glass: rgba(121, 141, 229, 0.08);
  --border-glass: rgba(255, 255, 255, 0.27);
  --color-primary1: #0080ff;
  --color-primary2: #8f07ff;
  --color-primary1-smooth: rgba(0, 128, 255, 0.3);
  --color-primary2-smooth: rgba(143, 7, 255, 0.3);
  font-family: "Inter", sans-serif;
}
*::selection {
  background-color: rgba(255, 255, 255, 0.079);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
img::selection {
  background-color: transparent;
}
.text-primary {
  background: linear-gradient(
    90deg,
    var(--color-primary1) 0%,
    var(--color-primary2) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.border-primary {
  position: relative;
  z-index: 0;
}
.border-primary::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  z-index: -1;
  background: linear-gradient(
    90deg,
    var(--color-primary1) 0%,
    var(--color-primary2) 100%
  );
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  padding: 1px;
}
.bg-glass-dark {
  background-color: rgb(12, 12, 24);
}
.bg-glass {
  background-color: var(--bg-glass);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
.bg-glass-2 {
  background: linear-gradient(
    90deg,
    var(--color-primary1-smooth) 0%,
    var(--color-primary2-smooth) 100%
  );
}
.border-glass {
  border: 1px solid var(--border-glass);
}
.border-t-glass {
  border-top: 1px solid var(--border-glass);
}
html,
body {
  overflow-x: hidden;
  touch-action: pan-y;
  overscroll-behavior-x: none;
}

body {
  position: relative;
  width: 100vw;
  min-width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden;
}

.spotlight,
.spotlight-header,
.spotlight-sm {
  max-width: 100vw !important;
  width: 100vw !important;
  min-width: 0 !important;
  left: 0 !important;
  right: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
  pointer-events: none;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  box-sizing: border-box;
}

@media (max-width: 900px) {
  html,
  body {
    touch-action: pan-y;
    overscroll-behavior-x: none;
  }
}

.wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1280 / 723;
  overflow: hidden;
}
.shape-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-glass);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: top center;
  z-index: 1;
}
.shape-bg1 {
  mask-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1262.91 683.5' xmlns='http://www.w3.org/2000/svg'><path d='m748.47,429.49h409c24.76,0,44.84,16.67,44.84,37.23v137.12c0,20.56-20.07,37.23-44.84,37.23h-409c-24.76,0-44.84-16.67-44.84-37.23v-137.12c0-20.56,20.07-37.23,44.84-37.23Z'/></svg>");
}
.shape-bg2 {
  mask-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1262.91 683.5' xmlns='http://www.w3.org/2000/svg'><path d='M115.8,579.5H45.3c-24.8,0-44.8-18.8-44.8-42c0,0,0-495,0-495c0-23.2,20.1-42,44.8-42h305.3c16.4,0,31.5,8.4,39.4,21.9l19.4,33.3c7.9,13.5,23,21.9,39.4,21.9h769c24.8,0,44.8,18.8,44.8,42v330.5c0,23.2-20.1,42-44.8,42H686.1c-24.8,0-44.8,18.8-44.8,42v3.3c0,23.2-20.1,42-44.8,42H466.9H115.8z'/></svg>");
}
.shape-bg-blur {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
.shape-stroke {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.shape-stroke1 {
  z-index: 1;
}
.shape-stroke2 {
  z-index: 3;
}
.shape-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.btn-primary {
  display: block;
  position: relative;
  overflow: hidden;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(
    90deg,
    var(--color-primary1) 0%,
    var(--color-primary2) 100%
  );
  border-radius: 17px;
}
.bg-primary {
  background: linear-gradient(
    90deg,
    var(--color-primary1) 0%,
    var(--color-primary2) 100%
  );
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.35);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.btn-primary-2 {
  display: block;
  position: relative;
  overflow: hidden;
  font-weight: bold;
  cursor: pointer;
  color: black;
  background: white;
  box-shadow: 0px 1px 36.2px 12px rgba(255, 255, 255, 0.25);
  border-radius: 17px;
  transition: all ease 0.3s;
}
.btn-primary-2:hover {
  box-shadow: 0px 1px 36.2px 12px rgba(255, 255, 255, 0);
  transform: scale(1.02);
  transition: all ease 0.3s;
}
.rounded-custom {
  border-radius: 21px;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  height: 100%;
  background: rgb(255, 255, 255);
  transform: skewX(-25deg) translateX(-100%);
  opacity: 0;
  pointer-events: none;
}

@keyframes shine {
  0% {
    transform: skewX(-25deg) translateX(-100%);
    opacity: 0;
  }
  20% {
    opacity: 0.5;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: skewX(-25deg) translateX(700%);
    opacity: 0;
  }
}

.btn-primary.shine-active::before {
  animation: shine 0.6s ease-out forwards;
}

.header-btn {
  border-radius: 27px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spotlight {
  z-index: -1;
  background: radial-gradient(
    69.5% 69.5% at 50% 50%,
    rgba(127, 127, 255, 0.62) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  width: 1000px;
  height: 1000px;
  max-width: 100vw !important;
  width: 100vw !important;
  min-width: 0 !important;
  left: 0 !important;
  right: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
  pointer-events: none;
  overflow: hidden;
  inset-inline-start: 0 !important;
  inset-inline-end: 0 !important;
  clip-path: inset(0 0 0 0);
  box-sizing: border-box;
}
.spotlight-header {
  background: radial-gradient(
    60.5% 30.5% at 55% 50%,
    rgba(127, 127, 255, 0.62) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  width: 600px;
  height: 600px;
  z-index: 1;
}
.spotlight-sm {
  background: radial-gradient(
    40.5% 30.5% at 55% 50%,
    rgba(127, 127, 255, 0.62) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  width: 600px;
  height: 600px;
  z-index: 1;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  border-radius: 17px;
  padding: 13px;
  background-color: var(--bg-glass);
  border: 1px solid var(--border-glass);
}
.nav-item svg {
  color: var(--border-glass);
  transition: all ease 0.3s;
}
.nav-item:hover svg {
  color: white;
  transition: all ease 0.3s;
}
.nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0%;
  height: 3px;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    var(--color-primary1) 0%,
    var(--color-primary2) 100%
  );
  transition: all ease 0.3s;
}
.nav-item.active::after,
.nav-item:hover::after {
  box-shadow: 0px -7px 21.6px 7px rgba(0, 136, 255, 0.25);

  width: 60%;
  transition: all ease 0.3s;
}
.bg-movable-btn {
  position: relative;
}
.bg-movable-btn span:not(.absolute) {
  position: relative;
  z-index: 2;
}
.bg-movable {
  background: linear-gradient(
    90deg,
    var(--color-primary1) 0%,
    var(--color-primary2) 100%
  );
  position: absolute !important;
  left: 5px;
  width: calc(50% - 5px);
  z-index: 1;
  border-radius: 17px;
  top: 5px;
  bottom: 5px;
  transition: all ease 0.3s;
}
.bg-movable-btn.switch .bg-movable {
  left: 50%;
  transition: all ease 0.3s;
}
.bg-movable-btn.switch .bg-switch-color {
  background: linear-gradient(90deg, white 0%, white 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.rounded-br-none {
  border-bottom-right-radius: 0 !important;
}
.rounded-tr-none {
  border-top-right-radius: 0 !important;
}
.bold-white b {
  color: white;
}
.rounded-bl-none {
  border-bottom-left-radius: 0 !important;
}
.rounded-tl-none {
  border-top-left-radius: 0 !important;
}
.border-l-none {
  border-left: none !important;
}
#plans-more:not(.switch) .less {
  display: none;
}
#plans-more:not(.switch) .more {
  display: inline-block;
}
.border-b-none {
  border-bottom: none !important;
}
#plans-more.switch .more {
  display: none;
}
#plans-more.switch .less {
  display: inline-block;
}
.shadow-3xl {
  box-shadow: 0px 72px 78.5px rgba(0, 0, 0, 0.55);
}
#cookie-banner {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 21px 21px 0 0;
  box-shadow: 0px -8px 32px 0px rgba(0, 0, 0, 0.25);
  font-size: 1rem;
}
#cookie-banner button {
  min-width: 120px;
}
@media (max-width: 900px) {
  .desktop-nav,
  .desktop-services-header {
    display: none !important;
  }
  .mobile-burger {
    display: flex !important;
  }
  .mobile-header-card {
    display: block !important;
  }
  .plans-glide .glide__slides {
    display: flex !important;
    flex-direction: row !important;
  }
  .plans-glide .glide__slide:last-child {
    margin-right: 0;
  }
  .spotlight,
  .spotlight-header,
  .spotlight-sm {
    max-width: 100vw !important;
    width: 100vw !important;
    min-width: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    pointer-events: none;
    overflow: hidden;
    inset-inline-start: 0 !important;
    inset-inline-end: 0 !important;
    clip-path: inset(0 0 0 0);
    box-sizing: border-box;
  }
  #mobile-sidebar {
    padding-bottom: env(safe-area-inset-bottom, 0);
    height: calc(100vh + env(safe-area-inset-bottom, 0));
    max-height: none;
    box-sizing: border-box;
  }
  .category-btn {
    min-width: 140px;
    white-space: nowrap;
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .no-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .no-scrollbar::-webkit-scrollbar {
    display: none;
  }
  .country-label {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .lang-switcher-mobile .lang-label,
  .lang-switcher-mobile .lang-name {
    display: none !important;
  }
  .lang-switcher-mobile .lang-flag {
    display: inline-block !important;
  }
}

@media (min-width: 901px) {
  #mobile-sidebar,
  .mobile-burger,
  .mobile-header-card {
    display: none !important;
  }
  .glide-categories,
  .category-arrow {
    display: none !important;
  }
}
.no-br br {
  display: none;
}
#mobile-sidebar {
  padding-bottom: env(safe-area-inset-bottom, 0);
  height: calc(100vh + env(safe-area-inset-bottom, 0));
  max-height: none;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  #game-mobile-overlay {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    position: fixed;
  }
  #game-mobile-list {
    padding-bottom: 40px;
  }
  #game-mobile-topbar {
    position: relative;
    z-index: 10;
  }
  #game-mobile-close {
    font-size: 2rem;
    line-height: 1;
    background: none;
    border: none;
    cursor: pointer;
  }
  #game-selector-desktop {
    display: none !important;
  }
  #game-mobile-content-desc {
    min-height: 80px;
  }
}
.game-mobile-list-btn.active .text-primary {
  background: linear-gradient(90deg, white 0%, white 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.plans-switch-btn.active .text-primary {
  background: linear-gradient(90deg, white 0%, white 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.btn-flex {
  display: flex;
}
.original-price {
  color: red;
}
