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

:root {
  --c-bg: #20242d;
  --c-header: #20242d;
  --c-footer: #181b23;
  --c-accent: #ffb400;
  --c-accent2: #ff8c00;
  --c-btn-login: #2e3341;
  --c-text: #e8eaf0;
  --c-text-muted: #9ca3b0;
  --c-surface: #272b36;
  --c-surface2: #2e3341;
  --c-border: #363c4e;
  --c-white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.22s ease;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --font-main: "Montserrat", "Inter", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--c-accent);
  text-decoration: none;
}
a:hover {
  color: var(--c-accent2);
}

.x9f2a {
  display: none;
}
.qr7b1 {
  visibility: hidden;
  position: absolute;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-gap {
  padding: 64px 0;
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.header-logo img {
  height: 44px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.header-nav a {
  color: var(--c-text);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
  white-space: nowrap;
}
.header-nav a:hover {
  background: var(--c-surface2);
  color: var(--c-accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.online-badge {
  font-size: 11px;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.online-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.15s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
.btn:active {
  transform: translateY(0);
}

.btn-login {
  background: var(--c-btn-login);
  color: var(--c-text);
}
.btn-login:hover {
  background: var(--c-surface2);
  color: var(--c-text);
}
.btn-signup {
  background: var(--c-accent);
  color: #13150e;
}
.btn-signup:hover {
  background: var(--c-accent2);
  color: #13150e;
}
.btn-lg {
  padding: 14px 32px;
  font-size: 15px;
  border-radius: var(--radius);
}
.btn-hero {
  background: var(--c-accent);
  color: #13150e;
  padding: 16px 40px;
  font-size: 16px;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(255, 180, 0, 0.35);
}
.btn-hero:hover {
  background: var(--c-accent2);
  color: #13150e;
  box-shadow: 0 12px 32px rgba(255, 180, 0, 0.45);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: var(--c-surface) url("/draban.jpeg") center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(32, 36, 45, 0.92) 50%,
    rgba(32, 36, 45, 0.6)
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 80px 20px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
.hero-title {
  font-size: clamp(26px, 5vw, 48px);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 640px;
}
.hero-title span {
  color: var(--c-accent);
}
.hero-sub {
  font-size: clamp(14px, 2vw, 17px);
  color: var(--c-text-muted);
  margin-bottom: 28px;
  max-width: 520px;
}

.slider-wrap {
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform 0.45s ease;
}
.slider-slide {
  min-width: 100%;
}
.slider-nav {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.slider-dot.active {
  background: var(--c-accent);
}
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(32, 36, 45, 0.7);
  border: none;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.slider-prev:hover,
.slider-next:hover {
  background: var(--c-accent);
  color: #13150e;
}
.slider-prev {
  left: 12px;
}
.slider-next {
  right: 12px;
}

.section-title {
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 8px;
}
.section-title span {
  color: var(--c-accent);
}
.section-sub {
  color: var(--c-text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}

.tbl-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 0;
}
.tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--c-surface);
  border-radius: var(--radius);
  overflow: hidden;
}
.tbl th {
  background: var(--c-surface2);
  color: var(--c-accent);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--c-border);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tbl td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
  text-align: left;
  vertical-align: top;
}
.tbl tr:last-child td {
  border-bottom: none;
}
.tbl tr:hover td {
  background: rgba(255, 180, 0, 0.04);
}
.tbl td:first-child {
  color: var(--c-text-muted);
  font-weight: 500;
  white-space: nowrap;
}
.tbl td:last-child {
  color: var(--c-white);
  font-weight: 600;
}

.block {
  background: var(--c-surface);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid var(--c-border);
}
.block--accent {
  border-color: var(--c-accent);
  background: var(--c-surface2);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.card {
  background: var(--c-surface2);
  border-radius: var(--radius);
  padding: 24px;
  flex: 1 1 280px;
  border: 1px solid var(--c-border);
  transition:
    transform var(--transition),
    border-color var(--transition);
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--c-accent);
}

.card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 8px;
}
.card-text {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.card-badge {
  display: inline-block;
  background: var(--c-accent);
  color: #13150e;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.advantages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.adv-item {
  background: var(--c-surface2);
  border-radius: var(--radius);
  padding: 20px;
  flex: 1 1 200px;
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: border-color var(--transition);
}
.adv-item:hover {
  border-color: var(--c-accent);
}
.adv-icon {
  font-size: 28px;
}
.adv-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-white);
}
.adv-text {
  font-size: 13px;
  color: var(--c-text-muted);
}

.mirror-date {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}
.mirror-date strong {
  color: var(--c-accent);
}

.tournaments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.tournament-card {
  background: var(--c-surface2);
  border-radius: var(--radius);
  padding: 24px;
  flex: 1 1 280px;
  border: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}
.tournament-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c-accent);
}
.tournament-card:hover {
  transform: translateY(-3px);
}
.tournament-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 8px;
}
.tournament-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}
.tournament-prize {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-accent);
  margin-bottom: 10px;
}
.tournament-timer {
  display: flex;
  gap: 10px;
  align-items: center;
}
.timer-unit {
  text-align: center;
}
.timer-num {
  display: block;
  background: var(--c-btn-login);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 20px;
  font-weight: 800;
  color: var(--c-white);
  min-width: 50px;
}
.timer-label {
  font-size: 10px;
  color: var(--c-text-muted);
  margin-top: 3px;
}
.timer-sep {
  font-size: 20px;
  font-weight: 800;
  color: var(--c-accent);
  margin-top: -2px;
}

