body {
  color: var(--c-text);
  background-color: var(--c-bg);
  
  font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  /* font-variant-numeric: lining-nums; */
  font-size: 14px;
}

img[data-src] {
  transition: opacity 100ms ease-in-out;
  transition-delay: 50ms;
  opacity: 1;
}

img[data-src]:not(.loaded) {
  opacity: 0;
}

.hidden {
  display: none !important;
}

.btn, .top-header, .main-header, .home-categories, .sections {
  -webkit-user-select: none;
  user-select: none;
}

.is-link {
  color: var(--c-link);
  text-decoration: underline;
  cursor: pointer;
}

.layout {
  padding: 14px;
  max-width: 1440px;
  overflow-x: hidden;
  margin: 0 auto;
  width: 100%;
}

.header {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
  gap: 14px;
}

.top-header {
  display: flex;
  justify-content: space-between;
}

.top-header__part, .top-header__bonus {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-header__divider {
  width: 1px;
  height: 18px;
  background-color: var(--c-border-dark);
  margin: 0 2px;
}

.top-header__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: var(--c-top-header-btn);
  transition: all 100ms ease-in-out;
  border-radius: 8px;
  cursor: pointer;
  height: 32px;
  min-width: 32px;
  padding: 0 7px;
}

.top-header__item:hover {
  background-color: var(--c-block-hover);
}

.top-header__item .icon {
  font-size: 18px;
}

.top-header__item span:first-child {
  padding-left: 3px;
}

.top-header__item span:last-child {
  padding-right: 3px;
}

.top-header__item.is-gold {
  background-color: var(--c-gold);
  color: var(--c-gold-text);
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to right, var(--c-block-gradient-start), var(--c-block-gradient-end));
  border-radius: 12px;
  height: 52px;
}

.main-header__part, .main-header__nav {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 8px;
  min-width: 0;
  gap: 8px;
}

.main-header__nav {
  padding: 0;
  gap: 10px;
}

.main-header__nav::-webkit-scrollbar {
  display: none;
}

.main-header__nav .main-header__item img {
  min-width: 48px;
  width: auto;
}

.main-header__brand {
  display: flex;
  align-items: center;
  font-size: 24px;
  margin-left: 4px;
  margin-right: 8px;
  font-family: 'Nunito', 'Roboto', sans-serif;
  font-weight: 1000;
  line-height: 1;
  color: var(--c-brand);
}

.main-header__brand img {
  width: 32px;
  height: 32px;
  margin-right: 6px;
}

.main-header__item {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  padding: 0 6px;
  cursor: pointer;
  font-size: 15px;
  gap: 5px;
}

.main-header__item .icon {
  color: var(--c-link);
  font-size: 16px;
}

.main-header__item img {
  height: 16px;
  object-fit: contain;
}

.main-header__item.is-large img {
  height: 28px;
}

.main-header__item.is-bright img {
  filter: brightness(125%);
}

.main-header__item.active {
  font-weight: 500;
}

.main-header__item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  transition: all 100ms ease-in-out;
}

.main-header__item:hover::after,
.main-header__item.active::after {
  opacity: 1;
}

.main-header__item:hover::after {
  background-color: var(--c-item-hover);
}

.main-header__item.active::after {
  background-color: var(--c-brand);
}

.mobile-header {
  display: none;
  height: 52px;
  background-color: var(--c-block-gradient-end);
  border-radius: 12px;
  padding: 0 12px;
  gap: 8px;
  overflow-x: auto;
}

.mobile-header::-webkit-scrollbar,
.categories-header::-webkit-scrollbar {
  display: none;
}

.mobile-header .main-header__item img {
  min-width: 64px;
}

.loader {
  height: 34px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  gap: 6px;
  font-size: 15px;
  background-color: rgb(59, 51, 87);
  font-weight: 500;
  cursor: pointer;
  transition: all 100ms ease-in-out;
  color: var(--c-btn-text);
}

.btn-group {
  display: flex;
  gap: 14px;
}

.btn .loader {
  display: none;
}

.btn .loader + span {
  display: inline-block;
}

.btn .loader.show {
  display: inline-block;
}

