@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700;900&display=swap");

:root {
  --color-bg: #171e24;
  --color-header: #13161b;
  --color-footer: #13161b;
  --color-btn-login: #14161d;
  --color-btn-reg: #1be952;
  --color-text: #e8edf2;
  --color-text-muted: #8a96a3;
  --color-accent: #1be952;
  --color-accent-dark: #15c044;
  --color-border: #232b34;
  --color-card: #1c2430;
  --color-card2: #1f2a35;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --font-main: "Roboto", Arial, sans-serif;
  --transition: 0.22s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--color-accent-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.xw9k2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.m7b3q {
  width: 100%;
}

.v4p1r {
  display: none;
}

.q8n5t {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.site-header {
  background: var(--color-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.header-logo img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.header-nav a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active-nav {
  background: rgba(27, 233, 82, 0.1);
  color: var(--color-accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    opacity var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}

.btn-login {
  background: var(--color-btn-login);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-login:hover {
  background: #1c2030;
  color: var(--color-text);
  border-color: #3a4455;
}

.btn-reg {
  background: var(--color-btn-reg);
  color: #0a1a0e;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(27, 233, 82, 0.28);
}

.btn-reg:hover {
  background: #22ff60;
  color: #0a1a0e;
  box-shadow: 0 0 28px rgba(27, 233, 82, 0.45);
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--color-header);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 20px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  animation: slide-down 0.25s ease;
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--color-text-muted);
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
  display: block;
}

.mobile-menu a:hover {
  background: rgba(27, 233, 82, 0.1);
  color: var(--color-accent);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1318 0%, #1a2b1a 60%, #0b1510 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.22;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 19, 24, 0.92) 0%,
    rgba(13, 19, 24, 0.5) 60%,
    rgba(13, 19, 24, 0.1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background: rgba(27, 233, 82, 0.15);
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(27, 233, 82, 0.3);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
  text-balance: balance;
}

.hero h1 span {
  color: var(--color-accent);
}

.hero p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.65;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.slider-wrap {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
  border: none;
}

.slider-dot.active {
  background: var(--color-accent);
  transform: scale(1.3);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13, 19, 24, 0.85);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition);
  font-size: 1.1rem;
}

.slider-arrow:hover {
  background: var(--color-accent);
  color: #0a1a0e;
}
.slider-arrow.prev {
  left: 8px;
}
.slider-arrow.next {
  right: 8px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 60px 0;
}

.section-sm {
  padding: 40px 0;
}

.section-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.section-head {
  margin-bottom: 28px;
}

.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.card-body {
  padding: 20px;
}

.cards-grid {
  display: flex;
  gap: 20px;
}

.cards-grid .card {
  flex: 1;
  min-width: 260px;
}

/* ===== MIRROR TABLE ===== */
.mirror-block {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0 0 32px;
}

.mirror-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.mirror-datetime {
  font-size: 0.82rem;
  color: var(--color-accent);
  background: rgba(27, 233, 82, 0.08);
  border: 1px solid rgba(27, 233, 82, 0.2);
  padding: 5px 12px;
  border-radius: 20px;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: transparent;
}

table th {
  text-align: left;
  padding: 12px 16px;
  background: rgba(27, 233, 82, 0.07);
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
}

table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  vertical-align: middle;
}

table tr:last-child td {
  border-bottom: none;
}
table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 600;
}

.status-ok {
  background: rgba(27, 233, 82, 0.12);
  color: var(--color-accent);
  border: 1px solid rgba(27, 233, 82, 0.25);
}
.status-warn {
  background: rgba(255, 180, 0, 0.12);
  color: #ffb400;
  border: 1px solid rgba(255, 180, 0, 0.25);
}

/* ===== SCREENSHOTS BLOCK ===== */
.screenshots-grid {
  display: flex;
  gap: 16px;
}

.screenshot-item {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-card);
  min-height: 200px;
}

.screenshot-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.screenshot-item:hover img {
  transform: scale(1.03);
}

/* ===== TOURNAMENT CARD ===== */
.tournament-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.tournament-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.tournament-prize {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
}

.tournament-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.tournament-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.tournament-timer {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: auto;
}

.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(27, 233, 82, 0.08);
  border: 1px solid rgba(27, 233, 82, 0.15);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  min-width: 44px;
}

