:root {
  --c-bg: #1b1f30;
  --c-header: #151928;
  --c-footer: #151928;
  --c-btn-login: #333951;
  --c-btn-reg: #5236f0;
  --c-btn-reg-hover: #6a4fff;
  --c-text: #e8eaf0;
  --c-text-muted: #9aa0b8;
  --c-accent: #5236f0;
  --c-accent2: #7c5cfc;
  --c-border: #2a2f45;
  --c-card: #1e2336;
  --c-card2: #232840;
  --c-gold: #f0c040;
  --c-green: #2de08b;
  --c-red: #f25c5c;
  --radius: 10px;
  --radius-lg: 16px;
  --font-main:
    "Montserrat", "Roboto", "Open Sans", Arial, Helvetica, sans-serif;
  --shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.45);
  --shadow-card: 0 2px 16px 0 rgba(0, 0, 0, 0.32);
}

*,
*::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);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--c-accent2);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--c-btn-reg-hover);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  text-wrap: balance;
}

h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
}
h2 {
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  margin-bottom: 1.2rem;
}
h3 {
  font-size: 1.15rem;
}

p {
  margin-bottom: 0.9rem;
}
p:last-child {
  margin-bottom: 0;
}

.xw9k2 {
  display: none;
  visibility: hidden;
}
.wp-block-hidden {
  display: none !important;
}

.btzw-wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

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

main {
  padding-bottom: 76px;
}
@media (max-width: 768px) {
  main {
    padding-bottom: 110px;
  }
}
@media (max-width: 480px) {
  main {
    padding-bottom: 100px;
  }
}

.btzw-section {
  padding: 52px 0 48px;
}
.btzw-section-title {
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.btzw-section-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 1.5em;
  background: var(--c-accent);
  border-radius: 2px;
  flex-shrink: 0;
}

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

.btzw-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.btzw-logo img {
  height: 42px;
  width: auto;
  border-radius: 6px;
}

.btzw-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.btzw-nav a {
  color: #c8ccde;
  font-size: 0.87rem;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 6px;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.btzw-nav a:hover {
  background: rgba(82, 54, 240, 0.18);
  color: #fff;
}

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

.btzw-online {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--c-border);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.btzw-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green);
  animation: pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}
.btzw-online-count {
  color: var(--c-green);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.2s,
    opacity 0.2s;
  text-decoration: none;
  white-space: nowrap;
  padding: 9px 20px;
  line-height: 1.2;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.btn:active {
  transform: translateY(0);
}

.btn-login {
  background: var(--c-btn-login);
  color: #d0d4e8;
}
.btn-login:hover {
  background: #3f4566;
  color: #fff;
}
.btn-reg {
  background: var(--c-btn-reg);
  color: #fff;
  box-shadow: 0 2px 12px rgba(82, 54, 240, 0.35);
}
.btn-reg:hover {
  background: var(--c-btn-reg-hover);
  box-shadow: 0 4px 20px rgba(82, 54, 240, 0.55);
}

.btzw-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}
.btzw-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.btzw-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.btzw-burger.active span:nth-child(2) {
  opacity: 0;
}
.btzw-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btzw-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 12px 16px 16px;
}
.btzw-mobile-menu.open {
  display: flex;
}
.btzw-mobile-menu a {
  color: #c8ccde;
  font-size: 0.9rem;
  padding: 10px 12px;
  border-radius: 6px;
  display: block;
}
.btzw-mobile-menu a:hover {
  background: rgba(82, 54, 240, 0.15);
  color: #fff;
}
.btzw-mobile-menu-btns {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.btzw-mobile-menu-btns .btn {
  flex: 1;
  justify-content: center;
}

.btzw-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.btzw-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, #0d1020 0%, #1a1340 50%, #0f1525 100%);
}
.btzw-hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  mix-blend-mode: luminosity;
}
.btzw-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 16, 32, 0.95) 0%,
    rgba(13, 16, 32, 0.7) 50%,
    rgba(13, 16, 32, 0.2) 100%
  );
}
.btzw-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 0;
}
.btzw-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(82, 54, 240, 0.22);
  border: 1px solid rgba(82, 54, 240, 0.45);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-accent2);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.btzw-hero h1 {
  font-size: clamp(1.7rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.btzw-hero h1 span {
  color: var(--c-accent2);
}
.btzw-hero-desc {
  color: #a8b0cc;
  font-size: 1rem;
  margin-bottom: 1.8rem;
  line-height: 1.65;
}
.btzw-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btzw-hero-btns .btn {
  font-size: 0.95rem;
  padding: 13px 28px;
}
.btzw-hero-bonus {
  margin-top: 1.4rem;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.btzw-hero-bonus-item {
  display: flex;
  flex-direction: column;
}
.btzw-hero-bonus-label {
  font-size: 0.7rem;
  color: #8890aa;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.btzw-hero-bonus-val {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-gold);
}

.btzw-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s;
}
.btzw-block:hover {
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.45);
}

/* ===== INFO TABLE ===== */
.btzw-info-table-wrap {
  overflow-x: auto;
}
.btzw-info-table {
  width: 100%;
  border-collapse: collapse;
}
.btzw-info-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.9rem;
  vertical-align: top;
  text-align: left;
}
.btzw-info-table td:first-child {
  color: var(--c-text-muted);
  font-weight: 600;
  width: 36%;
  white-space: normal;
}
.btzw-info-table td:last-child {
  color: var(--c-text);
}
.btzw-info-table tr:last-child td {
  border-bottom: none;
}
.btzw-info-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.btzw-info-table .btzw-badge-bonus {
  display: inline-block;
  background: var(--c-btn-reg);
  color: #fff;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 2px 9px;
  margin-left: 4px;
}
.btzw-rating-stars {
  color: var(--c-gold);
  letter-spacing: 2px;
}

