*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background-color: #0b0c0d;
  color: #e8e8e8;
  font-family: "Inter", Montserrat, Roboto, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 72px;
}
a {
  color: #bbeb00;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #d4ff00;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
:root {
  --clr-bg: #0b0c0d;
  --clr-surface: #131517;
  --clr-surface2: #1a1c1e;
  --clr-accent: #bbeb00;
  --clr-btn-dark: #1f2021;
  --clr-text: #e8e8e8;
  --clr-muted: #8a8f96;
  --clr-border: #2a2d31;
  --radius: 10px;
  --radius-lg: 16px;
}

.xw9k2m {
  display: none;
}
.ph7r3q {
  visibility: hidden;
  position: absolute;
  left: -9999px;
}
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-pad {
  padding: 72px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.btn:active {
  transform: translateY(0);
}
.btn--dark {
  background: #1f2021;
  color: #e8e8e8;
}
.btn--dark:hover {
  background: #252829;
  color: #e8e8e8;
}
.btn--accent {
  background: #bbeb00;
  color: #0b0c0d;
}
.btn--accent:hover {
  background: #ccff00;
  color: #0b0c0d;
  box-shadow: 0 6px 24px rgba(187, 235, 0, 0.35);
}
.btn--lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 10px;
}
.btn--sm {
  padding: 7px 16px;
  font-size: 13px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0b0c0d;
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
}
.header-logo img {
  height: 68px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav a {
  color: #c8cdd4;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition:
    color 0.2s,
    background 0.2s;
}
.header-nav a:hover {
  color: #fff;
  background: #1a1c1e;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--clr-muted);
  white-space: nowrap;
}
.header-online .dot {
  width: 7px;
  height: 7px;
  background: #4cff91;
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e8e8e8;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.burger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn.active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0b0c0d;
  z-index: 999;
  flex-direction: column;
  padding: 24px 20px;
  gap: 8px;
  overflow-y: auto;
  border-top: 1px solid var(--clr-border);
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  color: #c8cdd4;
  font-size: 16px;
  padding: 12px 8px;
  border-bottom: 1px solid var(--clr-border);
}
.mobile-nav a:hover {
  color: #fff;
}
.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.mobile-nav-actions .btn {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 13px;
}

.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: #0b0c0d;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 12, 13, 0.95) 40%,
    rgba(11, 12, 13, 0.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(187, 235, 0, 0.12);
  border: 1px solid rgba(187, 235, 0, 0.3);
  color: #bbeb00;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero h1 {
  font-family: "Montserrat", Inter, sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
  text-balance: balance;
}
.hero h1 span {
  color: #bbeb00;
}
.hero-desc {
  font-size: 16px;
  color: #b0b5bc;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat strong {
  font-size: 22px;
  font-weight: 700;
  color: #bbeb00;
}
.hero-stat span {
  font-size: 12px;
  color: var(--clr-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.section-title {
  font-family: "Montserrat", Inter, sans-serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  text-balance: balance;
}
.section-sub {
  font-size: 15px;
  color: var(--clr-muted);
  margin-bottom: 36px;
}
.section-header {
  margin-bottom: 36px;
}

.screenshots-grid {
  display: flex;
  gap: 20px;
}
.screenshot-item {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  cursor: pointer;
}
.screenshot-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}
.screenshot-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.screenshot-label {
  background: var(--clr-surface);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #c8cdd4;
}

.tournaments-grid {
  display: flex;
  gap: 20px;
}
.tournament-card {
  flex: 1;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.tournament-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}
.tournament-badge {
  display: inline-block;
  background: rgba(187, 235, 0, 0.12);
  color: #bbeb00;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  width: fit-content;
}
.tournament-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.tournament-card p {
  font-size: 13px;
  color: var(--clr-muted);
  line-height: 1.6;
  flex: 1;
}
.tournament-prize {
  font-size: 22px;
  font-weight: 800;
  color: #bbeb00;
}
.tournament-prize small {
  font-size: 12px;
  color: var(--clr-muted);
  font-weight: 400;
  display: block;
  margin-top: 2px;
}
.tournament-timer {
  display: flex;
  gap: 8px;
  align-items: center;
}
.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--clr-surface2);
  border-radius: 6px;
  padding: 6px 10px;
  min-width: 44px;
}
.timer-block .t-val {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.timer-block .t-lbl {
  font-size: 10px;
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-top: 3px;
}
.timer-sep {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-muted);
  margin-top: -6px;
}
.tournament-link {
  margin-top: auto;
}

.mirrors-block {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.mirrors-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.mirrors-datetime {
  font-size: 13px;
  color: var(--clr-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.mirrors-datetime strong {
  color: #4cff91;
}
.mirrors-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.mirrors-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px;
}
.mirrors-table th {
  background: var(--clr-surface2);
  color: #bbeb00;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--clr-border);
}
.mirrors-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--clr-border);
  font-size: 14px;
  color: #c8cdd4;
  vertical-align: middle;
}
.mirrors-table tr:last-child td {
  border-bottom: none;
}
.mirrors-table tr:hover td {
  background: rgba(187, 235, 0, 0.04);
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}
.status-badge.active {
  background: rgba(76, 255, 145, 0.12);
  color: #4cff91;
}
.status-badge.check {
  background: rgba(255, 165, 0, 0.12);
  color: #ffa500;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.slot-card {
  flex: 0 0 calc(33.333% - 14px);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.slot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
}
.slot-card-img {
  position: relative;
  overflow: hidden;
  height: 180px;
}
.slot-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.slot-card:hover .slot-card-img img {
  transform: scale(1.06);
}
.slot-rtp {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(11, 12, 13, 0.8);
  color: #bbeb00;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.slot-card-body {
  padding: 14px 16px 18px;
}
.slot-card-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.slot-card-body p {
  font-size: 12px;
  color: var(--clr-muted);
  margin-bottom: 12px;
}
.slot-card-actions {
  display: flex;
  gap: 8px;
}
.slot-card-actions .btn {
  flex: 1;
  font-size: 12px;
  padding: 8px 10px;
}

.demo-block {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
}
.demo-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-bottom: 1px solid var(--clr-border);
}
.demo-header h2 {
  margin-bottom: 0;
}
.demo-frame-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}
.demo-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.demo-footer {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background: var(--clr-surface2);
}

