@import url('https://fonts.googleapis.com/css2?family=Hero+New:wght@400;500;600;700;800&display=swap');

:root {
  --c-bg: #0B0C10;
  --c-bg2: #13151c;
  --c-bg3: #1a1d27;
  --c-header: #0B0C10;
  --c-green: #4AD315;
  --c-green2: #3dbc0f;
  --c-grey: #5A5B61;
  --c-grey2: #3e3f44;
  --c-text: #e8eaf0;
  --c-text2: #a0a4b0;
  --c-border: #262830;
  --c-card: #16181f;
  --radius: 10px;
  --radius-lg: 16px;
  --font: 'Hero New', 'Helvetica Neue', 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);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--c-green); text-decoration: none; }
a:hover { color: var(--c-green2); }

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.3rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
}

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

.btn--primary {
  background: var(--c-green);
  color: #0B0C10;
  box-shadow: 0 4px 18px rgba(74,211,21,0.35);
}
.btn--primary:hover { background: #5ce824; box-shadow: 0 6px 24px rgba(74,211,21,0.5); color: #0B0C10; }

.btn--secondary {
  background: var(--c-grey);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.btn--secondary:hover { background: var(--c-grey2); color: #fff; }

.btn--lg { padding: 14px 32px; font-size: 1rem; border-radius: 12px; }
.btn--sm { padding: 7px 14px; font-size: 0.8rem; }

.xf9k2 { display: none; }
.wp-block-spacer { height: 1px; }

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

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

.header-logo a {
  display: flex;
  align-items: center;
}

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

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

.header-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--c-text2);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
}

.header-nav a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.header-nav a svg { flex-shrink: 0; }

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

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

.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green);
  animation: blink 2s infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--c-bg2);
  z-index: 999;
  padding: 24px 20px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}

.mobile-menu a:hover { color: var(--c-green); }

.mobile-menu-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.mobile-menu-actions .btn { flex: 1; }

section.hero-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/neospin-hero.webp') center/cover no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,12,16,0.92) 40%, rgba(11,12,16,0.4) 100%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(74,211,21,0.15);
  border: 1px solid rgba(74,211,21,0.4);
  color: var(--c-green);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 14px;
}

.hero-content h1 span { color: var(--c-green); }

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

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

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat strong { font-size: 1.4rem; font-weight: 800; color: #fff; }
.hero-stat span { font-size: 0.78rem; color: var(--c-text2); }

.breadcrumbs-bar {
  background: var(--c-bg2);
  border-bottom: 1px solid var(--c-border);
  padding: 10px 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--c-text2);
  flex-wrap: wrap;
}

.breadcrumbs a { color: var(--c-text2); text-decoration: none; transition: color 0.15s; }
.breadcrumbs a:hover { color: var(--c-green); }
.breadcrumbs .sep { opacity: 0.4; }
.breadcrumbs .current { color: var(--c-green); font-weight: 500; }

.section-block {
  padding: 56px 0;
}

.section-title {
  margin-bottom: 32px;
}

.section-title h2 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
}

.section-title p {
  font-size: 0.95rem;
  color: var(--c-text2);
  margin-top: 8px;
  line-height: 1.6;
}

.card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: rgba(74,211,21,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.winners-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
   overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.winners-block table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.winners-block thead th {
  background: var(--c-bg3);
  padding: 14px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-text2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--c-border);
}

.winners-block tbody td {
  padding: 12px 18px;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(38,40,48,0.7);
  color: var(--c-text);
}

.winners-block tbody tr:last-child td { border-bottom: none; }

.winners-block tbody tr:hover td { background: rgba(255,255,255,0.025); }

.rank-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--c-bg3);
  color: var(--c-text2);
}

.rank-num.gold { background: rgba(255,193,7,0.15); color: #ffc107; }
.rank-num.silver { background: rgba(176,190,197,0.15); color: #b0bec5; }
.rank-num.bronze { background: rgba(188,143,143,0.15); color: #bc8f8f; }

.win-amount {
  font-weight: 700;
  color: var(--c-green);
}

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

.tournaments-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--c-border) transparent;
}

.tournaments-grid::-webkit-scrollbar { height: 4px; }
.tournaments-grid::-webkit-scrollbar-track { background: transparent; }
.tournaments-grid::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 4px; }

.tournament-card {
  flex: 0 0 280px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.tournament-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-green), #2ae3ff);
}

.tournament-card:hover {
  border-color: rgba(74,211,21,0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.4);
}