/* ===== MIRRORS TABLE ===== */
.btzw-mirrors-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1.2rem;
}
.btzw-datetime {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--c-text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-border);
  padding: 6px 14px;
  border-radius: 20px;
}
.btzw-datetime-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-green);
  flex-shrink: 0;
}
#btzw-datetime-val {
  color: var(--c-green);
  font-weight: 600;
}
.btzw-mirrors-table-wrap {
  overflow-x: auto;
}
.btzw-mirrors-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}
.btzw-mirrors-table th {
  background: rgba(82, 54, 240, 0.14);
  color: #bbc0d8;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 16px;
  text-align: left;
  border-bottom: 2px solid var(--c-accent);
}
.btzw-mirrors-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.88rem;
  text-align: left;
}
.btzw-mirrors-table tr:last-child td {
  border-bottom: none;
}
.btzw-mirrors-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.btzw-mirror-link {
  color: var(--c-accent2);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.btzw-mirror-link:hover {
  color: #fff;
  text-decoration: underline;
}
.btzw-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
}
.btzw-status-badge.active {
  background: rgba(45, 224, 139, 0.12);
  color: var(--c-green);
  border: 1px solid rgba(45, 224, 139, 0.25);
}
.btzw-status-badge.slow {
  background: rgba(240, 192, 64, 0.12);
  color: var(--c-gold);
  border: 1px solid rgba(240, 192, 64, 0.25);
}
.btzw-status-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

/* ===== WINNERS ===== */
.btzw-winners-table-wrap {
  overflow-x: auto;
}
.btzw-winners-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
}
.btzw-winners-table th {
  background: rgba(82, 54, 240, 0.14);
  color: #bbc0d8;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 16px;
  text-align: left;
  border-bottom: 2px solid var(--c-accent);
}
.btzw-winners-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.87rem;
  text-align: left;
}
.btzw-winners-table tr:last-child td {
  border-bottom: none;
}
.btzw-winners-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.btzw-rank {
  font-weight: 800;
  color: var(--c-text-muted);
  width: 40px;
}
.btzw-rank.gold {
  color: #f0c040;
}
.btzw-rank.silver {
  color: #c0c8d8;
}
.btzw-rank.bronze {
  color: #cd7c50;
}
.btzw-winner-name {
  font-weight: 600;
  color: #e0e4f0;
}
.btzw-win-amount {
  font-weight: 700;
  color: var(--c-green);
}
.btzw-win-game {
  color: var(--c-text-muted);
  font-size: 0.82rem;
}

