:root {
  --c-bg: #0b0c0d;
  --c-bg2: #111214;
  --c-bg3: #161719;
  --c-bg4: #1a1c1f;
  --c-border: #2a2d31;
  --c-accent: #bbeb00;
  --c-accent2: #d4ff00;
  --c-accent-dim: rgba(187, 235, 0, 0.12);
  --c-btn-dark: #1f2021;
  --c-text: #e8eaed;
  --c-text2: #9aa0a8;
  --c-text3: #6b7280;
  --c-white: #ffffff;
  --c-header: #0b0c0d;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --font-main: "Inter", "Roboto", Arial, sans-serif;
  --font-head: "Montserrat", "Inter", Arial, sans-serif;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 0 20px rgba(187, 235, 0, 0.2);
  --tr: 0.22s ease;
}

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

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

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

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

img {
  max-width: 100%;
  display: block;
}
ul,
ol {
  list-style: none;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.x9f2a {
  display: none;
}
.wpe43b {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.qr7z1 {
  position: absolute;
  left: -9999px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.sec-gap {
  padding: 60px 0;
}
.sec-gap-sm {
  padding: 40px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition:
    transform var(--tr),
    box-shadow var(--tr),
    background var(--tr);
  white-space: nowrap;
  text-decoration: none;
}

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

.btn--login {
  background: var(--c-btn-dark);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.btn--login:hover {
  background: #2a2d31;
  color: var(--c-white);
  border-color: #3a3d42;
}

.btn--signup {
  background: var(--c-accent);
  color: #0b0c0d;
  font-weight: 700;
}
.btn--signup:hover {
  background: var(--c-accent2);
  box-shadow: var(--shadow-accent);
  color: #0b0c0d;
}

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

.btn--xl {
  padding: 16px 40px;
  font-size: 18px;
  border-radius: var(--radius-md);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--c-text2);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.card {
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform var(--tr),
    box-shadow var(--tr),
    border-color var(--tr);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--c-accent);
}

.accent {
  color: var(--c-accent);
}

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

/* ─── HEADER ─── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(12px);
}

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

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

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

.header-nav a {
  color: var(--c-text2);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition:
    color var(--tr),
    background var(--tr);
}
.header-nav a:hover {
  color: var(--c-white);
  background: var(--c-bg3);
}

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

.online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-text2);
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 4px 10px;
}

.online-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border);
  padding: 16px 20px 20px;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-10px);
  opacity: 0;
  transition:
    opacity var(--tr),
    transform var(--tr);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: none;
}
.mobile-menu a {
  color: var(--c-text2);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border);
}
.mobile-menu a:last-of-type {
  border-bottom: none;
}
.mobile-menu a:hover {
  color: var(--c-white);
}

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slides {
  position: relative;
  width: 100%;
}

.hero-slide {
  display: none;
  position: relative;
  min-height: 520px;
  align-items: center;
}
.hero-slide.active {
  display: flex;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 12, 13, 0.92) 0%,
    rgba(11, 12, 13, 0.6) 60%,
    rgba(187, 235, 0, 0.04) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 60px 20px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-accent-dim);
  border: 1px solid rgba(187, 235, 0, 0.3);
  color: var(--c-accent);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-title .hl {
  color: var(--c-accent);
}

.hero-desc {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--c-text2);
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 500px;
}

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

.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat strong {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1;
}

.hero-stat span {
  font-size: 12px;
  color: var(--c-text3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--c-border);
  cursor: pointer;
  transition:
    background var(--tr),
    width var(--tr);
}
.hero-dot.active {
  background: var(--c-accent);
  width: 20px;
}

#toc {
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 28px 0;
}

.toc-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.toc-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text2);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-right: 6px;
  white-space: nowrap;
}

.toc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  color: var(--c-text2);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  transition:
    background var(--tr),
    color var(--tr),
    border-color var(--tr);
}
.toc-link:hover {
  background: var(--c-accent-dim);
  color: var(--c-accent);
  border-color: rgba(187, 235, 0, 0.4);
}

.toc-link .num {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-accent);
  background: var(--c-accent-dim);
  border-radius: 4px;
  padding: 1px 5px;
  line-height: 1.4;
}

#tournaments {
  padding: 60px 0;
}

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

.tournament-card {
  flex: 1;
  min-width: 0;
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform var(--tr),
    box-shadow var(--tr),
    border-color var(--tr);
  position: relative;
}
.tournament-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  border-color: var(--c-accent);
}

.tournament-card-header {
  background: linear-gradient(135deg, #151618 0%, #1a1c1f 100%);
  padding: 20px;
  border-bottom: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}

.tournament-card-header::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 90px;
  height: 90px;
  background: var(--c-accent-dim);
  border-radius: 50%;
}

.tournament-ribbon {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.ribbon--live {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.ribbon--hot {
  background: rgba(249, 115, 22, 0.2);
  color: #fb923c;
  border: 1px solid rgba(249, 115, 22, 0.3);
}
.ribbon--new {
  background: var(--c-accent-dim);
  color: var(--c-accent);
  border: 1px solid rgba(187, 235, 0, 0.3);
}

.tournament-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 4px;
  line-height: 1.2;
}

.tournament-desc {
  font-size: 13px;
  color: var(--c-text2);
  line-height: 1.5;
}

.tournament-card-body {
  padding: 20px;
}

.tournament-prize {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 12px 14px;
  background: var(--c-bg4);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
}

.prize-label {
  font-size: 11px;
  color: var(--c-text3);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: block;
  margin-bottom: 2px;
}

.prize-value {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1;
}

.tournament-timer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.timer-label {
  font-size: 11px;
  color: var(--c-text3);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 2px;
}

.timer-value {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  font-variant-numeric: tabular-nums;
}

.tournament-btn {
  width: 100%;
  margin-top: 4px;
}

.tournaments-slider {
  display: none;
  overflow: hidden;
  position: relative;
}

.ts-track {
  display: flex;
  transition: transform 0.4s ease;
}

.ts-track .tournament-card {
  min-width: 100%;
  flex: none;
}

.ts-controls {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.ts-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  cursor: pointer;
  border: none;
  transition: background var(--tr);
}
.ts-dot.active {
  background: var(--c-accent);
}

#app-info {
  padding: 60px 0;
}

.app-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.app-table-wrap {
  flex: 1;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
}

.app-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 320px;
}

.app-table th,
.app-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-border);
  font-size: 14px;
  line-height: 1.5;
  vertical-align: top;
}

.app-table th {
  background: var(--c-bg4);
  color: var(--c-text2);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.app-table td:first-child {
  color: var(--c-text2);
  font-weight: 500;
  white-space: nowrap;
  width: 40%;
}

.app-table td:last-child {
  color: var(--c-text);
}

.app-table tr:last-child td {
  border-bottom: none;
}

.app-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.app-downloads {
  flex: 0 0 260px;
}

.app-downloads-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 16px;
}

.dl-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 10px;
  color: var(--c-text);
  transition:
    border-color var(--tr),
    background var(--tr),
    transform var(--tr);
}
.dl-btn:hover {
  border-color: var(--c-accent);
  background: var(--c-bg4);
  transform: translateX(3px);
  color: var(--c-white);
}

.dl-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dl-icon svg {
  width: 28px;
  height: 28px;
}

.dl-text small {
  display: block;
  font-size: 10px;
  color: var(--c-text3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dl-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-white);
}

/* ─── VIDEO ─── */
#video-review {
  padding: 60px 0;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow);
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

#wheel-game {
  padding: 60px 0;
}

.wheel-game-inner {
  display: flex;
  gap: 48px;
  align-items: center;
}

.wheel-wrap {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.wheel-canvas-wrap {
  position: relative;
  width: 260px;
  height: 260px;
}

.wheel-arrow {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid var(--c-accent);
  filter: drop-shadow(0 0 6px var(--c-accent));
}

#wheelCanvas {
  border-radius: 50%;
  box-shadow:
    0 0 30px rgba(187, 235, 0, 0.15),
    var(--shadow);
  display: block;
  width: 100%;
  height: 100%;
}

.wheel-info {
  flex: 1;
}

.wheel-result {
  margin-top: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  font-size: 15px;
  line-height: 1.6;
  min-height: 60px;
  transition: border-color var(--tr);
  display: none;
}
.wheel-result.win {
  border-color: var(--c-accent);
  background: var(--c-accent-dim);
}
.wheel-result.lose {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.08);
}
.wheel-result.show {
  display: block;
}