.btn .loader.show + span {
  display: none;
}

.btn.btn-full {
  width: 100%;
  display: flex;
}

.btn-white {
  background-color: #fff;
  color: black;
}

.btn-large {
  height: 42px;
  padding: 0 16px;
  font-size: 16px;
}

.btn-small {
  height: 26px;
  padding: 0 8px;
  font-size: 12px;
}

.btn-success {
  background-color: var(--c-success);
}

.btn-primary {
  background-color: var(--c-primary);
}

.btn-danger {
  background-color: var(--c-danger-bg);
}

.btn-gold {
  background-color: var(--c-gold);
  color: var(--c-gold-text)
}

.btn:hover {
  opacity: .8;
}

.home-bonuses {
  display: grid;
  grid-template-columns: calc(50% - 7px) 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
  color: white;
}

.home-bonuses__item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--c-border-dark);
  position: relative;
}

.home-bonuses__image {
  height: 100%;
  object-fit: cover;
  height: 360px;
}

.home-bonuses__filter {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(50, 50, 75, .5);
}

.home-bonuses__details {
  position: absolute;
  top: 48px;
  left: 48px;
  right: 48px;
  bottom: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.home-bonuses__title {
  font-size: 48px;
  font-weight: bold;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .75);
}

.home-bonuses__item.is-small .home-bonuses__details {
  left: 32px;
  right: 32px;
}

.home-bonuses__item.is-small .home-bonuses__title {
  font-size: 36px;
}

.home-categories {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.home-categories__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  background: linear-gradient(to right, var(--c-block-gradient-start), var(--c-block-gradient-end));
  border-radius: 12px;
  padding-right: 16px;
  cursor: pointer;
}

.home-categories__details {
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  gap: 6px;
}

.home-categories__title {
  font-size: 24px;
  font-weight: bold;
}

.home-categories__item img {
  width: 64px;
  height: 64px;
  transition: all 100ms ease-in-out;
}

.home-categories__item:hover img {
  transform: scale(1.1);
}

.home-categories__item img.is-small {
  transform: scale(1.15);
}

.home-categories__item:hover img.is-small {
  transform: scale(1.25);
}

.sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sections-full {
  grid-template-columns: 1fr;
}

.sections.has-sidebar {
  grid-template-columns: 1fr 3fr;
}

.sections-status {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sections-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sections-sidebar .sections-item {
  flex: 0 0 auto;
}

.sections-sidebar .sections-item:last-child,
.sections-item.scrollable {
  max-height: calc(100vh - 98px - 14px * 3);
  overflow-y: auto;
}

.sections-item + .sections {
  margin-top: 14px;
}

.sections-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(45deg, var(--c-block-gradient-start), var(--c-block-gradient-end));
  border-radius: 12px;
  padding: 20px;
  overflow: hidden;
}

.sections-item.is-danger {
  background: var(--c-danger-bg) !important;
}

.sections-fixed {
  max-height: 50vh;
  overflow-y: auto;
}

.sections-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sections-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: -2px;
}

.sections-title span {
  display: inline-block;
  color: var(--c-secondary);
  font-size: 14px;
}

.sections-title img {
  width: 20px;
  height: 20px;
}

.sections-link {
  color: var(--c-link);
  font-weight: 500;
  cursor: pointer;
}

.sections-link:hover {
  text-decoration: underline;
}

.slots-search .field .icon {
  font-size: 20px;
}

.slots-search .field > * {
  height: 44px !important;
}

.slots-providers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.slots-providers__item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
}

.slots-providers__item .icon {
  width: 24px;
  height: 24px;
  font-size: 24px;
  transform: scale(.8);
  color: var(--c-link);
}

.slots-providers__item img {
  width: 24px;
  height: 24px;
  transform: scale(.8);
}

.slots-providers__item.active {
  font-weight: 500;
  color: var(--c-link);
  background-color: rgba(255, 255, 255, .1);
}

.slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.slots-full {
  grid-template-columns: repeat(7, 1fr);
}

.sections.has-sidebar .slots {
  grid-template-columns: repeat(6, 1fr);
}

.slots-item {
  min-width: 0;
  cursor: pointer;
}

