:root {
  --c-bg: #121724;
  --c-header: #191f2d;
  --c-accent: #1ae5a1;
  --c-text: #e8eaf0;
  --c-text-muted: #8b92a8;
  --c-border: #2a3347;
  --c-card: #1a2235;
  --c-card2: #1e2840;
  --c-btn-login: #191f2d;
  --c-btn-reg: #1ae5a1;
  --c-btn-reg-text: #0d1017;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --transition: all 0.25s ease;
}

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

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

body {
  font-family: "Montserrat", "Roboto", Arial, Helvetica, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

a {
  color: var(--c-accent);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: #fff;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}

.xk9f2 {
  display: none;
}
.wp-block-hidden {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.elementor-hidden-desktop {
  display: none !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.section-gap {
  padding: 64px 0;
}
.section-gap-sm {
  padding: 40px 0;
}

.d-grid {
  display: grid;
}
.d-flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-1 {
  gap: 8px;
}
.gap-2 {
  gap: 16px;
}
.gap-3 {
  gap: 24px;
}
.gap-4 {
  gap: 32px;
}

.btn-sol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.4px;
}
.btn-login {
  background: var(--c-btn-login);
  color: var(--c-text);
  border: 1.5px solid var(--c-border);
}
.btn-login:hover {
  background: #232c40;
  color: #fff;
  border-color: var(--c-accent);
}
.btn-reg {
  background: var(--c-btn-reg);
  color: var(--c-btn-reg-text);
  box-shadow: 0 0 16px rgba(26, 229, 161, 0.35);
}
.btn-reg:hover {
  background: #14c98a;
  color: #000;
  box-shadow: 0 0 24px rgba(26, 229, 161, 0.55);
  transform: translateY(-1px);
}
.btn-hero {
  background: var(--c-btn-reg);
  color: var(--c-btn-reg-text);
  font-size: 17px;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 0 28px rgba(26, 229, 161, 0.45);
  transition: var(--transition);
}
.btn-hero:hover {
  background: #14c98a;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 40px rgba(26, 229, 161, 0.65);
}

#xbr9a {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hdr-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}

.hdr-logo {
  flex-shrink: 0;
}
.hdr-logo img {
  height: 42px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(78%) sepia(58%) saturate(459%)
    hue-rotate(102deg) brightness(95%) contrast(91%);
  transition: var(--transition);
}

.hdr-logo a:hover img {
  filter: brightness(0) saturate(100%) invert(100%);
}
.hdr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}
.hdr-nav a {
  color: var(--c-text-muted);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.hdr-nav a:hover {
  color: var(--c-accent);
  background: rgba(26, 229, 161, 0.08);
}

.hdr-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-text-muted);
  white-space: nowrap;
  background: rgba(26, 229, 161, 0.06);
  border: 1px solid rgba(26, 229, 161, 0.15);
  border-radius: 20px;
  padding: 5px 12px;
}
.hdr-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-accent);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}
.hdr-online-count {
  color: var(--c-accent);
  font-weight: 700;
}

.hdr-btns {
  display: flex;
  gap: 8px;
  align-items: center;
}

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

.mobile-menu {
  display: none;
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 16px;
  flex-direction: column;
  gap: 8px;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  color: var(--c-text-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-menu a:hover {
  color: var(--c-accent);
  background: rgba(26, 229, 161, 0.08);
}
.mobile-menu .mobile-btns {
  display: flex;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--c-border);
  margin-top: 4px;
}
.mobile-menu .mobile-btns .btn-sol {
  flex: 1;
  justify-content: center;
}

#xhero9 {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/solBan.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(18, 23, 36, 0.92) 30%,
    rgba(18, 23, 36, 0.55) 65%,
    rgba(18, 23, 36, 0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 60px 0;
  animation: fadeInUp 0.7s ease both;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26, 229, 161, 0.12);
  border: 1px solid rgba(26, 229, 161, 0.3);
  color: var(--c-accent);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.hero-title span {
  color: var(--c-accent);
}
.hero-sub {
  font-size: 16px;
  color: var(--c-text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-note {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-top: 14px;
}

.section-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--c-accent);
  border-radius: 2px;
}

.toc-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 40px;
}
.toc-block h2 {
  margin-bottom: 18px;
}
.toc-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.toc-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c-text-muted);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: var(--transition);
}
.toc-list li a:hover {
  color: var(--c-accent);
  border-color: rgba(26, 229, 161, 0.2);
  background: rgba(26, 229, 161, 0.06);
}
.toc-list li a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  flex-shrink: 0;
}