.wheel-result-title {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 4px;
}
.win .wheel-result-title {
  color: var(--c-accent);
}
.lose .wheel-result-title {
  color: #f87171;
}

/* ─── REVIEW CONTENT ─── */
#review {
  padding: 60px 0;
}

.review-content {
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}

.review-content h1,
.review-content h2,
.review-content h3,
.review-content h4,
.review-content h5,
.review-content h6 {
  font-family: var(--font-head);
  color: var(--c-white);
  line-height: 1.3;
  margin: 1.4em 0 0.6em;
}

.review-content h1 {
  font-size: 28px;
  font-weight: 800;
}
.review-content h2 {
  font-size: 22px;
  font-weight: 700;
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 8px;
}
.review-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-accent);
}
.review-content h4 {
  font-size: 16px;
  font-weight: 600;
}

.review-content p {
  margin-bottom: 1em;
  color: var(--c-text);
  line-height: 1.75;
}

.review-content ul,
.review-content ol {
  margin: 0.8em 0 1em 0;
  padding-left: 0;
}

.review-content ul li,
.review-content ol li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  color: var(--c-text);
  line-height: 1.6;
  list-style: none;
}

.review-content ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--c-accent);
  font-size: 12px;
  top: 3px;
}

.review-content ol {
  counter-reset: list-counter;
}