.slots-item.disabled {
  opacity: .2;
}

.slots-cover {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--c-border-dark);
  position: relative;
}

.slots-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  transition: all 200ms ease-in-out;
  filter: contrast(1.1);
}

.slots-cover img:not(.loaded) {
  background-color: rgba(255, 255, 255, .5);
}

.slots-item:hover .slots-cover img {
  transform: scale(1.05);
}

.slots-cover__badge {
  position: absolute;
  top: 16px;
  right: 0;
  font-size: 10px;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, .2);
  border-right: none;
  background-color: var(--c-gold);
  padding: 2px 4px;
  color: var(--c-gold-text);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.slots-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.slots-provider {
  display: flex;
  align-items: center;
  color: var(--c-secondary);
  font-size: 12px;
  gap: 6px;
}

.slots-provider span {
  line-height: 1;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.slots-provider img {
  width: 14px;
  height: 14px;
}

.slots-title {
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;

  background-color: rgba(0, 0, 0, .75);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px;
  transition: all 100ms ease-in-out;
}

.modal.has-blur {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.modal:not(.show) {
  opacity: 0;
  pointer-events: none;
}

.modal-body {
  max-width: 512px;
  width: 100%;
  background-color: var(--c-modal-bg);
  border: 1px solid var(--c-modal-border);
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .25);
  transition: all 100ms ease-in-out;
  color: var(--c-modal-text);
}

.modal-content {
  overflow-y: auto;
  max-height: calc(100dvh - 69px - 75px - 28px);
}

.modal-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--c-modal-border);
}

.modal-tabs__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-weight: 500;
  cursor: pointer;
}

.modal-tabs__item:hover {
  opacity: .5;
}

.modal-tabs__item.is-active {
  color: var(--c-link);
}

.modal-tabs__item:not(:last-child) {
  border-right: 1px solid var(--c-modal-border);
}

.modal.has-tabs .modal-content {
  max-height: calc(100dvh - 69px - 75px - 28px - 49px);
}

.modal.no-footer .modal-content,
.modal-scrollable {
  max-height: calc(100dvh - 69px - 28px);
}

.modal-content.support-chat {
  max-height: calc(100dvh - 69px - 50px - 28px);
}

.modal:not(.show) .modal-body {
  transform: translateY(-5%);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--c-modal-border);
}

.modal-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.modal-close:not(.btn) {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background-color: var(--c-link-bg);
  color: var(--c-link);
  transition: all 100ms ease-in-out;
  cursor: pointer;
}

.modal-close:not(.btn):hover {
  opacity: .8;
}

.modal-content, .modal-footer {
  padding: 20px;
}

.modal-footer {
  display: flex;
  justify-content: center;
  gap: 20px;
  border-top: 1px solid var(--c-modal-border);
}

.modal-attention {
  padding: 16px 20px;
  border-bottom: 1px solid var(--c-modal-border);
  color: var(--c-secondary);
  font-size: 12px;
  line-height: 1.5;
}

.modal-scrollable {
  overflow-y: auto;
}

.modal-scrollable .modal-content {
  overflow-y: initial;
}

.modal-attention a {
  font-weight: bold;
  color: var(--c-link);
}

.modal-attention a:hover {
  text-decoration: underline;
}

.modal-offer {
  display: grid;
  grid-template-columns: 360px 1fr;
  max-width: 768px;
}

.modal-offer__banner {
  border-right: 1px solid var(--c-border);
  position: relative;
}

.modal-offer__banner--background::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(/assets/img/offers/woman.jpg) 65% top no-repeat;
  background-size: cover;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  opacity: .25;
}

.modal-offer__banner--background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url(/assets/img/offers/coins.png) center top no-repeat;
  background-size: cover;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  transform: scaleX(-1);
  opacity: .5;
}

/* .modal-offer__banner--background::after {
  content: '';
  position: absolute;
  width: 64px;
  height: 64px;
  top: -30px;
  right: -20px;
  background: url(/assets/img/offers/chest.png) center center no-repeat;
  background-size: contain;
} */

.modal-offer__banner--content {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 32px;
  gap: 20px;
}

