*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --c-bg: #3099fe;
  --c-nav: #f1f3f9;
  --c-btn-pri: #0484ff;
  --c-btn-sec: #f1f3f9;
  --c-text-dark: #1a2035;
  --c-text-light: #f1f3f9;
  --c-white: #ffffff;
  --c-card: #ffffff;
  --c-card-alt: #e8f0ff;
  --c-border: #c5d5f0;
  --c-plus: #1db954;
  --c-minus: #e53935;
  --c-gold: #ffb800;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(4, 132, 255, 0.18);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.1);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
html {
  scroll-behavior: smooth;
  background: var(--c-bg);
  font-size: 16px;
  overflow-x: hidden;
}
body {
  font-family: Arial, Tahoma, sans-serif;
  background: var(--c-bg);
  color: var(--c-text-dark);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}
a {
  color: var(--c-btn-pri);
  text-decoration: none;
  transition: opacity var(--transition);
}
a:hover {
  opacity: 0.78;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}
button,
input,
select,
textarea {
  font: inherit;
}

.wp-content-holder,
.wp-widget-area,
.elementor-widget-wrap,
.wpcf7-form,
.entry-meta {
  display: none;
  visibility: hidden;
  position: absolute;
  pointer-events: none;
  overflow: hidden;
  height: 0;
  width: 0;
  opacity: 0;
}
.wp-post-thumbnail,
.attachment-post-thumbnail,
.wp-caption {
  display: none;
}
#wpadminbar,
#wp-toolbar,
.screen-reader-text {
  display: none !important;
}
.xb7k2 {
  display: none;
}
.qr9m1 {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.lp44x {
  display: none;
  position: absolute;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100vw;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  overflow-x: clip;
}
.container--wide {
  max-width: 1400px;
}

.site-header {
  background: var(--c-nav);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  flex-wrap: nowrap;
}
.header-logo img {
  height: 64px;
  width: auto;
  filter: brightness(0);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.header-nav a {
  color: var(--c-text-dark);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 7px;
  transition:
    background var(--transition),
    color var(--transition);
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active {
  background: var(--c-btn-pri);
  color: var(--c-text-light);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.header-online {
  font-size: 0.75rem;
  color: var(--c-text-dark);
  background: #e4f0ff;
  border-radius: 30px;
  padding: 3px 10px;
  font-weight: 700;
  white-space: nowrap;
}
.header-online span {
  color: var(--c-plus);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(4, 132, 255, 0.35);
}
.btn:active {
  transform: translateY(0);
}
.btn--login {
  background: var(--c-btn-sec);
  color: var(--c-text-dark);
}
.btn--signup {
  background: var(--c-btn-pri);
  color: var(--c-white);
}
.btn--bonus {
  background: linear-gradient(135deg, #0484ff, #00c6ff);
  color: var(--c-white);
}
.btn--lg {
  padding: 14px 32px;
  font-size: 1.05rem;
  border-radius: 10px;
}
.btn--sm {
  padding: 6px 13px;
  font-size: 0.8rem;
}
.btn--ghost {
  background: transparent;
  border: 2px solid var(--c-white);
  color: var(--c-white);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  height: 3px;
  background: var(--c-text-dark);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.burger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0060cc 0%, #3099fe 60%, #00c6ff 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 48px 24px;
}
.hero__title {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--c-white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
  line-height: 1.55;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-slider {
  position: relative;
  overflow: hidden;
}
.hero-slider__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slider__slide {
  min-width: 100%;
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0060cc, #3099fe);
}
.hero-slider__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.hero-slider__content {
  position: relative;
  z-index: 2;
  padding: 40px 32px;
  max-width: 560px;
}
.hero-slider__title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--c-white);
  margin-bottom: 12px;
}
.hero-slider__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 22px;
}
.hero-slider__nav {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.hero-slider__dot.active {
  background: var(--c-white);
}
.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.22);
  border: none;
  color: var(--c-white);
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background var(--transition);
}
.hero-slider__arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}
.hero-slider__arrow--prev {
  left: 12px;
}
.hero-slider__arrow--next {
  right: 12px;
}

.section {
  padding: 48px 0;
}
.section--alt {
  background: linear-gradient(180deg, #e8f4ff 0%, #f5f9ff 100%);
}
.section--dark {
  background: linear-gradient(135deg, #0060cc, #3099fe);
  color: var(--c-white);
}
.section__title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--c-text-dark);
  margin-bottom: 8px;
}
.section__sub {
  color: #5a7199;
  margin-bottom: 32px;
  font-size: 1rem;
}
.section--dark .section__title,
.section--dark .section__sub {
  color: var(--c-white);
}

.card {
  background: var(--c-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card__body {
  padding: 20px;
}
.card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--c-text-dark);
}
.card__text {
  font-size: 0.9rem;
  color: #5a7199;
  line-height: 1.5;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}
.pros-cons__col {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-card);
}
.pros-cons__col--plus {
  border-top: 4px solid var(--c-plus);
}
.pros-cons__col--minus {
  border-top: 4px solid var(--c-minus);
}
.pros-cons__head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.pros-cons__head--plus {
  color: var(--c-plus);
}
.pros-cons__head--minus {
  color: var(--c-minus);
}
.pros-cons__list li {
  padding: 7px 0;
  font-size: 0.93rem;
  color: var(--c-text-dark);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-bottom: 1px solid var(--c-border);
  line-height: 1.45;
}
.pros-cons__list li:last-child {
  border-bottom: none;
}
.pros-cons__list li::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}
.pros-cons__col--plus .pros-cons__list li::before {
  background: var(--c-plus);
}
.pros-cons__col--minus .pros-cons__list li::before {
  background: var(--c-minus);
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -4px;
  max-width: 100%;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
thead tr {
  background: var(--c-btn-pri);
  color: var(--c-white);
}
th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}
td {
  padding: 11px 16px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text-dark);
}
tr:last-child td {
  border-bottom: none;
}
tbody tr:nth-child(even) {
  background: var(--c-card-alt);
}
tbody tr:hover {
  background: #d6eaff;
}
td a {
  color: var(--c-btn-pri);
  font-weight: 600;
  text-decoration: none;
}
td a:hover {
  text-decoration: underline;
}