/* ===== TOURNAMENTS ===== */
.btzw-tournaments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.btzw-tournament-card {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.btzw-tournament-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent2));
}
.btzw-tournament-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(82, 54, 240, 0.25);
}
.btzw-tournament-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.btzw-tournament-desc {
  font-size: 0.84rem;
  color: var(--c-text-muted);
  line-height: 1.55;
  flex: 1;
}
.btzw-tournament-prize {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-gold);
}
.btzw-tournament-prize-label {
  font-size: 0.73rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btzw-tournament-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--c-text-muted);
}
.btzw-timer-blocks {
  display: flex;
  gap: 5px;
}
.btzw-timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--c-border);
  border-radius: 5px;
  padding: 4px 8px;
  min-width: 34px;
}
.btzw-timer-val {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.btzw-timer-lbl {
  font-size: 0.58rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
}
.btzw-tournament-btn {
  align-self: flex-start;
}

/* ===== DEMO SLOT ===== */
.btzw-demo-wrap {
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--c-border);
  aspect-ratio: 16/9;
  max-height: 540px;
  position: relative;
}
.btzw-demo-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.btzw-demo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #0a0c18;
}
.btzw-demo-placeholder-icon {
  font-size: 3.5rem;
  filter: drop-shadow(0 0 16px rgba(82, 54, 240, 0.7));
}
.btzw-demo-placeholder p {
  color: var(--c-text-muted);
  font-size: 0.9rem;
  text-align: center;
  margin: 0;
}

/* ===== CONTENT BLOCK ===== */
.btzw-content-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
}
.btzw-content-block h2 {
  color: #fff;
  margin-bottom: 0.9rem;
}
.btzw-content-block h3 {
  color: #dde0f0;
  margin-bottom: 0.7rem;
  margin-top: 1.4rem;
}
.btzw-content-block h4 {
  color: #c5c9e0;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}
.btzw-content-block p {
  color: var(--c-text);
  margin-bottom: 0.9rem;
  line-height: 1.7;
}
.btzw-content-block ul,
.btzw-content-block ol {
  margin: 0.7rem 0 0.9rem 1.5rem;
}
.btzw-content-block li {
  color: var(--c-text);
  margin-bottom: 0.35rem;
  line-height: 1.6;
}
.btzw-content-block a {
  color: var(--c-accent2);
}
.btzw-content-block a:hover {
  text-decoration: underline;
}
.btzw-content-block strong {
  color: #fff;
  font-weight: 700;
}
.btzw-content-block em {
  color: var(--c-accent2);
  font-style: italic;
}
.btzw-content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.btzw-content-block table th {
  background: rgba(82, 54, 240, 0.14);
  color: #bbc0d8;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 2px solid var(--c-accent);
}
.btzw-content-block table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.88rem;
  color: var(--c-text);
  text-align: left;
}
.btzw-content-block table tr:last-child td {
  border-bottom: none;
}
.btzw-content-block table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.btzw-content-block blockquote {
  border-left: 4px solid var(--c-accent);
  background: rgba(82, 54, 240, 0.08);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  margin: 1rem 0;
  color: #b0b8d8;
  font-style: italic;
}
.btzw-content-block img {
  border-radius: 8px;
  max-width: 100%;
  margin: 0.5rem 0;
}

.btzw-author-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 20px;
}
.btzw-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--c-btn-login);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-accent2);
  border: 2px solid var(--c-accent);
}
.btzw-author-info {
}
.btzw-author-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}
.btzw-author-bio {
  color: var(--c-text-muted);
  font-size: 0.8rem;
  line-height: 1.55;
  margin-top: 4px;
  margin-bottom: 0;
}
.btzw-author-link {
  font-size: 0.8rem;
  color: var(--c-accent2);
  margin-top: 4px;
  display: inline-block;
}

.btzw-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.btzw-faq-item {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.btzw-faq-item.open {
  border-color: rgba(82, 54, 240, 0.45);
}
.btzw-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.93rem;
  font-weight: 600;
  transition: background 0.2s;
}
.btzw-faq-q:hover {
  background: rgba(255, 255, 255, 0.04);
}
.btzw-faq-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--c-accent2);
  transition: transform 0.3s;
}
.btzw-faq-item.open .btzw-faq-chevron {
  transform: rotate(180deg);
}
.btzw-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.btzw-faq-a-inner {
  padding: 0 20px 16px;
  color: var(--c-text-muted);
  font-size: 0.88rem;
  line-height: 1.68;
}