.modal-offer__banner--title {
  font-family: 'Nunito';
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .75);
}

.modal-offer__banner--bonuses {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.modal-offer__banner--bonuses div {
  line-height: 1;
  background-color: var(--c-gold);
  color: var(--c-gold-text);
  padding: 2px 12px 2px 2px;
  border-radius: 50px;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
  font-size: 13px;
}

.modal-offer__banner--bonuses div:hover {
  opacity: .75;
}

.modal-offer__banner--bonuses div span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  padding: 4px;
  background-color: var(--c-gold-text);
  color: var(--c-gold);
  border-radius: 50%;
}

@media (max-width: 808px) {
  .modal-offer {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    max-height: calc(100vh - 40px);
    overflow: auto;
  }

  .modal-offer::-webkit-scrollbar {
    border-left: 1px solid var(--c-border);
  }

  .modal-offer__banner {
    border-right: none;
    border-bottom: 1px solid var(--c-border);
  }

  .modal-offer__banner--content {
    padding: 40px 20px;
  }

  .modal-offer__banner--background::before,
  .modal-offer__banner--background::after {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.quick-buttons {
  padding: 20px;
  border-bottom: 1px solid var(--c-modal-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-buttons__item {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  height: 46px;
  background-color: rgba(255, 255, 255, .1);
  color: var(--c-btn-text);
  transition: all 100ms ease-in-out;
  font-size: 16px;
  cursor: pointer;
  gap: 8px;
}

.quick-buttons__item span {
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 6px;
}

.quick-buttons__item.is-vk {
  background-color: #0077FF;
}

.quick-buttons__item.is-tg {
  background-color: #2998c2;
}

.quick-buttons__item.is-quick {
  background-color: var(--c-gold);
  color: var(--c-gold-text);
}

.quick-buttons__item:hover {
  opacity: .75;
}

.quick-buttons__item iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(10);
  opacity: 0.000000001;
  z-index: 1;
  cursor: pointer;
}

.field {
  border: 1px solid var(--c-input-border);
  background-color: var(--c-input-bg);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
}

.field-icon {
  cursor: pointer;
  font-size: 24px;
  color: var(--c-link);
}

.field .field-stats {
  padding: 12px;
  display: flex;
  align-items: center;
  font-size: 18px;
  gap: 6px;
}

.field-stats .icon {
  color: var(--c-link);
}

.field input[type="text"], 
.field input[type="number"],
.field input[type="email"],
.field input[type="password"],
.field input[type="datetime-local"],
.field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--c-input-text);
  font-size: 16px;
  height: 46px;
}

.field select option {
  color: black;
}

.field select optgroup {
  color: #888;
}

.field .has-file {
  position: relative;
  display: flex;
}

.field input[type="file"] {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.field input[type="file"],
.field input[type="file"]::-webkit-file-upload-button {
  cursor: pointer;
}

.field input::placeholder {
  color: var(--c-input-placeholder);
}

.field > * + * {
  border-left: 1px solid var(--c-input-border);
}

.field div, .field label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  font-weight: 500;
  white-space: nowrap;
}

.field.is-file {
  position: relative;
}

.field.is-file div:nth-child(2) {
  border-left: none;
  padding: 8px;
}

.field .field-start-text {
  color: var(--c-secondary);
  align-items: flex-start;
  padding: 14px 12px;
  font-size: 16px;
}

.field-title {
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--c-link);
}

.field-color > :nth-child(2) {
  flex-direction: column;
  font-size: 10px;
  color: var(--c-secondary);
  gap: 2px;
}

.field-color > :first-child {
  cursor: pointer;
  position: relative;
  padding: 8px;
}

.field-color > :first-child .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.field-color input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
  border: none;
}

.field-color input[type="color"]::-webkit-color-swatch {
  border: none;
}

.field-color input[type="color"] {
  width: 40px;
  height: 100%;
  padding: 0;
  border: 1px solid var(--c-border-dark);
  box-shadow: 0 0 0 1px var(--c-bg);
  border-radius: 4px;
  transition: all 100ms ease-in-out;
  cursor: pointer;
}

.field-color > :first-child:hover input[type="color"] {
  border-color: black;
  box-shadow: 0 0 0 1px white;
}