.review-block {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--clr-border);
}
.review-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--clr-surface2);
  border: 2px solid var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #bbeb00;
  flex-shrink: 0;
}
.review-author-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.review-author-info span {
  font-size: 12px;
  color: var(--clr-muted);
}
.review-author-info a {
  font-size: 12px;
  color: #bbeb00;
}
.review-content {
  color: #c8cdd4;
  line-height: 1.75;
  font-size: 15px;
}
.review-content h2,
.review-content h3,
.review-content h4 {
  color: #fff;
  margin: 24px 0 10px;
  font-family: "Montserrat", Inter, sans-serif;
}
.review-content h2 {
  font-size: 22px;
  font-weight: 700;
}
.review-content h3 {
  font-size: 18px;
  font-weight: 700;
}
.review-content h4 {
  font-size: 16px;
  font-weight: 600;
}
.review-content p {
  margin-bottom: 14px;
}
.review-content ul,
.review-content ol {
  margin: 10px 0 16px 24px;
}
.review-content li {
  margin-bottom: 6px;
  line-height: 1.6;
}
.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
.review-content table th {
  background: var(--clr-surface2);
  color: #bbeb00;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--clr-border);
  font-weight: 600;
}
.review-content table td {
  padding: 10px 14px;
  border: 1px solid var(--clr-border);
  color: #c8cdd4;
}
.review-content a {
  color: #bbeb00;
  text-decoration: underline;
}
.review-content blockquote {
  border-left: 3px solid #bbeb00;
  padding-left: 16px;
  color: var(--clr-muted);
  margin: 16px 0;
  font-style: italic;
}
.review-content strong,
.review-content b {
  color: #fff;
  font-weight: 600;
}
.review-content hr {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 24px 0;
}

.faq-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  gap: 12px;
}
.faq-question span {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--clr-surface2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s,
    background 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(187, 235, 0, 0.15);
}
.faq-icon svg {
  stroke: #bbeb00;
  width: 14px;
  height: 14px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 18px;
}
.faq-answer-inner {
  padding: 0 20px 4px;
  font-size: 14px;
  color: var(--clr-muted);
  line-height: 1.7;
}