.tournament-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(74,211,21,0.12);
  color: var(--c-green);
  border: 1px solid rgba(74,211,21,0.25);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tournament-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.tournament-card p {
  font-size: 0.83rem;
  color: var(--c-text2);
  line-height: 1.55;
  margin-bottom: 16px;
}

.tournament-prize {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.tournament-prize span { color: var(--c-green); }

.tournament-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--c-text2);
  margin-bottom: 16px;
}

.timer-display {
  display: flex;
  gap: 6px;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--c-bg3);
  border-radius: 6px;
  padding: 4px 8px;
  min-width: 38px;
}

.timer-unit .t-num {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.timer-unit .t-label {
  font-size: 0.6rem;
  color: var(--c-text2);
  text-transform: uppercase;
  margin-top: 2px;
}

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

.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-bg3);
}

.demo-header h3 { font-size: 1rem; font-weight: 600; }

.demo-frame-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}

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

.review-section {
  padding: 56px 0;
}

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

.review-content {
  color: var(--c-text);
  line-height: 1.75;
}

.review-content h2,
.review-content h3,
.review-content h4 {
  color: #fff;
  margin-top: 28px;
  margin-bottom: 12px;
}

.review-content h2 { font-size: 1.5rem; }
.review-content h3 { font-size: 1.25rem; }
.review-content h4 { font-size: 1.05rem; }

.review-content p {
  margin-bottom: 16px;
  color: var(--c-text);
}

.review-content ul,
.review-content ol {
  margin: 12px 0 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.review-content li { color: var(--c-text); }

.review-content a { color: var(--c-green); }
.review-content a:hover { color: var(--c-green2); }

.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
  font-size: 0.9rem;
  overflow-x: auto;
  display: block;
}

.review-content table th {
  background: var(--c-bg3);
  color: #fff;
  font-weight: 600;
  padding: 11px 16px;
  text-align: left;
  border: 1px solid var(--c-border);
}

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

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

.review-content blockquote {
  border-left: 3px solid var(--c-green);
  padding: 12px 20px;
  background: rgba(74,211,21,0.07);
  border-radius: 0 8px 8px 0;
  margin: 18px 0;
  font-style: italic;
  color: var(--c-text2);
}

.review-content strong { color: #fff; }
.review-content em { color: var(--c-text2); }

.review-content hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 24px 0;
}

.faq-section {
  padding: 56px 0;
}

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.is-open { border-color: rgba(74,211,21,0.35); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

.faq-question h3 {
  font-size: 0.97rem;
  font-weight: 600;
  color: #fff;
  flex: 1;
  margin: 0;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--c-bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.3s;
}

.faq-item.is-open .faq-icon {
  background: var(--c-green);
  transform: rotate(180deg);
}

.faq-icon svg { transition: none; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
}

.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--c-text2);
  line-height: 1.7;
}

.faq-item.is-open .faq-answer { max-height: 400px; }

.author-section {
  padding: 40px 0 56px;
}

.author-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.author-inner {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.author-photo {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-green);
}

.author-info { flex: 1; }

.author-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.author-role {
  font-size: 0.82rem;
  color: var(--c-green);
  font-weight: 500;
  margin-bottom: 10px;
}

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

.author-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--c-text2);
  margin-bottom: 14px;
}

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

.author-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  color: var(--c-text2);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}

.author-link:hover { border-color: var(--c-green); color: var(--c-green); }

.site-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 24px;
  margin-top: auto;
}

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

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

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

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

.footer-flag { height: 18px; border-radius: 3px; }

.footer-desc {
  font-size: 0.82rem;
  color: var(--c-text2);
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  color: var(--c-text2);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  text-decoration: none;
}

.social-link:hover { border-color: var(--c-green); color: var(--c-green); background: rgba(74,211,21,0.08); }

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

.footer-nav { display: flex; flex-direction: column; gap: 8px; }

.footer-nav a {
  font-size: 0.85rem;
  color: var(--c-text2);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-nav a:hover { color: var(--c-green); }

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--c-text2);
  white-space: nowrap;
}

.footer-badge.trusted { border-color: rgba(74,211,21,0.3); color: var(--c-green); }

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pay-chip {
  padding: 5px 12px;
  border-radius: 6px;
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--c-text2);
}

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

.footer-legal {
  font-size: 0.76rem;
  color: var(--c-text2);
  line-height: 1.65;
  max-width: 700px;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--c-text2);
  white-space: nowrap;
  flex-shrink: 0;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(135deg, #0d2a0a, #101210);
  border-top: 2px solid var(--c-green);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(74,211,21,0.15);
}