.info-table-wrap {
  overflow-x: auto;
  margin-bottom: 40px;
}
.info-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.info-table th,
.info-table td {
  text-align: left;
  padding: 13px 18px;
  border-bottom: 1px solid var(--c-border);
  font-size: 14px;
  line-height: 1.5;
}
.info-table th {
  background: #1d2840;
  color: var(--c-text-muted);
  font-weight: 600;
  width: 38%;
}
.info-table td {
  color: var(--c-text);
  background: var(--c-card);
}
.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}
.info-table tr:hover td {
  background: var(--c-card2);
}
.info-table td strong {
  color: var(--c-accent);
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.pros-col,
.cons-col {
  border-radius: var(--radius);
  padding: 24px 26px;
  border: 1px solid var(--c-border);
}
.pros-col {
  background: linear-gradient(135deg, #172b24 0%, #1a2235 100%);
  border-color: rgba(26, 229, 161, 0.2);
}
.cons-col {
  background: linear-gradient(135deg, #2b1717 0%, #1a2235 100%);
  border-color: rgba(229, 80, 80, 0.2);
}
.pros-col h3 {
  color: var(--c-accent);
  margin-bottom: 16px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cons-col h3 {
  color: #e55050;
  margin-bottom: 16px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-col ul li,
.cons-col ul li {
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.pros-col ul li:last-child,
.cons-col ul li:last-child {
  border-bottom: none;
}
.pros-col ul li::before {
  content: "+";
  color: var(--c-accent);
  font-weight: 800;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1.4;
}
.cons-col ul li::before {
  content: "−";
  color: #e55050;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1.3;
}

.tournaments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.tournament-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.tournament-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  border-color: rgba(26, 229, 161, 0.25);
}
.tournament-card-head {
  padding: 20px 20px 14px;
  background: linear-gradient(135deg, #1e2d45, #1a2235);
  border-bottom: 1px solid var(--c-border);
}
.tournament-badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 8px;
}
.tournament-name {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.tournament-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.5;
}
.tournament-card-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tournament-prize {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tournament-prize-label {
  font-size: 11px;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.tournament-prize-val {
  font-size: 24px;
  font-weight: 900;
  color: var(--c-accent);
}
.tournament-timer-label {
  font-size: 11px;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}
.timer-blocks {
  display: flex;
  gap: 6px;
}
.timer-unit {
  background: var(--c-header);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 6px 10px;
  text-align: center;
  min-width: 44px;
}
.timer-unit .tu-val {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1.2;
}
.timer-unit .tu-label {
  font-size: 9px;
  color: var(--c-text-muted);
  text-transform: uppercase;
}
.tournament-card-body .btn-sol {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

.app-block {
  margin-bottom: 40px;
}
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.app-table-wrap {
  overflow-x: auto;
}
.app-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.app-table th,
.app-table td {
  text-align: left;
  padding: 11px 16px;
  border-bottom: 1px solid var(--c-border);
  font-size: 13px;
}
.app-table th {
  background: #1d2840;
  color: var(--c-text-muted);
  font-weight: 600;
  width: 45%;
}
.app-table td {
  background: var(--c-card);
  color: var(--c-text);
}
.app-table tr:last-child th,
.app-table tr:last-child td {
  border-bottom: none;
}
.app-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-text);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  text-decoration: none;
}
.app-btn:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  background: rgba(26, 229, 161, 0.06);
}
.app-btn svg {
  flex-shrink: 0;
}
.app-btn-sub {
  font-size: 11px;
  color: var(--c-text-muted);
  font-weight: 400;
  display: block;
}

.wheel-section {
  margin-bottom: 40px;
}
.wheel-wrap {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.wheel-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.wheel-sub {
  font-size: 14px;
  color: var(--c-text-muted);
}
#xwheel9 {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 4px solid var(--c-accent);
  box-shadow: 0 0 36px rgba(26, 229, 161, 0.25);
  overflow: hidden;
  flex-shrink: 0;
}
canvas#wheelCanvas {
  width: 300px;
  height: 300px;
  display: block;
}
.wheel-pointer {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 22px solid var(--c-accent);
  filter: drop-shadow(0 0 6px rgba(26, 229, 161, 0.8));
  z-index: 2;
}
.wheel-result {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  background: rgba(26, 229, 161, 0.08);
  border: 1px solid rgba(26, 229, 161, 0.3);
  border-radius: var(--radius);
  max-width: 340px;
  animation: fadeInUp 0.4s ease both;
}
.wheel-result.show {
  display: flex;
}
.wheel-result-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--c-accent);
}
.wheel-result-text {
  font-size: 14px;
  color: var(--c-text);
  text-align: center;
}
.wheel-result-lose {
  border-color: rgba(229, 80, 80, 0.3);
  background: rgba(229, 80, 80, 0.06);
}
.wheel-result-lose .wheel-result-title {
  color: #e55050;
}

.review-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-bottom: 40px;
}
.review-content {
  line-height: 1.75;
}
.review-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 28px 0 14px;
}
.review-content h2:first-child {
  margin-top: 0;
}
.review-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-accent);
  margin: 22px 0 10px;
}
.review-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #c5cad8;
  margin: 18px 0 8px;
}
.review-content p {
  color: var(--c-text);
  margin-bottom: 14px;
  font-size: 15px;
}
.review-content ul,
.review-content ol {
  margin: 12px 0 16px 20px;
}
.review-content ul {
  list-style: disc;
}
.review-content ol {
  list-style: decimal;
}
.review-content li {
  color: var(--c-text);
  font-size: 14px;
  margin-bottom: 7px;
  line-height: 1.6;
  padding-left: 4px;
}
.review-content a {
  color: var(--c-accent);
}
.review-content strong,
.review-content b {
  color: #fff;
  font-weight: 700;
}
.review-content em,
.review-content i {
  color: var(--c-text-muted);
  font-style: italic;
}
.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.review-content th {
  background: #1d2840;
  color: var(--c-text-muted);
  padding: 10px 14px;
  text-align: left;
  font-size: 13px;
  border-bottom: 1px solid var(--c-border);
}
.review-content td {
  background: var(--c-card);
  padding: 10px 14px;
  font-size: 13px;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
}
.review-content td:last-child,
.review-content tr:last-child td {
  border-bottom: none;
}
.review-content blockquote {
  border-left: 3px solid var(--c-accent);
  padding: 12px 18px;
  background: rgba(26, 229, 161, 0.06);
  margin: 16px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--c-text-muted);
  font-style: italic;
}
.review-content code {
  background: #1d2840;
  color: var(--c-accent);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
}
.review-content pre {
  background: #1d2840;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  margin: 12px 0;
}
.review-content hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 24px 0;
}
.review-content img {
  max-width: 100%;
  border-radius: var(--radius-sm);
  margin: 12px 0;
}

