@keyframes bubble-appear {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(20px);
  }
  40% {
    opacity: 1;
    transform: scale(1.1) translateY(0);
  }
  70% {
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

ul,
ol {
  margin: 20px;
}

.table {
  overflow: scroll;
}

.module-games {
  width: 100%;
  margin: 30px auto;
  padding: 30px;
  border-radius: 10px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.module-games.dark-theme {
  background-color: rgba(255, 255, 255, 0.1);
}
.module-games.light-theme {
  background-color: rgba(0, 0, 0, 0.1);
}

.module-games-header {
  text-align: center;
  border: none !important;
  margin-bottom: 24px;
}
.module-games-header h2 {
  font-size: 28px;
  font-weight: 700;
  border: none !important;
  margin: 0;
  padding-bottom: 10px;
}
.module-games.dark-theme .module-games-header h2 {
  color: #ffffff;
}
.module-games.light-theme .module-games-header h2 {
  color: #000000;
}

.module-games-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid;
  flex-wrap: wrap;
}
.module-games.dark-theme .module-games-nav {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.module-games.light-theme .module-games-nav {
  border-bottom-color: rgba(0, 0, 0, 0.2);
}
.module-games-nav li {
  flex: 1;
  text-align: center;
  min-width: 120px;
}
.module-games-nav li a {
  font-size: 1.3em;
  font-weight: 600;
  padding: 12px 0;
  display: block;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}
.module-games.dark-theme .module-games-nav li a {
  color: rgba(255, 255, 255, 0.7);
}
.module-games.light-theme .module-games-nav li a {
  color: rgba(0, 0, 0, 0.7);
}
.module-games.dark-theme .module-games-nav li a:hover {
  color: #ffffff;
}
.module-games.light-theme .module-games-nav li a:hover {
  color: #000000;
}
.module-games.dark-theme .module-games-nav li a.active {
  color: #ffffff;
}
.module-games.light-theme .module-games-nav li a.active {
  color: #000000;
}
.module-games-nav li a.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
}
.module-games.dark-theme .module-games-nav li a.active::after {
  background: #ffffff;
}
.module-games.light-theme .module-games-nav li a.active::after {
  background: #000000;
}
.module-games-list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.module-games-item {
  width: 100%;
  margin: 0 10px 20px;
  display: block;
  text-decoration: none !important;
  cursor: pointer;
  text-align: center;
  opacity: 0;
  animation: bubble-appear 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.module-games-item[data-cols="1"] {
  max-width: calc(100% - 20px);
  flex-basis: calc(100% - 20px);
}
.module-games-item[data-cols="2"] {
  max-width: calc(50% - 20px);
  flex-basis: calc(50% - 20px);
}
.module-games-item[data-cols="3"] {
  max-width: calc(33.333% - 20px);
  flex-basis: calc(33.333% - 20px);
}
.module-games-item[data-cols="4"] {
  max-width: calc(25% - 20px);
  flex-basis: calc(25% - 20px);
}
.module-games-item[data-cols="5"] {
  max-width: calc(20% - 20px);
  flex-basis: calc(20% - 20px);
}
.module-games-item[data-cols="6"] {
  max-width: calc(16.666% - 20px);
  flex-basis: calc(16.666% - 20px);
}

.module-games-item:nth-child(1) {
  animation-delay: 0.05s;
}
.module-games-item:nth-child(2) {
  animation-delay: 0.1s;
}
.module-games-item:nth-child(3) {
  animation-delay: 0.15s;
}
.module-games-item:nth-child(4) {
  animation-delay: 0.2s;
}
.module-games-item:nth-child(5) {
  animation-delay: 0.25s;
}
.module-games-item:nth-child(6) {
  animation-delay: 0.3s;
}
.module-games-item:nth-child(7) {
  animation-delay: 0.35s;
}
.module-games-item:nth-child(8) {
  animation-delay: 0.4s;
}
.module-games-item:nth-child(9) {
  animation-delay: 0.45s;
}
.module-games-item:nth-child(10) {
  animation-delay: 0.5s;
}
.module-games-item:nth-child(11) {
  animation-delay: 0.55s;
}
.module-games-item:nth-child(12) {
  animation-delay: 0.6s;
}
.module-games-item:nth-child(13) {
  animation-delay: 0.65s;
}
.module-games-item:nth-child(14) {
  animation-delay: 0.7s;
}
.module-games-item:nth-child(15) {
  animation-delay: 0.75s;
}
.module-games-item:nth-child(16) {
  animation-delay: 0.8s;
}

.module-games-item-img {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  margin-bottom: 10px;
  border-radius: 12px;
  overflow: hidden;
  background-color: rgba(128, 128, 128, 0.1);
}
.module-games-item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
  display: block;
}
.module-games-item span {
  display: block;
  margin: 5px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}
.module-games.dark-theme .module-games-item span {
  color: #ffffff;
}
.module-games.light-theme .module-games-item span {
  color: #000000;
}
.module-games-tab {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.15s ease-in-out;
}
.module-games-tab.active {
  height: auto;
  overflow: visible;
  opacity: 1;
}
.module-games-tab.active .module-games-item {
  animation: bubble-appear 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.module-games-preload {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

@media only screen and (min-width: 1025px) {
  .module-games-item-img:hover img {
    transform: scale(1.1);
  }
}

@media only screen and (max-width: 767px) {
  .module-games {
    margin-bottom: 60px;
    padding: 15px;
  }
  .module-games-header h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .module-games-nav {
    margin: 0 0 16px;
  }
  .module-games-nav li a {
    font-size: 14px;
    padding: 8px 0;
  }
  .module-games-list {
    margin: 0 -5px;
  }
  .module-games-item {
    max-width: calc(100% - 10px) !important;
    flex-basis: calc(100% - 10px) !important;
    margin: 0 5px 10px;
  }
  .module-games-item span {
    font-size: 16px;
    margin: 3px 0 0;
  }
  .module-games-item-img {
    margin-bottom: 5px;
  }
}

@media only screen and (max-width: 480px) {
  .module-games-header h2 {
    font-size: 18px;
  }
  .module-games-item span {
    font-size: 14px;
  }
  .module-games-nav li {
    min-width: 80px;
  }
  .module-games-nav li a {
    font-size: 12px;
    padding: 8px 5px;
  }
}

@media only screen and (max-width: 1200px) {
  .module-games {
    padding: 20px;
  }
}

.module-promo {
  max-width: 1100px;
  margin: 28px auto;
  padding: 25px 25px 30px 25px;
  width: 100%;
  border-radius: 12px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  position: relative;
}
.module-promo.dark-theme {
  background-color: rgba(255, 255, 255, 0.1) !important;
}
.module-promo.light-theme {
  background-color: rgba(0, 0, 0, 0.1) !important;
}
.module-promo-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
}
.module-promo-h1 {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
  margin: 4px 6px 20px;
  letter-spacing: 0.01em;
}
.module-promo.dark-theme .module-promo-h1 {
  color: #ffffff !important;
}
.module-promo.light-theme .module-promo-h1 {
  color: #000000 !important;
}
.module-promo-media {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  cursor: pointer;
}
.module-promo-media a {
  display: block;
  height: 100%;
}
.module-promo-media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0px !important;
  transition: transform 0.3s ease;
}
.module-promo-media:hover img {
  transform: scale(1.02);
}
.module-promo-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.module-promo-subtitle {
  font-size: 18px !important;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.5px;
}
.module-promo.dark-theme .module-promo-subtitle {
  color: #ffffff !important;
}
.module-promo.light-theme .module-promo-subtitle {
  color: #000000 !important;
}
.module-promo-sub {
  font-size: 14px;
  line-height: 1.5;
}
.module-promo.dark-theme .module-promo-sub {
  color: rgba(255, 255, 255, 0.7) !important;
}
.module-promo.light-theme .module-promo-sub {
  color: rgba(0, 0, 0, 0.7) !important;
}
.module-promo-code-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: stretch;
  margin-top: 2px;
}
.module-promo-input {
  appearance: none;
  width: 100%;
  padding: 14px 14px;
  border-radius: 8px;
  border: 1px solid;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 18px;
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    monospace;
  box-sizing: border-box;
}
.module-promo.dark-theme .module-promo-input {
  background-color: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
}
.module-promo.light-theme .module-promo-input {
  background-color: rgba(0, 0, 0, 0.06) !important;
  border-color: rgba(0, 0, 0, 0.3) !important;
  color: #000000 !important;
}
.module-promo-input:focus {
  outline: none;
  border-color: #6ee7ff !important;
  box-shadow: 0 0 0 6px rgba(110, 231, 255, 0.12);
}
.module-promo-btn {
  border: none;
  border-radius: 8px;
  padding: 12px 20px !important;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  user-select: none;
  line-height: 1;
  background: rgba(255, 255, 255, 0.12);
}
.module-promo.dark-theme .module-promo-btn {
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}
.module-promo.light-theme .module-promo-btn {
  background-color: rgba(0, 0, 0, 0.12) !important;
  color: #000000 !important;
  border: 1px solid rgba(0, 0, 0, 0.3) !important;
}
.module-promo.dark-theme .module-promo-btn:hover {
  background-color: rgba(255, 255, 255, 0.18) !important;
  border-color: #ffffff !important;
}
.module-promo.light-theme .module-promo-btn:hover {
  background-color: rgba(0, 0, 0, 0.18) !important;
  border-color: #000000 !important;
}
.module-promo-btn svg {
  width: 18px;
  height: 18px;
}
.module-promo.dark-theme .module-promo-btn svg path {
  stroke: #ffffff !important;
}
.module-promo.light-theme .module-promo-btn svg path {
  stroke: #000000 !important;
}