.widget-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.widget-label {
  font-size: 0.72rem;
  color: var(--c-text2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.widget-bonus {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

.widget-bonus span { color: var(--c-green); }

.widget-promo {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--c-bg3);
  border: 1px dashed rgba(74,211,21,0.5);
  border-radius: 8px;
  padding: 6px 14px;
}

.widget-code {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-green);
  letter-spacing: 0.1em;
}

.widget-close {
  background: none;
  border: none;
  color: var(--c-text2);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  transition: color 0.15s;
  flex-shrink: 0;
  align-self: flex-start;
}

.widget-close:hover { color: #fff; }

body.widget-closed .sticky-widget { display: none; }
body.widget-closed { padding-bottom: 0 !important; }
body { padding-bottom: 80px; }

.align-c { text-align: center; }

.divider {
  height: 1px;
  background: var(--c-border);
  margin: 0;
}

.lp-k8vn2 { display: none; visibility: hidden; }
.wp-content-area { display: none; }
.elementor-section-wrap { width: 100%; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeInUp 0.5s ease both; }
.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.2s; }
.fade-up-d3 { animation-delay: 0.3s; }

@media (max-width: 1024px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: block; }
  .footer-grid { gap: 24px; }
  .footer-col { min-width: 140px; }
}

@media (max-width: 768px) {
  .hero-content { padding: 44px 0; }
  .section-block { padding: 40px 0; }
  .review-block { padding: 24px; }
  .author-inner { flex-direction: column; }
  .tournaments-grid { padding-bottom: 16px; }
  .sticky-widget { flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
  .widget-promo { display: none; }
  body { padding-bottom: 90px; }
  .footer-grid { flex-direction: column; gap: 28px; }
  .author-card { padding: 24px; }
}
@media (max-width: 600px) {
.online-count {display: none;}
}
@media (max-width: 480px) {
  .hero-stats { gap: 18px; }
  .hero-stat strong { font-size: 1.15rem; }
  .winners-block thead th,
  .winners-block tbody td { padding: 10px 12px; }
  .online-count { display: none; }
  .header-logo img {height: 32px;}
  .review-block { padding: 20px; }
  .author-card { padding: 20px; }
}
@media (max-width: 420px) {
  .header-actions .btn--secondary {display: none;}
  .demo-header h3 {font-size: 14px;}
  .review-block { padding: 16px; }
  .author-card { padding: 16px; }
}
.qs-m9kx7 { pointer-events: none; position: absolute; width: 0; height: 0; overflow: hidden; }
.z8jf-hidden { display: none !important; }
.winners-block table {
  min-width: 1160px;
}
@media (max-width: 768px) {
  .winners-block thead th,
  .winners-block tbody td {
    padding: 10px 14px;
    font-size: 0.82rem;
  }

  .winners-block tbody td:nth-child(3) {
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 480px) {
  .winners-block thead th:last-child,
  .winners-block tbody td:last-child {
    display: none;
  }

  .winners-block thead th,
  .winners-block tbody td {
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .winners-block tbody td:nth-child(3) {
    max-width: 90px;
  }

  .rank-num {
    width: 22px;
    height: 22px;
    font-size: 0.68rem;
  }

  .win-amount {
    font-size: 0.82rem;
  }
}

@media (max-width: 380px) {
  .winners-block thead th:nth-child(3),
  .winners-block tbody td:nth-child(3) {
    display: none;
  }

  .winners-block thead th,
  .winners-block tbody td {
    padding: 8px;
  }
}
.contact-form { max-width: 600px; display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--c-text2); text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--c-bg3);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-text);
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.18s ease;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--c-green); }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--c-grey); }

.review-content ul,
.review-content ol { padding-left: 22px; margin: 12px 0; }
.review-content li { margin-bottom: 6px; line-height: 1.65; }
.review-content table { width: 100%; border-collapse: collapse; margin: 18px 0; }
.review-content th { background: var(--c-bg3); color: #fff; font-weight: 700; text-align: left; padding: 10px 14px; border: 1.5px solid var(--c-border); }
.review-content td { padding: 10px 14px; border: 1.5px solid var(--c-border); color: var(--c-text); vertical-align: top; }
.review-content tr:nth-child(even) td { background: rgba(255,255,255,0.03); }
.review-content h2 { margin-top: 32px; margin-bottom: 12px; }
.review-content h3 { margin-top: 22px; margin-bottom: 10px; }
.review-content p { margin-bottom: 14px; line-height: 1.7; }
.review-content strong { color: #fff; }