.demo-frame-wrap {
  border-radius: var(--radius);
  border: 2px solid var(--c-border);
  position: relative;
  background: #0e1016;
}
.demo-frame-wrap iframe {
  display: block;
  width: 100%;
  border: none;
}
.demo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
  background: #0e1016;
  flex-direction: column;
  gap: 16px;
  color: var(--c-text-muted);
}
.demo-placeholder .dp-icon {
  font-size: 48px;
}

.content-review {
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-text);
}
.content-review h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-white);
  margin: 28px 0 12px;
}
.content-review h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-white);
  margin: 22px 0 10px;
}
.content-review p {
  margin-bottom: 14px;
}
.content-review ul,
.content-review ol {
  margin: 0 0 14px 22px;
}
.content-review li {
  margin-bottom: 6px;
}
.content-review table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 14px;
}
.content-review table th {
  background: var(--c-surface2);
  color: var(--c-accent);
  padding: 10px 14px;
  text-align: left;
  border-bottom: 2px solid var(--c-border);
}
.content-review table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--c-border);
}
.content-review a {
  color: var(--c-accent);
}
.content-review strong {
  color: var(--c-white);
}

/* ============== FAQ ============== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--c-surface2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  color: var(--c-white);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  gap: 10px;
  transition: color var(--transition);
}
.faq-question:hover {
  color: var(--c-accent);
}
.faq-icon {
  font-size: 18px;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--c-accent);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  padding: 0 20px;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 20px 16px;
}
.faq-answer p {
  color: var(--c-text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.site-footer {
  background: var(--c-footer);
  border-top: 1px solid var(--c-border);
  padding: 40px 0 20px;
  margin-top: 60px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 28px;
}
.footer-col {
  flex: 1 1 200px;
}
.footer-logo img {
  height: 38px;
  margin-bottom: 14px;
}
.footer-desc {
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.6;
  max-width: 260px;
}

.footer-nav-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a {
  font-size: 13px;
  color: var(--c-text-muted);
  transition: color var(--transition);
}
.footer-nav a:hover {
  color: var(--c-accent);
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 20px 0;
}
.footer-logo-item {
  background: var(--c-surface2);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
  white-space: nowrap;
}

.footer-legal {
  font-size: 11px;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--c-border);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-copyright {
  font-size: 12px;
  color: var(--c-text-muted);
}

.cta-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #1a1d25 0%, #272b36 100%);
  border-top: 2px solid var(--c-accent);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}
.widget-text {
  font-size: 14px;
  color: var(--c-text);
  font-weight: 500;
}
.widget-text strong {
  color: var(--c-accent);
}
.widget-close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color var(--transition);
}
.widget-close:hover {
  color: var(--c-white);
}
.widget-btn {
  background: var(--c-accent);
  color: #13150e;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--transition),
    box-shadow var(--transition);
}
.widget-btn:hover {
  background: var(--c-accent2);
  color: #13150e;
  box-shadow: 0 4px 14px rgba(255, 180, 0, 0.4);
}

.promo-block {
  background: var(--c-surface2);
  border: 2px solid var(--c-accent);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.promo-label {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.promo-code-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--c-bg);
  border: 2px dashed var(--c-accent);
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  margin: 12px 0 20px;
}
.promo-code {
  font-size: 26px;
  font-weight: 800;
  color: var(--c-accent);
  letter-spacing: 0.12em;
}
.promo-copy {
  background: var(--c-accent);
  color: #13150e;
  border: none;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
}
.promo-copy:hover {
  background: var(--c-accent2);
}
.promo-desc {
  font-size: 13px;
  color: var(--c-text-muted);
}

/* ============== BONUS CARDS ============== */
.bonus-card {
  background: var(--c-surface2);
  border-radius: var(--radius);
  padding: 24px;
  flex: 1 1 260px;
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    transform var(--transition),
    border-color var(--transition);
}
.bonus-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-accent);
}
.bonus-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--c-accent);
}
.bonus-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-white);
}
.bonus-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  flex: 1;
}
.bonus-terms {
  font-size: 11px;
  color: var(--c-text-muted);
  border-top: 1px solid var(--c-border);
  padding-top: 10px;
}

/* ============== COMPARISON TABLE ============== */
.tbl-compare th:first-child {
  min-width: 160px;
}
.tbl-compare .check {
  color: #22c55e;
  font-size: 16px;
}
.tbl-compare .cross {
  color: #ef4444;
  font-size: 16px;
}