.review-content ol li::before {
  content: counter(list-counter) ".";
  counter-increment: list-counter;
  position: absolute;
  left: 0;
  color: var(--c-accent);
  font-weight: 700;
  font-size: 13px;
}

.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: 14px;
  overflow-x: auto;
  display: block;
}

.review-content table th,
.review-content table td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--c-border);
}

.review-content table th {
  background: var(--c-bg4);
  color: var(--c-text2);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}

.review-content table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}
.review-content table td {
  color: var(--c-text);
}

.review-content a {
  color: var(--c-accent);
  border-bottom: 1px dashed rgba(187, 235, 0, 0.4);
}
.review-content a:hover {
  border-bottom-style: solid;
}

.review-content blockquote {
  border-left: 3px solid var(--c-accent);
  padding: 12px 20px;
  margin: 1.2em 0;
  background: var(--c-bg3);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--c-text2);
  font-style: italic;
}

.review-content strong {
  color: var(--c-white);
  font-weight: 700;
}
.review-content em {
  color: var(--c-text2);
}

.review-content code {
  background: var(--c-bg4);
  border: 1px solid var(--c-border);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 13px;
  color: var(--c-accent);
}

/* ─── AUTHOR ─── */
#author {
  padding: 60px 0;
}

.author-card {
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.author-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-accent);
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(187, 235, 0, 0.2);
}

.author-info {
  flex: 1;
}

.author-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 2px;
}

.author-title {
  font-size: 13px;
  color: var(--c-accent);
  font-weight: 600;
  margin-bottom: 10px;
}

.author-bio {
  font-size: 14px;
  color: var(--c-text2);
  line-height: 1.65;
  margin-bottom: 14px;
}

.author-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.author-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-bg4);
  border: 1px solid var(--c-border);
  color: var(--c-text2);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  transition:
    border-color var(--tr),
    color var(--tr),
    background var(--tr);
}
.author-link:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  background: var(--c-accent-dim);
}

/* ─── FOOTER ─── */
#site-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  margin-top: auto;
}

.footer-main {
  padding: 48px 0 32px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 0 0 220px;
}

.footer-logo img {
  height: 32px;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--c-text3);
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-license {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--c-text3);
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 4px 8px;
}

.footer-col {
  flex: 1;
  min-width: 140px;
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-col ul a {
  font-size: 13px;
  color: var(--c-text2);
  transition: color var(--tr);
}
.footer-col ul a:hover {
  color: var(--c-white);
}

.footer-logos {
  padding: 24px 0;
  border-top: 1px solid var(--c-border);
}

.footer-logos-title {
  font-size: 11px;
  color: var(--c-text3);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.logo-pill {
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-text2);
  white-space: nowrap;
  transition:
    border-color var(--tr),
    color var(--tr);
}
.logo-pill:hover {
  border-color: var(--c-accent);
  color: var(--c-text);
}

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

.footer-copyright {
  font-size: 12px;
  color: var(--c-text3);
  line-height: 1.5;
}

.footer-legal {
  font-size: 11px;
  color: var(--c-text3);
  line-height: 1.6;
  max-width: 600px;
}

.footer-legal a {
  color: var(--c-text3);
  border-bottom: 1px dashed rgba(107, 114, 128, 0.5);
}
.footer-legal a:hover {
  color: var(--c-text2);
}

/* ─── WIDGET ─── */
#sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #0b0c0d 0%, #111214 100%);
  border-top: 1px solid var(--c-border);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

#sticky-widget.hidden {
  transform: translateY(100%);
}