.site-footer {
  background: #0b0c0d;
  border-top: 1px solid var(--clr-border);
  padding: 52px 0 24px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}
.footer-brand {
  flex: 0 0 220px;
}
.footer-brand img {
  height: 74px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--clr-muted);
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #bbeb00;
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  font-size: 13px;
  color: var(--clr-muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #fff;
}
.footer-providers {
  margin-bottom: 28px;
}
.footer-providers h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-muted);
  margin-bottom: 12px;
}
.providers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.provider-tag {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  color: #c8cdd4;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 6px;
}
.payments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
}
.payment-tag {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  color: #c8cdd4;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 6px;
  font-weight: 600;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--clr-border);
}
.footer-legal {
  font-size: 12px;
  color: var(--clr-muted);
  line-height: 1.6;
  max-width: 720px;
}
.footer-license {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.license-badge {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--clr-muted);
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: linear-gradient(90deg, #131517 0%, #1a1c1e 100%);
  border-top: 2px solid #bbeb00;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  box-shadow: 0 -4px 24px rgba(187, 235, 0, 0.12);
}
.widget-text {
  font-size: 13px;
  color: #e8e8e8;
  line-height: 1.4;
}
.widget-text strong {
  color: #bbeb00;
  font-size: 15px;
}
.widget-close {
  background: none;
  border: none;
  color: var(--clr-muted);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 4px;
  transition: color 0.2s;
}
.widget-close:hover {
  color: #fff;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--clr-border);
}
.modal-head h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.modal-close {
  background: none;
  border: none;
  color: var(--clr-muted);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  padding: 0 4px;
  transition: color 0.2s;
}
.modal-close:hover {
  color: #fff;
}
.modal-frame {
  position: relative;
  flex: 1;
  min-height: 0;
  padding-bottom: 56.25%;
}
.modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.modal-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  background: var(--clr-surface2);
}

.slider-wrap {
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.slider-dot.active {
  background: #bbeb00;
  transform: scale(1.3);
}
.slider-arrows {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  justify-content: center;
}
.slider-arrow {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  color: #e8e8e8;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.slider-arrow:hover {
  background: var(--clr-surface);
  border-color: #bbeb00;
}
.slider-arrow svg {
  stroke: currentColor;
  width: 16px;
  height: 16px;
}

.wp-content-placeholder {
  display: none;
}

@media (max-width: 1023px) {
  .slot-card {
    flex: 0 0 calc(50% - 10px);
  }
  .footer-top {
    gap: 28px;
  }
}
@media (max-width: 767px) {
  .header-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .section-pad {
    padding: 48px 0;
  }
  .hero {
    min-height: 420px;
  }
  .hero-content {
    padding: 60px 0;
  }
  .screenshots-grid,
  .tournaments-grid {
    display: block;
  }
  .screenshots-grid .screenshot-item,
  .tournaments-grid .tournament-card {
    margin-bottom: 0;
  }
  .slots-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    gap: 14px;
    scrollbar-width: none;
  }
  .slots-grid::-webkit-scrollbar {
    display: none;
  }
  .slot-card {
    flex: 0 0 78vw;
    max-width: 280px;
  }
  .review-block {
    padding: 24px 18px;
  }
  .footer-top {
    flex-direction: column;
    gap: 24px;
  }
  .footer-brand {
    flex: none;
  }
  .mirrors-block {
    padding: 20px 16px;
  }
  .demo-block .demo-header {
    padding: 14px 16px;
  }
  .demo-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .demo-footer .btn {
    text-align: center;
    justify-content: center;
  }
  .sticky-widget {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 479px) {
  .slot-card {
    flex: 0 0 85vw;
  }
  .hero h1 {
    font-size: 26px;
  }
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn {
    justify-content: center;
  }
  .header-actions .btn--dark {
    display: none;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.wp-block-spacer {
  height: 24px;
}
.qr7x9p2 input[type="text"] {
  display: none;
}
.n3k8v1 {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

@media (max-width: 767px) {
  .fade-in {
    opacity: 1;
    transform: none;
  }
}