.btzw-footer {
  background: var(--c-footer);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 24px;
  margin-top: auto;
}
.btzw-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.btzw-footer-logo img {
  height: 38px;
  margin-bottom: 12px;
  border-radius: 6px;
}
.btzw-footer-desc {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}
.btzw-footer-nav-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8890aa;
  margin-bottom: 0.7rem;
}
.btzw-footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.btzw-footer-nav a {
  color: #8890aa;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.btzw-footer-nav a:hover {
  color: #fff;
}
.btzw-footer-payments-title,
.btzw-footer-providers-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8890aa;
  margin-bottom: 0.7rem;
}
.btzw-footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.btzw-footer-logo-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #9aa0b8;
  transition:
    background 0.2s,
    color 0.2s;
}
.btzw-footer-logo-badge:hover {
  background: rgba(82, 54, 240, 0.15);
  color: #fff;
}
.btzw-footer-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.btzw-copyright {
  font-size: 0.75rem;
  color: #5a607a;
  line-height: 1.6;
  max-width: 700px;
}
.btzw-copyright a {
  color: #7a80a0;
}

/* ===== WIDGET ===== */
.btzw-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, #1a1240 0%, #0f0d28 100%);
  border-top: 2px solid var(--c-accent);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(82, 54, 240, 0.35);
  flex-wrap: wrap;
}
.btzw-widget-text {
  font-size: 0.88rem;
  color: #c8d0f0;
  font-weight: 500;
}
.btzw-widget-text strong {
  color: var(--c-gold);
}
.btzw-widget-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #8890aa;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.btzw-widget-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

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

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btzw-fadein {
  animation: fadeInUp 0.5s ease both;
}
.btzw-fadein-2 {
  animation: fadeInUp 0.5s 0.1s ease both;
}
.btzw-fadein-3 {
  animation: fadeInUp 0.5s 0.2s ease both;
}