.field-group + .field-group {
  margin-top: 20px;
}

.field-group p {
  line-height: 1.5;
}

.field-group p a {
  color: var(--c-link);
  cursor: pointer;
}

.field-group p a:hover {
  text-decoration: underline;
}

.field-group p:first-child {
  margin-top: -2px;
}

.field-group p + p {
  margin-top: 12px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field-grid.is-1 {
  grid-template-columns: 1fr;
}

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

.field-grid .field-group + .field-group {
  margin-top: 0;
}

.field-group p + .btn,
.field-group .field + .btn {
  margin-top: 10px;
}

.field-grid.is-btn {
  grid-template-columns: 1fr auto;
}

.field-grid.is-btn .field-group:last-child .btn {
  padding: 0 24px;
  height: 100%;
  font-size: 16px;
}

.field .field-btn {
  border-left: none;
  padding: 0 6px;
}

.field select {
  background-image: url(/assets/img/icons/select.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 44px;
  padding-right: 44px;
  appearance: none;
}

.user-block {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  padding: 4px 8px 4px 4px;
  background-color: var(--c-block-gradient-start);
  cursor: pointer;
  line-height: 1;
}

.user-block:hover, .dropdown.active .user-block {
  background-color: var(--c-block-hover);
}

.user-block__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, .2);
  border-radius: 4px;
  width: 28px;
  height: 28px;
  font-size: 18px;
}

.user-block__balance {
  color: var(--c-green);
  font-weight: bold;
}

.user-block__menu {
  color: var(--c-link);
  line-height: 1;
  font-size: 18px;
  border-left: 1px solid var(--c-border-dark);
  padding-left: 6px;
}

.user-block__menu .icon {
  display: block;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  right: 0;
  bottom: -8px;
  transform: translateY(100%);
  background-color: var(--c-block-gradient-start);
  border: 1px solid var(--c-border);
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, .5);
  border-radius: 8px;
  overflow: hidden;
  padding: 4px 0;
  transition: all 100ms ease-in-out;
  z-index: 1000;
}

.dropdown:not(.active) .dropdown-menu {
  opacity: 0;
  pointer-events: none;
  bottom: -4px;
}

.dropdown-menu__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 14px;
  cursor: pointer;
  white-space: nowrap;
  font-size: 15px;
  min-width: 200px;
}

.dropdown-menu__item:hover {
  background-color: var(--c-item-hover);
}

.dropdown-menu__item .icon {
  color: var(--c-dropdown-icon);
  font-size: 20px;
}

.dropdown-menu__divider {
  height: 1px;
  background-color: var(--c-border);
  margin: 4px 0;
}

.dropdown-menu__counter {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  padding: 0 4px;
  height: 18px;
  border-radius: 20px;
  margin-right: -2px;
  font-size: 12px;
  font-weight: bold;
  color: var(--c-block-gradient-start);
  background-color: var(--c-gold);
  line-height: 1;
}

.dropdown-menu__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--c-gold);
}

.dropdown-menu__dot.is-green {
  background-color: var(--c-green);
}

[data-category-content]:not(.active) {
  display: none;
}

.shine {
  position: relative;
  overflow: hidden;
}

.shine::after {
  border-radius: 10px;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: skewX(-20deg) translateX(-125%);
  background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, .6), transparent);
  animation: shine 1.8s ease infinite;
  pointer-events: none;
}

.shine-alt::after {
  animation-duration: 2.5s;
  opacity: .25;
}

@keyframes shine {
  100% {
    transform: skewX(-20deg) translateX(125%);
  }
}

.game-window {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 100dvh;
  background-color: var(--c-modal-bg);
  z-index: 500;
  display: grid;
  grid-template-rows: 48px 1fr;
  transition: all 100ms ease-in-out;
}

.game-window:not(.show) {
  opacity: 0;
  pointer-events: none;
}

.game-window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--c-border-dark);
  padding: 0 8px;
}

.game-window-header__part {
  display: flex;
  gap: 8px;
}

.game-window-header__part .modal-close {
  width: 32px;
  height: 32px;
}