.screenshots-slider {
  position: relative;
  overflow: hidden;
}
.screenshots-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.screenshots-track img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.game-card {
  background: var(--c-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.game-card__img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.game-card__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.game-card__name {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--c-text-dark);
}
.game-card__provider {
  font-size: 0.78rem;
  color: #5a7199;
}

.wheel-section {
  background: linear-gradient(135deg, #0060cc, #0484ff);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow);
  margin: 12px 0;
}
.wheel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.wheel-canvas-wrap {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}
#wheelCanvas {
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.wheel-pointer {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid var(--c-gold);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}
.wheel-result {
  margin-top: 12px;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--c-white);
  font-size: 1.1rem;
  font-weight: 700;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: opacity var(--transition);
}
.wheel-result.hidden {
  opacity: 0;
  pointer-events: none;
}
.wheel-section .section__title {
  color: var(--c-white);
  text-align: center;
}

.content-review {
  background: var(--c-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px 32px;
  margin: 12px 0;
  overflow-x: hidden;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.content-review h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--c-text-dark);
  margin: 20px 0 8px;
}
.content-review h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text-dark);
  margin: 16px 0 6px;
}
.content-review p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--c-text-dark);
  margin-bottom: 12px;
}
.content-review ul,
.content-review ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
.content-review li {
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--c-text-dark);
  margin-bottom: 4px;
}
.content-review table {
  width: 100%;
  margin-bottom: 16px;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
.content-review img {
  max-width: 100%;
  height: auto;
}
.content-review a {
  color: var(--c-btn-pri);
  text-decoration: underline;
}
.content-review strong {
  font-weight: 700;
}
.content-review em {
  font-style: italic;
}

.author-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--c-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 22px 26px;
  margin: 12px 0;
}
.author-card__img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--c-btn-pri);
}
.author-card__name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--c-text-dark);
  margin-bottom: 4px;
}
.author-card__bio {
  font-size: 0.88rem;
  color: #5a7199;
  line-height: 1.5;
  margin-bottom: 10px;
}
.author-card__links {
  display: flex;
  gap: 10px;
}
.author-card__links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-btn-pri);
  text-decoration: none;
  border: 1px solid var(--c-btn-pri);
  border-radius: 20px;
  padding: 4px 12px;
  transition:
    background var(--transition),
    color var(--transition);
}
.author-card__links a:hover {
  background: var(--c-btn-pri);
  color: var(--c-white);
}