/* &#1071;&#1088;&#1082;&#1072;&#1103; &#1082;&#1085;&#1086;&#1087;&#1082;&#1072; Activate Bonus &#1082;&#1072;&#1082; &#1074; &#1074;&#1080;&#1076;&#1078;&#1077;&#1090;&#1077; app */
.module-promo-cta {
  display: inline-block;
  padding: 15px 40px !important;
  color: #ffffff !important;
  background: linear-gradient(
    135deg,
    rgb(255, 0, 0) 0%,
    rgb(255, 0, 255) 100%
  ) !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border: none !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: 0.1s;
  overflow: hidden;
  position: relative;
  min-width: 180px;
  text-align: center;
  line-height: 1;
  margin-top: 10px;
}
.module-promo-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.module-promo-cta:hover .module-promo-cta-shine {
  animation: module-promo-shine 1s;
}
.module-promo-cta-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
}
@keyframes module-promo-shine {
  100% {
    left: 100%;
  }
}

.module-promo-helper {
  font-size: 12px;
  margin-bottom: 4px;
}
.module-promo.dark-theme .module-promo-helper {
  color: rgba(255, 255, 255, 0.7) !important;
}
.module-promo.light-theme .module-promo-helper {
  color: rgba(0, 0, 0, 0.7) !important;
}
.module-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.module-promo-toast {
  position: absolute;
  right: 14px;
  top: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  z-index: 10;
}
.module-promo.dark-theme .module-promo-toast {
  background: rgba(26, 226, 140, 0.14);
  border: 1px solid rgba(26, 226, 140, 0.35);
  color: #bfffe2;
}
.module-promo.light-theme .module-promo-toast {
  background: rgba(0, 150, 0, 0.1);
  border: 1px solid rgba(0, 150, 0, 0.3);
  color: #006600;
}
.module-promo-toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .module-promo {
    padding: 18px;
  }
  .module-promo-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .module-promo-media img {
    aspect-ratio: 16/9;
  }
  .module-promo-actions {
    justify-content: center;
  }
  .module-promo-body {
    align-items: stretch;
  }
  .module-promo-h1 {
    margin-bottom: 6px;
  }
  .module-promo-cta {
    min-width: 160px;
    padding: 15px 30px !important;
  }
}

h2 {
  font-size: 30px;
  line-height: 32px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 15px;
}

h3 {
  font-size: 28px;
  line-height: 30px;
  font-weight: 700;
  margin: 15px;
}

/* faq */
.faq h3.faq-question {
  margin: 0;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq h3.faq-question span.faq-icon {
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq p.faq-answer {
  display: none;
  margin: 0;
  padding: 0 0 16px;
  border-bottom: 1px solid rgb(255, 255, 255, 0.05);
}

.faq h3.faq-question.is-open span.faq-icon {
  transform: rotate(180deg);
}

.faq p.faq-answer.is-open {
  display: block;
}