.game-window-header__part .btn {
  height: 32px;
  padding: 0 10px;
}

.game-window iframe {
  border: none;
  width: 100%;
  height: 100%;
}

.footer {
  color: var(--c-secondary);
  margin-top: 14px;
  font-weight: 500;
  background-color: var(--c-footer);
  border-radius: 12px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 24px 16px;
}

.footer-brand {
  margin-left: -1px;
}

.footer-description {
  margin-top: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.footer-copyright {
  margin-top: 14px;
  color: var(--c-text);
  font-size: 12px;
  line-height: 1.4;
}

.footer-copyright a {
  text-decoration: none;
}

.footer-copyright a:hover {
  text-decoration: underline;
}

.footer-title {
  color: var(--c-text);
  margin-bottom: 24px;
}

.footer-link {
  display: block;
  margin-top: 14px;
  font-weight: 400;
  color: var(--c-link);
  cursor: pointer;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--c-border);
  padding: 16px;
}

.footer-secure {
  display: flex;
  align-items: center;
  color: var(--c-green);
  font-size: 12px;
  gap: 4px;
}

.footer-images {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-images img {
  width: auto;
  height: 24px;
  object-fit: contain;
}

.footer-images img.is-small {
  height: 18px;
}

.footer-powered {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: white;
  margin-top: 16px;
  border-radius: 12px;
  padding: 12px;
  padding-right: 16px;
}

.footer-powered__icon {
  width: 32px;
  height: 32px;
}

.footer-powered__brand {
  font-size: 16px;
  color: black;
  margin-bottom: 4px;
}

.footer-powered__text {
  font-size: 12px;
  color: rgba(0, 0, 0, .5);
}

.transactions-list {
  display: flex;
  flex-direction: column;
  margin-left: -20px;
  margin-right: -20px;
  gap: 16px;
}

.transactions-list__item {
  display: grid;
  grid-template-columns: 90px 1fr 1fr 1fr;
  gap: 8px;
  padding: 0 20px;
}

.transactions-list__item:not(:first-child) {
  border-top: 1px solid var(--c-modal-border);
  padding-top: 16px;
}

.transactions-list__amount,
.transactions-list__type,
.transactions-list__date {
  display: flex;
  align-items: center;
}

.transactions-list__date {
  font-size: 12px;
  color: var(--c-secondary);
  justify-content: flex-end;
}

.transactions-list__type {
  gap: 4px;
  font-weight: 500;
}

.transactions-list__type.is-red {
  color: var(--c-danger);
}

.transactions-list__type.is-green {
  color: var(--c-green);
}

.transactions-list__type span {
  display: inline-block;
  color: white;
  max-width: 64px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.transactions-list__amount {
  font-weight: bold;
}

.transactions-list__amount.is-gold {
  color: var(--c-gold);
}

.transactions-list__status {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.transactions-list__status .is-green {
  color: var(--c-green);
}

.transactions-list__span {
  color: var(--c-secondary);
  opacity: .5;
  font-size: 10px;
  margin-left: 4px;
}

.bonuses {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bonuses-item {
  display: flex;
  border: 1px solid #0d6efd;
  background-color: #004dc0;
  border-radius: 16px;
  padding: 16px;
  gap: 32px;
}

.bonuses-item__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bonuses-item__title {
  font-size: 24px;
  font-weight: 500;
}

.bonuses-item__description {
  line-height: 1.4;
}

.bonuses-item__icon {
  font-size: 48px;
  opacity: .5;
}

.bonuses-item__footer p {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  opacity: .75;
  line-height: 1.4;
  gap: 6px;
}

.bonuses-voucher {
  border: 1px solid var(--c-border-dark);
  background-color: var(--c-block-gradient-start);
}

.bonuses-voucher .field {
  border-color: var(--c-gold);
  background-color: var(--c-gold-text);
}

.bonuses-voucher .field input::placeholder {
  color: rgba(255, 255, 150, .5);
}

.bonuses-voucher .field div {
  background-color: var(--c-gold);
  color: var(--c-gold-text);
  border-left: none;
}

.bonuses-voucher .bonuses-item__icon {
  color: var(--c-gold);
}

.bonuses-social {
  filter: hue-rotate(45deg);
}

.bonuses-social__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--c-border);
  background-color: var(--c-block-gradient-start);
  border-radius: 8px;
  padding: 12px;
}

.bonuses-social__item .field-title {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-bottom: 0;
  gap: 8px;
}

.bonuses-social__item .field-title .icon {
  font-size: 24px;
}

.bonuses-social__item.icon-small .field-title .icon {
  transform: scale(.9);
}

.toast {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  padding: 32px 14px;
  transition: all 100ms ease-in-out;
  z-index: 1100;
}

.toast-content {
  padding: 12px 16px;
  border-radius: 12px;
  background-color: var(--c-primary);
  color: white;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, .5);
  transition: all 100ms ease-in-out;
  max-width: 480px;
  word-break: break-word;
  line-height: 1.4;
}

.toast.is-error .toast-content {
  background-color: var(--c-danger-bg);
}

.toast.is-success .toast-content {
  background-color: var(--c-success);
}

.toast:not(.show) {
  opacity: 0;
  pointer-events: none;
}

.toast:not(.show) .toast-content {
  transform: translateY(5%);
}

.article {
  padding: 20px;
  border-radius: 12px;
  background-color: var(--c-block-gradient-end);
  line-height: 1.4;
  max-width: 768px;
  margin: 0 auto;
}

.article * + * {
  margin-top: 20px;
}

.article li + li {
  margin-top: 10px;
}

.article h2 {
  font-size: 16px;
}

.article h2 i {
  color: var(--c-link);
}

.article p, .article li {
  color: var(--c-secondary);
}

.article p b, .article li b {
  color: white;
}

.article ul, .article ol {
  list-style-position: inside;
}

.article ul {
  list-style-type: disc;
}

.article ol {
  list-style-type: decimal;
}

.support-modal .modal-footer {
  padding: 0;
}

.support-modal__field {
  width: 100%;
  border-radius: 0;
  border: none;
  background-color: transparent;
}

.support-modal__field input {
  padding: 0 20px;
  height: 50px;
}

.support-modal__field .field-icon {
  min-width: 50px;
  color: var(--c-link);
}

.support-chat {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-chat__message {
  width: 100%;
  display: flex;
  gap: 8px;
}

.support-chat__avatar {
  flex: 0 0 32px;
  border: 1px solid var(--c-border);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--c-link);
  background-color: var(--c-link-bg);
}

.support-chat__body {
  display: flex;
  flex: 1 1 auto;
}

.support-chat__box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background-color: var(--c-link-bg);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 10px;
  line-height: 1;
  max-width: 75%;
}