.timer-num {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.timer-label {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 3px;
}

.timer-sep {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: -6px;
}

/* ===== BONUS CARD ===== */
.bonus-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  flex: 1;
  min-width: 260px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.bonus-card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  background: linear-gradient(135deg, #1a2b1a, #0d1318);
}

.bonus-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bonus-tag {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  background: rgba(27, 233, 82, 0.12);
  color: var(--color-accent);
  border: 1px solid rgba(27, 233, 82, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: fit-content;
}

.bonus-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.bonus-card-desc {
  font-size: 0.87rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.bonus-card-amount {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--color-accent);
}

.demo-block {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.demo-block iframe {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
}

.content-block {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.content-block h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.3;
}
.content-block h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 20px 0 10px;
}
.content-block h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 16px 0 8px;
}
.content-block p {
  margin: 0 0 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.content-block ul,
.content-block ol {
  margin: 0 0 14px 22px;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.content-block li {
  margin-bottom: 6px;
}
.content-block a {
  color: var(--color-accent);
}
.content-block strong {
  color: var(--color-text);
}
.content-block table {
  margin: 16px 0;
}
.content-block table th {
  background: rgba(27, 233, 82, 0.07);
  color: var(--color-accent);
}
.content-block table td {
  color: var(--color-text-muted);
}
.content-block blockquote {
  border-left: 3px solid var(--color-accent);
  padding: 10px 20px;
  margin: 16px 0;
  background: rgba(27, 233, 82, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--color-text-muted);
  font-style: italic;
}

/* ===== FAQ ===== */
.faq-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(27, 233, 82, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  font-size: 0.97rem;
  user-select: none;
  gap: 12px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(27, 233, 82, 0.1);
  border: 1px solid rgba(27, 233, 82, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background var(--transition),
    transform var(--transition);
  color: var(--color-accent);
  font-size: 1rem;
  font-weight: 300;
}

.faq-item.open .faq-icon {
  background: var(--color-accent);
  color: #0a1a0e;
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 0.93rem;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-footer);
  border-top: 1px solid var(--color-border);
  padding: 48px 0 24px;
}

.footer-grid {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 240px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}
.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}
.footer-desc {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.87rem;
  margin-bottom: 8px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-logo-badge {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
  white-space: nowrap;
  transition:
    border-color var(--transition),
    color var(--transition);
}

.footer-logo-badge:hover {
  border-color: rgba(27, 233, 82, 0.35);
  color: var(--color-text);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}
.footer-legal {
  font-size: 0.73rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 600px;
}

/* ===== WIDGET ===== */
.bottom-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: linear-gradient(90deg, #0d1318 0%, #0e1a10 100%);
  border-top: 2px solid var(--color-accent);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(27, 233, 82, 0.18);
}

.widget-text {
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 500;
}
.widget-bonus {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--color-accent);
  margin-top: 2px;
}

.widget-close {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  flex-shrink: 0;
}

.widget-close:hover {
  color: var(--color-text);
}

/* ===== PROMO CODE BLOCK ===== */
.promo-block {
  background: linear-gradient(
    135deg,
    rgba(27, 233, 82, 0.08) 0%,
    rgba(27, 233, 82, 0.03) 100%
  );
  border: 2px dashed rgba(27, 233, 82, 0.4);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.promo-code-display {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 16px 0;
}

.promo-code-text {
  padding: 14px 24px;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--color-accent);
}

.promo-copy-btn {
  padding: 14px 20px;
  background: var(--color-accent);
  color: #0a1a0e;
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.promo-copy-btn:hover {
  background: #22ff60;
}

/* ===== BONUS COMPARE TABLE ===== */
.bonus-compare-table table th {
  min-width: 120px;
}
.bonus-compare-table .check {
  color: var(--color-accent);
  font-size: 1.1rem;
}
.bonus-compare-table .cross {
  color: #ff4d4d;
  font-size: 1.1rem;
}

/* ===== AUTHOR BLOCK ===== */
.author-block {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(27, 233, 82, 0.35);
}

.author-info {
  flex: 1;
}
.author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.author-role {
  font-size: 0.82rem;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 10px;
}
.author-bio {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.author-links {
  display: flex;
  gap: 10px;
}
.author-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  padding: 5px 12px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  transition:
    border-color var(--transition),
    color var(--transition);
}
.author-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ===== REVIEWS ===== */
.review-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-border);
}
.review-name {
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
}
.review-date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.stars {
  display: flex;
  gap: 3px;
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: #f5c518;
}

.review-text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===== REVIEW FORM ===== */
.review-form {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 540px;
}

.review-form h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.form-input,
.form-textarea {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 11px 15px;
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 0.92rem;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}
.form-success {
  display: none;
  padding: 14px;
  background: rgba(27, 233, 82, 0.1);
  border: 1px solid rgba(27, 233, 82, 0.3);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 12px;
}

/* ===== INFO TABLE ===== */
.info-table table {
  width: auto;
  min-width: 340px;
}
.info-table table td:first-child {
  color: var(--color-text-muted);
  font-weight: 500;
  white-space: nowrap;
  padding-right: 28px;
}
.info-table table td:last-child {
  color: #fff;
  font-weight: 500;
}

/* ===== DOWNLOAD BTNS ===== */
.download-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  color: var(--color-text);
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  min-width: 190px;
}