.site-footer {
  background: var(--c-nav);
  border-top: 2px solid var(--c-border);
  padding: 40px 0 20px;
  margin-top: auto;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
  margin-bottom: 28px;
}
.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
  filter: brightness(0);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a {
  color: var(--c-text-dark);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition);
}
.footer-nav a:hover {
  color: var(--c-btn-pri);
}
.footer-nav-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.footer-section-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--c-text-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-payments,
.footer-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.footer-payments span,
.footer-providers span {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 5px 11px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-text-dark);
}
.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.footer-copyright {
  font-size: 0.8rem;
  color: #5a7199;
}
.footer-legal {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 0.8rem;
  color: #5a7199;
  text-decoration: none;
}
.footer-legal a:hover {
  color: var(--c-btn-pri);
}
.footer-18 {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--c-minus);
  border: 2px solid var(--c-minus);
  border-radius: 6px;
  padding: 2px 8px;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: linear-gradient(90deg, #0060cc, #0484ff);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(4, 132, 255, 0.35);
}
.sticky-widget__text {
  color: var(--c-white);
  font-size: 0.92rem;
  font-weight: 700;
  flex: 1;
}
.sticky-widget__text span {
  color: var(--c-gold);
  font-size: 1rem;
}
.sticky-widget__btn {
  background: var(--c-gold);
  color: var(--c-text-dark);
  font-weight: 900;
  padding: 9px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.sticky-widget__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 184, 0, 0.5);
}
.sticky-widget__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  flex-shrink: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 14px 0;
  font-size: 0.85rem;
  color: #5a7199;
}
.breadcrumb a {
  color: var(--c-btn-pri);
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb__sep {
  color: #aec3e0;
}

.bonus-card {
  background: var(--c-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px;
  border-left: 4px solid var(--c-btn-pri);
  margin-bottom: 16px;
}
.bonus-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-text-dark);
  margin-bottom: 6px;
}
.bonus-card__value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--c-btn-pri);
  margin-bottom: 8px;
}
.bonus-card__desc {
  font-size: 0.9rem;
  color: #5a7199;
  line-height: 1.5;
}

.promo-block {
  background: linear-gradient(135deg, #0060cc, #0484ff);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  margin: 16px 0;
}
.promo-block__label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-weight: 700;
}
.promo-block__code {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--c-gold);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  word-break: break-all;
}
.promo-block__copy {
  background: var(--c-white);
  color: var(--c-btn-pri);
  border: none;
  padding: 10px 28px;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  font-size: 1rem;
  transition:
    background var(--transition),
    color var(--transition);
}
.promo-block__copy:hover {
  background: var(--c-gold);
  color: var(--c-text-dark);
}
.promo-block__note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 10px;
}

.faq {
  margin: 12px 0;
}
.faq__item {
  background: var(--c-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq__item:hover {
  box-shadow: var(--shadow);
}
.faq__q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color var(--transition);
}
.faq__q:hover {
  color: var(--c-btn-pri);
}
.faq__q svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--c-btn-pri);
}
.faq__item.open .faq__q svg {
  transform: rotate(180deg);
}
.faq__a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  font-size: 0.93rem;
  color: #5a7199;
  line-height: 1.6;
  transition:
    max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    padding var(--transition);
}
.faq__item.open .faq__a {
  max-height: 400px;
  padding: 0 20px 18px;
}