.support-chat__name {
  font-weight: 500;
  color: var(--c-link);
}

.support-chat__text {
  line-height: 1.4;
  margin-bottom: -2px;
  word-break: break-word;
}

.support-chat__time {
  display: inline;
  font-size: 12px;
  color: var(--c-secondary);
}

.support-chat__message.is-me,
.support-chat__message.is-me .support-chat__body {
  justify-content: flex-end;
}

.support-chat__message.is-me .support-chat__text {
  margin-top: -2px;
}

.settings-item .field-title {
  margin-bottom: -2px;
}

.settings-item .field-group + .field-group {
  margin-top: 16px;
}

.public {
  position: fixed;
  bottom: 22px;
  left: 50%;
  z-index: 1090;
  background-color: rgba(21, 17, 33, .5);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  transition: all 100ms ease-in-out;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  max-width: 512px;
  width: 100%;
}

.public-brand img {
  width: 32px;
  height: 32px;
}

.public-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.public-title {
  font-size: 18px;
  font-weight: 500;
}

.public-text {
  color: #90b5ff;
}

.public-icon .icon {
  font-size: 24px;
  display: block;
  color: #90b5ff;
  transition: all 100ms ease-in-out;
  position: relative;
  left: -4px;
}

.public:hover {
  background-color: rgb(21, 17, 33, .9);
}

.public:hover .public-icon .icon {
  left: 0;
}

.public::after {
  background-image: linear-gradient(to right, transparent, rgba(200, 200, 255, .1), transparent);
  animation-duration: 3s;
}