/* ============== REVIEWS ============== */
.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.review-card {
  background: var(--c-surface2);
  border-radius: var(--radius);
  padding: 20px;
  flex: 1 1 240px;
  border: 1px solid var(--c-border);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--c-btn-login);
}
.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-white);
}
.review-stars {
  display: flex;
  gap: 2px;
}
.review-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--c-accent);
}
.review-text {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* ============== REVIEW FORM ============== */
.review-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}
.review-form label {
  font-size: 13px;
  color: var(--c-text-muted);
  display: block;
  margin-bottom: 5px;
}
.review-form input,
.review-form textarea {
  width: 100%;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--c-text);
  outline: none;
  transition: border-color var(--transition);
}
.review-form input:focus,
.review-form textarea:focus {
  border-color: var(--c-accent);
}
.review-form textarea {
  min-height: 110px;
  resize: vertical;
}
.form-success {
  display: none;
  background: #162b1a;
  border: 1px solid #22c55e;
  color: #22c55e;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
}

.specs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.spec-item {
  flex: 1 1 200px;
  background: var(--c-surface2);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  border: 1px solid var(--c-border);
}
.spec-label {
  font-size: 11px;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}
.spec-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-white);
}

.screenshots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.screenshot-item {
  flex: 1 1 260px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.screenshot-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.security-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.security-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--c-surface2);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--c-accent);
}
.sec-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.sec-text {
  font-size: 14px;
  color: var(--c-text);
}
.sec-text strong {
  color: var(--c-white);
  display: block;
  margin-bottom: 3px;
}

.author-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--c-surface2);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--c-border);
}
.author-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--c-btn-login);
}
.author-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 5px;
}
.author-role {
  font-size: 12px;
  color: var(--c-accent);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.author-bio {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.author-links {
  display: flex;
  gap: 10px;
}
.author-links a {
  font-size: 12px;
  color: var(--c-accent);
  background: var(--c-btn-login);
  padding: 5px 12px;
  border-radius: 20px;
  transition: background var(--transition);
}
.author-links a:hover {
  background: var(--c-surface2);
  color: var(--c-accent);
}

.slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.slot-card {
  flex: 1 1 160px;
  background: var(--c-surface2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition:
    transform var(--transition),
    border-color var(--transition);
  cursor: pointer;
}
.slot-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-accent);
}
.slot-thumb {
  width: 100%;
  height: 140px;
  object-fit: cover;
  background: var(--c-btn-login);
}
.slot-info {
  padding: 10px 12px;
}
.slot-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 3px;
}
.slot-provider {
  font-size: 11px;
  color: var(--c-text-muted);
}
.slot-rtp {
  font-size: 11px;
  color: var(--c-accent);
  font-weight: 600;
}

.breadcrumb-nav {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.breadcrumb-nav a {
  color: var(--c-text-muted);
}
.breadcrumb-nav a:hover {
  color: var(--c-accent);
}
.breadcrumb-sep {
  color: var(--c-border);
}

.technical-content {
  max-width: 820px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-text);
}
.technical-content h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 20px;
}
.technical-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-white);
  margin: 28px 0 12px;
}
.technical-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-white);
  margin: 20px 0 10px;
}
.technical-content p {
  margin-bottom: 14px;
}
.technical-content ul,
.technical-content ol {
  margin: 0 0 14px 24px;
}
.technical-content li {
  margin-bottom: 6px;
}

.mt-0 {
  margin-top: 0;
}
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-32 {
  margin-top: 32px;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-32 {
  margin-bottom: 32px;
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-header);
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 80px 20px 40px;
  }
  .header-nav.open {
    display: flex;
  }
  .header-nav a {
    font-size: 18px;
    padding: 10px 20px;
  }
  .burger {
    display: flex;
    z-index: 1001;
  }
  .header-actions .btn {
    font-size: 11px;
    padding: 8px 12px;
  }
}

@media (max-width: 600px) {
  .section-gap {
    padding: 40px 0;
  }
  .block {
    padding: 18px;
  }
  .hero-inner {
    padding: 50px 16px;
  }
  .tournaments-grid,
  .card-grid,
  .bonus-card {
    flex-direction: column;
  }
  .author-block {
    flex-direction: column;
  }
  .cta-widget {
    flex-wrap: wrap;
    gap: 8px;
  }
  .widget-text {
    font-size: 12px;
  }
  .header-logo img {
    height: 34px;
  }
  .footer-grid {
    gap: 20px;
  }
}

.wp-block-group {
  display: block;
}
.entry-content {
  display: block;
}
.has-global-padding {
}
.elementor-widget-wrap {
}
#wpadminbar {
  display: none !important;
}
.wp-caption {
}
.aligncenter {
}
.wp-post-image {
}


.content-review,
.technical-content,
.cms-content,
.text-body,
.content {
  min-width: 0;
  max-width: 100%;
}
.table-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border-radius: 12px;
}
.table-scroll table {
  width: 100%;
  min-width: 620px;
  margin: 0 !important;
  border-collapse: collapse;
}
@media (max-width: 767px) {
  .content-review,
  .technical-content,
  .cms-content,
  .text-body,
  .content,
  .block,
  .container {
    min-width: 0;
    max-width: 100%;
  }
  .table-scroll {
    max-width: calc(100vw - 32px);
  }
  .table-scroll table th,
  .table-scroll table td {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}