.video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.spec-table {
  background: var(--c-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}
.spec-table td:first-child {
  font-weight: 700;
  color: #5a7199;
  background: var(--c-card-alt);
  width: 45%;
}

.reg-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.reg-method {
  background: var(--c-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 20px;
  text-align: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.reg-method:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.reg-method__icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.reg-method__name {
  font-weight: 800;
  color: var(--c-text-dark);
  margin-bottom: 6px;
}
.reg-method__desc {
  font-size: 0.85rem;
  color: #5a7199;
  line-height: 1.4;
}

.perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--c-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 18px;
}
.perk__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.perk__title {
  font-weight: 700;
  color: var(--c-text-dark);
  margin-bottom: 4px;
}
.perk__desc {
  font-size: 0.87rem;
  color: #5a7199;
  line-height: 1.45;
}

.alt-apps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.alt-app {
  background: var(--c-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 18px;
  text-align: center;
  transition: transform var(--transition);
}
.alt-app:hover {
  transform: translateY(-3px);
}
.alt-app__name {
  font-weight: 800;
  color: var(--c-text-dark);
  margin-bottom: 6px;
}
.alt-app__desc {
  font-size: 0.82rem;
  color: #5a7199;
}

.mirror-link-block {
  background: linear-gradient(135deg, #0060cc, #0484ff);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
  margin: 16px 0;
}
.mirror-link-block__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 12px;
}
.mirror-link-block__url {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.slot-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(0, 0, 0, 0.75);
  align-items: center;
  justify-content: center;
}
.slot-popup.active {
  display: flex;
}
.slot-popup__inner {
  background: var(--c-text-dark);
  border-radius: var(--radius);
  width: 90%;
  max-width: 820px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}
.slot-popup__close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: var(--c-white);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 5;
  line-height: 1;
}
.slot-popup__game {
  width: 100%;
  height: 500px;
  border: none;
}

.bonuses-slider {
  position: relative;
  overflow: hidden;
}
.bonuses-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.bonuses-track .bonus-card {
  min-width: 280px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.spec-item {
  background: var(--c-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 16px;
}
.spec-item__label {
  font-size: 0.82rem;
  color: #5a7199;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 4px;
  font-weight: 700;
}
.spec-item__value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text-dark);
}

.slot-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.slot-feature {
  background: var(--c-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 20px;
  text-align: center;
  transition: transform var(--transition);
}
.slot-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.slot-feature__icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.slot-feature__title {
  font-weight: 800;
  font-size: 0.97rem;
  color: var(--c-text-dark);
  margin-bottom: 4px;
}
.slot-feature__desc {
  font-size: 0.83rem;
  color: #5a7199;
  line-height: 1.4;
}

.time-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-btn-pri);
  color: var(--c-white);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.page-content {
  background: var(--c-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 32px 36px;
  margin: 24px 0;
  overflow-x: hidden;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.page-content h1 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--c-text-dark);
  margin-bottom: 18px;
}
.page-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-text-dark);
  margin: 22px 0 8px;
}
.page-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text-dark);
  margin: 16px 0 6px;
}
.page-content p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--c-text-dark);
  margin-bottom: 12px;
}
.page-content ul,
.page-content ol {
  padding-left: 22px;
  margin-bottom: 14px;
  list-style: disc;
}
.page-content ol {
  list-style: decimal;
}
.page-content li {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--c-text-dark);
  margin-bottom: 5px;
}
.page-content a {
  color: var(--c-btn-pri);
  text-decoration: underline;
}
.page-content a:hover {
  opacity: 0.8;
}
.page-content strong {
  font-weight: 700;
}
.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 0.93rem;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
.page-content img {
  max-width: 100%;
  height: auto;
}
.page-content th {
  background: var(--c-btn-pri);
  color: var(--c-white);
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
}
.page-content td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text-dark);
}
.page-content tbody tr:nth-child(even) {
  background: var(--c-card-alt);
}

.online-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-plus);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s,
    transform 0.5s;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 769px) {
  .bonuses-slider {
    overflow: visible;
  }
  .bonuses-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
  }
  .bonuses-track .bonus-card {
    min-width: 0;
  }
}

@media (max-width: 960px) {
  .pros-cons {
    grid-template-columns: 1fr;
  }
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .reg-methods {
    grid-template-columns: 1fr 1fr;
  }
  .perks {
    grid-template-columns: 1fr;
  }
  .alt-apps {
    grid-template-columns: 1fr 1fr;
  }
  .specs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .slot-features {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--c-nav);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
    gap: 4px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 199;
  }
  .header-nav.open {
    display: flex;
  }
  .burger {
    display: flex;
  }
  .hero__title {
    font-size: 1.7rem;
  }
  .hero__inner {
    padding: 36px 16px;
  }
  .hero-slider__title {
    font-size: 1.4rem;
  }
  .hero-slider__content {
    padding: 32px 20px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .games-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reg-methods {
    grid-template-columns: 1fr;
  }
  .alt-apps {
    grid-template-columns: 1fr;
  }
  .slot-features {
    grid-template-columns: 1fr;
  }
  .specs-grid {
    grid-template-columns: 1fr;
  }
  .slot-popup__game {
    height: 320px;
  }
  .perks {
    grid-template-columns: 1fr;
  }
  .page-content {
    padding: 20px 16px;
  }
  .content-review {
    padding: 18px 16px;
  }
  .author-card {
    flex-direction: column;
  }
  .bonuses-track .bonus-card {
    min-width: calc(100vw - 64px);
  }
  .sticky-widget {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .screenshots-slider {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .screenshots-track {
    display: flex;
    gap: 16px;
    width: max-content;
  }
  .screenshots-track img {
    min-width: 80vw;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .header-actions .btn--login {
    display: none;
  }
  .games-grid {
    grid-template-columns: 1fr;
  }
  .hero__title {
    font-size: 1.4rem;
  }
  .promo-block__code {
    font-size: 1.7rem;
  }
  .bonuses-track .bonus-card {
    min-width: calc(100vw - 48px);
  }
  .bonus-card__value {
    font-size: 1.5rem;
  }
  .promo-block {
    padding: 22px 16px;
  }
  .wheel-canvas-wrap {
    width: 260px;
    height: 260px;
  }
  #wheelCanvas {
    width: 260px;
    height: 260px;
  }
}

.x9f2a,
.wp-content-placeholder,
.wp-post-meta {
  display: none;
}
.elementor-section-wrap,
.fl-builder-content {
  display: none;
  visibility: hidden;
  height: 0;
}