.public-nav {
  border-radius: 12px;
  background-color: var(--c-block-gradient-end);
  margin-bottom: 14px;
  padding: 20px;
}

.public-nav__title {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-link);
  margin-bottom: 14px;
}

.public-nav__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ios-install-steps {
  border-radius: 8px;
  background-color: rgba(200, 200, 255, .1);
  margin-top: 16px;
  --c-ios-share: rgb(64, 156, 255);
}

.ios-install-steps__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}

.ios-install-steps__item .icon {
  font-size: 24px;
}

.ios-install-steps__item:not(:last-child) {
  border-bottom: 1px solid rgba(200, 200, 255, .1);
}

.categories-header {
  display: flex;
  height: 52px;
  margin-bottom: 14px;
  background-color: var(--c-block-gradient-end);
  border-radius: 12px;
  padding: 0 12px;
  gap: 8px;
  overflow-x: auto;
  white-space: nowrap;
}

.categories-header .main-header__item img {
  width: 16px;
  flex: 0 0 16px;
}

.sections-slots__popular {
  position: relative;
  background: linear-gradient(135deg, var(--c-popular-start), var(--c-popular-end));
}

.sections-slots__popular::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(/assets/img/bg/dots.png) top right no-repeat;
  background-size: cover;
  opacity: .05;
  pointer-events: none;
}

.sections-slots__popular .sections-title {
  flex-wrap: wrap;
}

.sections-slots__popular .sections-title .icon {
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  position: relative;
  top: 4px;
}

.sections-slots__popular .slots.slots-full {
  grid-template-columns: repeat(7, 1fr);
}

@media (max-width: 1023px) {
  .sections-slots__popular .slots.slots-full {
    grid-template-columns: repeat(6, 1fr);
  }

  .sections-slots__popular .slots.slots-full .slots-item:last-child {
    display: none;
  }
}

@media (max-width: 768px) {
  .sections-slots__popular .slots.slots-full {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 640px) {
  .sections-slots__popular .sections-link {
    display: none;
  }
}

@media (max-width: 540px) {
  .public {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-radius: 0;
    bottom: 0;
    max-width: 100dvw;
    padding: 14px 16px 15px;
    gap: 16px;
  }

  .public-title {
    font-size: 16px;
  }

  .public-text {
    font-size: 12px;
  }

  .public-brand img {
    width: 28px;
    height: 28px;
  }

  .public-nav__buttons {
    flex-direction: column;
  }

  .sections-slots__popular .slots.slots-full {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1279px) {
  .home-bonuses {
    grid-template-columns: 1fr;
  }

  .home-bonuses__item:not(:first-child) {
    display: none;
  }

  .home-categories {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1023px) {
  .slots {
    grid-template-columns: repeat(3, 1fr);
  }

  .slots.slots-full, .sections.has-sidebar .slots {
    grid-template-columns: repeat(5, 1fr);
  }

  .main-header__nav {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  .sections.has-sidebar {
    grid-template-columns: 1fr;
  }

  .sections-sidebar .sections-item:last-child {
    max-height: 30vh;
    overflow-y: auto;
  }

  .slots-providers {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .slots.slots-full, .sections.has-sidebar .slots {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 640px) {
  .sections, .home-categories, .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-top {
    gap: 24px;
  }

  .home-bonuses__title {
    font-size: 36px;
  }

  .home-bonuses__image {
    height: 280px;
  }
}

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

  .slots.slots-full, .sections.has-sidebar .slots {
    grid-template-columns: repeat(3, 1fr);
  }

  .top-header__bonus {
    display: none;
  }

  .transactions-list__item {
    grid-template-columns: 1fr 1fr;
  }

  .transactions-list__type {
    justify-content: flex-end;
  }

  .transactions-list__date {
    align-items: flex-end;
  }

  .slots-providers {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 414px) {
  .home-bonuses__title {
    font-size: 28px;
  }

  .home-bonuses__image {
    height: 240px;
  }

  .home-bonuses__details {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 24px;
  }

  .slots.slots-full, .sections.has-sidebar .slots {
    grid-template-columns: repeat(2, 1fr);
  }
}