.dl-btn:hover {
  border-color: rgba(27, 233, 82, 0.5);
  color: var(--color-text);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.dl-btn-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.dl-btn-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dl-btn-sub {
  font-size: 0.73rem;
  color: var(--color-text-muted);
}
.dl-btn-name {
  font-size: 1rem;
  font-weight: 700;
}

/* ===== SLOTS GRID ===== */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.slot-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.slot-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  border-color: rgba(27, 233, 82, 0.3);
}

.slot-img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  display: block;
}

.slot-info {
  padding: 14px;
}
.slot-name {
  font-weight: 600;
  color: #fff;
  font-size: 0.93rem;
  margin-bottom: 4px;
}
.slot-provider {
  font-size: 0.78rem;
  color: var(--color-accent);
}
.slot-play-btn {
  display: block;
  text-align: center;
  background: var(--color-btn-reg);
  color: #0a1a0e;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 9px;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: background var(--transition);
}
.slot-play-btn:hover {
  background: #22ff60;
}

.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.popup-overlay.active {
  display: flex;
}

.popup-box {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  width: 92%;
  max-width: 860px;
  overflow: hidden;
  position: relative;
  animation: pop-in 0.3s ease;
}

@keyframes pop-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--color-text);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background var(--transition);
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.16);
}

.popup-box iframe {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
}

/* ===== SECURITY BLOCK ===== */
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.security-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.security-icon {
  font-size: 2rem;
}
.security-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: #fff;
}
.security-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.mirror-problem-block {
  background: var(--color-card);
  border: 1px solid rgba(255, 180, 0, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.mirror-problem-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffb400;
  margin-bottom: 14px;
}

.mirror-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* ===== PROVIDERS ===== */
.providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.provider-badge {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-weight: 500;
  transition:
    border-color var(--transition),
    color var(--transition);
  cursor: default;
}

.provider-badge:hover {
  border-color: rgba(27, 233, 82, 0.35);
  color: var(--color-text);
}

/* ===== ALTERNATIVES BLOCK ===== */
.alt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.alt-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  transition:
    border-color var(--transition),
    transform var(--transition);
  text-decoration: none;
  color: var(--color-text);
}

.alt-card:hover {
  border-color: rgba(27, 233, 82, 0.3);
  transform: translateY(-2px);
  color: var(--color-text);
}
.alt-card-name {
  font-weight: 700;
  font-size: 0.97rem;
  color: #fff;
}
.alt-card-bonus {
  font-size: 0.8rem;
  color: var(--color-accent);
}

.technical-content {
  padding: 60px 0;
}

.technical-content h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
.technical-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 12px;
}
.technical-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 20px 0 10px;
}
.technical-content p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.technical-content ul,
.technical-content ol {
  color: var(--color-text-muted);
  margin: 0 0 14px 24px;
  line-height: 1.75;
}
.technical-content li {
  margin-bottom: 6px;
}
.technical-content a {
  color: var(--color-accent);
}
.technical-content strong {
  color: var(--color-text);
}

/* ===== MISC ===== */
.divider {
  height: 1px;
  background: var(--color-border);
  margin: 40px 0;
}