/* ===== WP DECOYS ===== */
.wp-content-area {
  display: none;
}
#wpadminbar {
  display: none !important;
}
.entry-content {
}
.post-thumbnail {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .btzw-tournaments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .btzw-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- 768px ---- */
@media (max-width: 768px) {
  /* Layout */
  .btzw-container {
    padding: 0 12px;
  }
  .btzw-section {
    padding: 28px 0 24px;
  }
  .btzw-block {
    padding: 16px 12px;
    border-radius: var(--radius);
  }
  .btzw-content-block {
    padding: 16px 12px;
    border-radius: var(--radius);
  }
  .btzw-section-title {
    font-size: 1.1rem;
    gap: 0.45rem;
    margin-bottom: 1rem;
  }
  main {
    padding-bottom: 90px;
  }

  /* Header */
  .btzw-header-inner {
    grid-template-columns: auto 1fr auto;
    padding: 8px 12px;
    gap: 8px;
  }
  .btzw-nav {
    display: none;
  }
  .btzw-online {
    display: none;
  }
  .btzw-burger {
    display: flex;
  }
  .btzw-header-btns {
    gap: 6px;
  }
  .btzw-header-btns .btn-login {
    display: none;
  }
  .btzw-header-btns .btn-reg {
    font-size: 0.78rem;
    padding: 7px 13px;
  }
  .btzw-logo img {
    height: 36px;
  }

  /* Hero */
  .btzw-hero {
    min-height: auto;
    padding: 0;
  }
  .btzw-hero-content {
    padding: 32px 0 28px;
    max-width: 100%;
  }
  .btzw-hero h1 {
    font-size: 1.45rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }
  .btzw-hero-desc {
    font-size: 0.875rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
  }
  .btzw-hero-badge {
    font-size: 0.72rem;
    padding: 4px 10px;
  }
  .btzw-hero-btns {
    flex-direction: column;
    gap: 8px;
  }
  .btzw-hero-btns .btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 12px 20px;
    justify-content: center;
  }
  .btzw-hero-bonus {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 1rem;
  }
  .btzw-hero-bonus-val {
    font-size: 0.95rem;
  }
  .btzw-hero-bonus-label {
    font-size: 0.65rem;
  }

  .btzw-info-table-wrap {
    overflow-x: visible;
  }
  .btzw-info-table {
    min-width: unset;
    width: 100%;
  }
  .btzw-info-table td {
    padding: 9px 10px;
    font-size: 0.82rem;
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .btzw-info-table td:first-child {
    white-space: normal;
    width: 100%;
    padding-bottom: 2px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--c-text-muted);
    border-bottom: none;
  }
  .btzw-info-table td:last-child {
    padding-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--c-border);
    font-weight: 500;
  }
  .btzw-info-table tr:last-child td:last-child {
    border-bottom: none;
  }
  .btzw-info-table tr:hover td {
    background: none;
  }

  .btzw-mirrors-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .btzw-mirrors-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -12px;
    padding: 0 12px;
  }
  .btzw-mirrors-table {
    min-width: 440px;
  }
  .btzw-mirrors-table th,
  .btzw-mirrors-table td {
    padding: 9px 10px;
    font-size: 0.8rem;
  }

  .btzw-winners-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -12px;
    padding: 0 12px;
  }
  .btzw-winners-table {
    min-width: 400px;
  }
  .btzw-winners-table th,
  .btzw-winners-table td {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  /* Tournaments */
  .btzw-tournaments-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .btzw-tournament-card {
    padding: 18px 14px;
  }
  .btzw-tournament-prize {
    font-size: 1.15rem;
  }

  /* Timer */
  .btzw-timer-unit {
    padding: 3px 7px;
    min-width: 30px;
  }
  .btzw-timer-val {
    font-size: 0.88rem;
  }
  .btzw-timer-lbl {
    font-size: 0.55rem;
  }

  /* Author */
  .btzw-author-block {
    flex-direction: column;
    gap: 10px;
  }
  .btzw-author-avatar {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  /* FAQ */
  .btzw-faq-q {
    padding: 13px 14px;
    font-size: 0.87rem;
  }
  .btzw-faq-a-inner {
    padding: 0 14px 13px;
    font-size: 0.84rem;
  }

  .btzw-footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .btzw-footer {
    padding: 32px 0 16px;
  }
  .btzw-footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .btzw-widget {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 44px 10px 12px;
  }
  .btzw-widget-text {
    font-size: 0.78rem;
    flex: 1;
    min-width: 0;
  }
  .btzw-widget .btn-reg {
    font-size: 0.78rem;
    padding: 8px 14px;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .btzw-container {
    padding: 0 10px;
  }
  .btzw-section {
    padding: 22px 0 18px;
  }
  .btzw-block {
    padding: 13px 10px;
  }
  .btzw-content-block {
    padding: 13px 10px;
  }
  .btzw-section-title {
    font-size: 1rem;
  }
  main {
    padding-bottom: 80px;
  }

  .btzw-logo img {
    height: 30px;
  }
  .btzw-header-inner {
    padding: 7px 10px;
  }
  .btzw-header-btns .btn-reg {
    font-size: 0.72rem;
    padding: 6px 11px;
  }

  .btzw-hero-content {
    padding: 24px 0 20px;
  }
  .btzw-hero h1 {
    font-size: 1.25rem;
  }
  .btzw-hero-desc {
    font-size: 0.82rem;
  }
  .btzw-hero-bonus {
    gap: 8px;
  }
  .btzw-hero-bonus-val {
    font-size: 0.88rem;
  }

  .btzw-mirrors-table {
    min-width: 360px;
  }
  .btzw-mirrors-table th,
  .btzw-mirrors-table td {
    padding: 7px 8px;
    font-size: 0.76rem;
  }
  .btzw-winners-table {
    min-width: 340px;
  }
  .btzw-winners-table th,
  .btzw-winners-table td {
    padding: 7px 8px;
    font-size: 0.76rem;
  }

  .btzw-widget {
    padding: 9px 40px 9px 10px;
    gap: 6px;
  }
  .btzw-widget-text {
    font-size: 0.74rem;
  }
  .btzw-widget .btn-reg {
    font-size: 0.74rem;
    padding: 7px 12px;
  }

  .btzw-footer-logo-badge {
    font-size: 0.7rem;
    padding: 4px 7px;
  }
  .btzw-copyright {
    font-size: 0.7rem;
  }
}

.bzq17r {
  color: transparent;
}
.xp94ms {
  font-size: 0;
}
:root {
  --wc-gutter: 32px;
  --wc-sidebar: 280px;
  --wc-content: 840px;
  --wp-admin-bar: 32px;
  --elementor-spacer-ratio: 0.5;
}
.elementor-widget {
  display: revert;
}
.wp-block-group__inner-container {
  max-width: 100%;
}