.widget-text {
  font-size: 14px;
  color: var(--c-text2);
  white-space: nowrap;
}

.widget-text strong {
  color: var(--c-white);
}

.widget-bonus {
  background: var(--c-accent-dim);
  border: 1px solid rgba(187, 235, 0, 0.3);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-accent);
  white-space: nowrap;
}

.widget-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--c-text3);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color var(--tr);
}
.widget-close:hover {
  color: var(--c-text);
}

body {
  padding-bottom: 60px;
}

/* ─── FAQ ─── */
#faq {
  padding: 60px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 24px;
  background: var(--c-bg3);
  border: none;
  color: var(--c-white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition:
    background var(--tr),
    color var(--tr);
  line-height: 1.4;
}
.faq-q:hover {
  background: var(--c-bg4);
  color: var(--c-accent);
}
.faq-q[aria-expanded="true"] {
  background: var(--c-bg4);
  color: var(--c-accent);
}

.faq-q::after {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--tr);
  margin-top: -4px;
}
.faq-q[aria-expanded="true"]::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding var(--tr);
  background: var(--c-bg2);
}
.faq-a.open {
  max-height: 400px;
  padding: 16px 24px 20px;
}
.faq-a div {
  font-size: 14px;
  color: var(--c-text2);
  line-height: 1.7;
}

/* ─── WP DECOYS ─── */
.wp-block-group {
  display: block;
}
.wp-block-columns {
  display: block;
}
.elementor-section {
  display: block;
}
.wp-post-nav {
  display: none;
}
.wpcf7-form {
  display: block;
}
.entry-meta {
  display: block;
}
.post-thumbnail {
  display: block;
}
.yoast-seo-meta-tag {
  display: none;
}
.et_pb_section {
  display: block;
}
.vc_row {
  display: block;
}

/* ─── UTILITIES & MISC ─── */
.d-flex {
  display: flex;
}
.gap-2 {
  gap: 8px;
}
.gap-3 {
  gap: 12px;
}
.mb-1 {
  margin-bottom: 8px;
}
.mb-2 {
  margin-bottom: 16px;
}
.mb-3 {
  margin-bottom: 24px;
}
.text-center {
  text-align: center;
}
.text-muted {
  color: var(--c-text2);
}
.text-accent {
  color: var(--c-accent);
}
.divider {
  height: 1px;
  background: var(--c-border);
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.spinning {
  animation: spin 0.6s linear infinite;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .header-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .app-inner {
    flex-direction: column;
  }
  .app-downloads {
    flex: none;
    width: 100%;
  }
  .wheel-game-inner {
    flex-direction: column;
  }
  .wheel-wrap {
    flex: none;
  }
  .tournaments-grid {
    display: none;
  }
  .tournaments-slider {
    display: block;
  }
  .footer-main {
    gap: 24px;
  }
  .footer-brand {
    flex: 0 0 100%;
  }
  .online-count {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 40px 0;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-stats {
    gap: 16px;
  }
  .author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .author-links {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .review-content {
    padding: 20px;
  }
  .toc-inner {
    gap: 6px;
  }
  .widget-text {
    display: none;
  }
  #sticky-widget {
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .btn--xl {
    padding: 13px 24px;
    font-size: 15px;
  }
  .section-title {
    font-size: 20px;
  }
}
@media (max-width: 900px) {
  .tournaments-slider {
    overflow: hidden;
  }
  .ts-track {
    align-items: flex-start;
  }
  .ts-track .tournament-card {
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    box-sizing: border-box;
  }
  .tournament-card-header {
    overflow: hidden;
  }
  .tournament-desc {
    word-break: break-word;
  }
  .tournament-prize {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .tournament-timer {
    align-items: flex-start;
  }
}