.text-accent {
  color: var(--color-accent) !important;
}
.text-muted {
  color: var(--color-text-muted);
}
.fw-bold {
  font-weight: 700;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.breadcrumb a {
  color: var(--color-text-muted);
}
.breadcrumb a:hover {
  color: var(--color-accent);
}
.breadcrumb-sep {
  color: var(--color-border);
}

.hero-breadcrumb {
  position: relative;
  z-index: 2;
  padding-top: 20px;
}

/* WP-compat stubs */
.wp-block-group {
  display: block;
}
.wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.wp-block-column {
  flex: 1;
  min-width: 200px;
}
.entry-content {
  display: block;
}
.has-global-padding {
  padding-left: 20px;
  padding-right: 20px;
}
.elementor-section {
  display: block;
}
.elementor-widget-wrap {
  display: flex;
  flex-direction: column;
}
.yoast-seo-meta-tag {
  display: none;
}
.wp-site-blocks {
  display: block;
}
.woocommerce-product-gallery {
  display: none;
}
.elementor-icon-box-icon {
  display: none;
}
.wp-caption-text {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* === UNUSED STUBS FOR UNIQUALIZATION === */
.qr7x9w {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
.tz3m1k {
  color: transparent;
  font-size: 0;
}
.bn6v2p {
  display: none;
  visibility: hidden;
}
.jh4r8c::before {
  content: "";
  display: none;
}
.nm9s5d {
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .header-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }

  .cards-grid {
    flex-wrap: wrap;
  }
  .cards-grid .card {
    min-width: 100%;
  }
  .screenshots-grid {
    flex-wrap: wrap;
  }
  .screenshot-item {
    min-width: calc(50% - 8px);
  }
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    flex-direction: column;
    gap: 28px;
  }
  .footer-brand {
    max-width: 100%;
  }
  .hero-content {
    padding: 56px 0;
  }
  .author-block {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 360px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero-btns {
    flex-direction: column;
  }
  .btn-lg {
    width: 100%;
  }
  .section {
    padding: 40px 0;
  }
  .screenshots-grid {
    flex-direction: column;
  }
  .screenshot-item {
    min-width: 100%;
  }
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bottom-widget {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .download-btns {
    flex-direction: column;
  }
  .dl-btn {
    min-width: 100%;
  }
  .promo-code-display {
    flex-direction: column;
    width: 100%;
  }
  .promo-code-text {
    width: 100%;
  }
  .promo-copy-btn {
    width: 100%;
  }
  .table-wrap {
    font-size: 0.82rem;
  }
  .demo-block iframe {
    height: 300px;
  }
  .popup-box iframe {
    height: 300px;
  }
  .mirror-actions {
    flex-direction: column;
  }
  .mirror-actions .btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .slots-grid {
    grid-template-columns: 1fr 1fr;
  }
  .info-table table {
    min-width: 280px;
  }
}

/* final responsive and technical pages fixes */
.technical-shell {
  padding: 48px 0 72px;
  min-height: 70vh;
}

.technical-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(27, 39, 50, 0.98), rgba(17, 25, 32, 0.98));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 48px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.technical-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent 70%);
}

.technical-card .technical-content {
  padding: 0;
}

.technical-card .technical-content > :first-child {
  margin-top: 0;
}

.technical-card .technical-content > :last-child {
  margin-bottom: 0;
}

.technical-card .technical-content h2 {
  padding-top: 8px;
}

.technical-card .technical-content blockquote,
.content-block blockquote {
  border-left: 3px solid var(--color-accent);
  background: rgba(27, 233, 82, 0.06);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.content-table-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.content-table-scroll table {
  margin: 0;
  min-width: 640px;
}

.content-block,
.technical-content {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

.content-block img,
.content-block video,
.content-block iframe,
.technical-content img,
.technical-content video,
.technical-content iframe {
  max-width: 100%;
  height: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-block {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 28px 22px;
  background: linear-gradient(145deg, rgba(28, 41, 52, 0.98), rgba(18, 27, 35, 0.98));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.stat-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), rgba(27, 233, 82, 0));
}

.stat-num {
  display: block;
  margin-bottom: 8px;
  color: var(--color-accent);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (min-width: 901px) {
  .slider-wrap[data-slider] {
    overflow: visible;
  }

  .slider-wrap[data-slider] .slider-track {
    transform: none !important;
    width: 100%;
    overflow: visible;
  }

  .slider-wrap[data-slider] .slider-arrow,
  .slider-wrap[data-slider] .slider-controls {
    display: none !important;
  }

  .slider-wrap[data-slider] .slider-track > * {
    min-width: 0;
  }
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .slider-wrap[data-slider] {
    overflow: hidden;
    padding-bottom: 6px;
  }

  .slider-wrap[data-slider] .slider-track {
    display: flex;
    flex-wrap: nowrap !important;
    gap: 14px;
    will-change: transform;
  }

  .slider-wrap[data-slider] .slider-track > * {
    flex: 0 0 calc(50% - 7px) !important;
    min-width: calc(50% - 7px) !important;
    max-width: calc(50% - 7px) !important;
  }
}

@media (max-width: 600px) {
  .technical-shell {
    padding: 24px 0 48px;
  }

  .technical-card,
  .content-block {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .technical-card .technical-content h1 {
    font-size: 1.65rem;
  }

  .technical-card .technical-content h2,
  .content-block h2 {
    font-size: 1.28rem;
  }

  .content-table-scroll {
    margin-left: 0;
    margin-right: 0;
    border-radius: 10px;
  }

  .content-table-scroll table {
    min-width: 560px;
  }

  .slider-wrap[data-slider] {
    overflow: hidden;
  }

  .slider-wrap[data-slider] .slider-track > * {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }

  .slider-wrap[data-slider] .slider-arrow {
    display: flex;
    width: 38px;
    height: 38px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .stat-block {
    padding: 20px 14px;
    text-align: center;
  }

  .stat-num {
    font-size: 1.55rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 380px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