.faq-block {
  margin-bottom: 40px;
}
.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: rgba(26, 229, 161, 0.2);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  user-select: none;
  gap: 12px;
}
.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(26, 229, 161, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--c-accent);
  color: #0d1017;
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--c-border);
}
.faq-item.open .faq-answer {
  display: block;
  padding-top: 16px;
}

.author-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.author-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-accent);
  flex-shrink: 0;
}
.author-info {
  flex: 1;
}
.author-name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.author-role {
  font-size: 13px;
  color: var(--c-accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.author-bio {
  font-size: 14px;
  color: var(--c-text-muted);
  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;
  padding: 6px 14px;
  background: rgba(26, 229, 161, 0.08);
  border: 1px solid rgba(26, 229, 161, 0.2);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-accent);
  transition: var(--transition);
}
.author-link:hover {
  background: rgba(26, 229, 161, 0.18);
  color: #fff;
}

#xfooter5 {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-logo img {
  height: 40px;
  margin-bottom: 14px;
  filter: brightness(0) saturate(100%) invert(78%) sepia(58%) saturate(459%)
    hue-rotate(102deg) brightness(95%) contrast(91%);
  opacity: 0.9;
}
.footer-logo p {
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 13px;
  color: var(--c-text-muted);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--c-accent);
}
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.footer-pay-badge {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.footer-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}
.footer-prov-badge {
  background: #1a2030;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  color: #5a6280;
  white-space: nowrap;
}
.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.footer-bottom a {
  color: var(--c-text-muted);
}
.footer-bottom a:hover {
  color: var(--c-accent);
}
.footer-legal {
  font-size: 11px;
  color: #4a5170;
  margin-top: 8px;
  line-height: 1.6;
}

#xwidget7 {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, #191f2d 0%, #1a2840 100%);
  border-top: 2px solid var(--c-accent);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}
.widget-text {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.4;
}
.widget-text strong {
  color: var(--c-accent);
  font-size: 15px;
  display: block;
}
.widget-close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  line-height: 1;
  transition: var(--transition);
}
.widget-close:hover {
  color: #fff;
}
.widget-btn {
  background: var(--c-btn-reg);
  color: var(--c-btn-reg-text);
  font-weight: 800;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 0 16px rgba(26, 229, 161, 0.4);
  transition: var(--transition);
  flex-shrink: 0;
}
.widget-btn:hover {
  background: #14c98a;
  color: #000;
  box-shadow: 0 0 24px rgba(26, 229, 161, 0.6);
}

body {
  padding-bottom: 70px;
}

.swiper-tourn {
  display: none;
}

@media (max-width: 991px) {
  .tournaments-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .app-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hdr-inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 8px;
  }
  .hdr-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .section-gap {
    padding: 40px 0;
  }

  .tournaments-grid {
    display: none;
  }
  .swiper-tourn {
    display: block;
    margin-bottom: 40px;
  }
  .swiper-slide .tournament-card {
    transform: none !important;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .author-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .author-links {
    justify-content: center;
  }
  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-block {
    padding: 20px 18px;
  }
  .toc-block {
    padding: 20px 18px;
  }

  #xwidget7 {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .widget-text {
    width: 100%;
  }

  .info-table th {
    width: 42%;
  }
}

@media (max-width: 480px) {
  .hdr-logo img {
    height: 34px;
  }
  .btn-sol {
    padding: 8px 14px;
    font-size: 12px;
  }
  .hero-title {
    font-size: 24px;
  }
  #xwheel9 {
    width: 260px;
    height: 260px;
  }
  canvas#wheelCanvas {
    width: 260px;
    height: 260px;
  }
  .toc-list {
    grid-template-columns: 1fr 1fr;
  }
}

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

.wp-block-placeholder {
  display: none;
}
.elementor-section-wrap {
  display: contents;
}
.e-con-inner {
  display: contents;
}
