*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --c-bg: #1d1d1d;
  --c-header: #8d0d0f;
  --c-btn-dark: #363636;
  --c-btn-green: #29b149;
  --c-btn-green-h: #22963e;
  --c-text: #f0f0f0;
  --c-text-muted: #aaa;
  --c-border: #2e2e2e;
  --c-card: #252525;
  --c-card2: #2a1010;
  --c-gold: #e6b800;
  --c-accent: #b01214;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --trans: 0.22s ease;
}
html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}
body {
  font-family: "Roboto", "Open Sans", Arial, Helvetica, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.6;
  min-width: 320px;
  overflow-x: hidden;
}
a {
  color: var(--c-btn-green);
  text-decoration: none;
  transition: color var(--trans);
}
a:hover {
  color: #fff;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}
.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;
}

.x9f2k {
  display: none;
}
.wp-post-image {
  display: none;
}
.entry-meta {
  display: none;
}
.e7b3r2 {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  padding: 56px 0;
}
.section-title {
  font-size: 1.65rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  color: #fff;
  letter-spacing: 0.02em;
}
.section-title span {
  color: var(--c-btn-green);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  transition:
    transform var(--trans),
    box-shadow var(--trans),
    background var(--trans),
    filter var(--trans);
  cursor: pointer;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-decoration: none;
}
.btn:active {
  transform: translateY(0);
}
.btn--dark {
  background: var(--c-btn-dark);
  color: #fff;
}
.btn--dark:hover {
  background: #444;
  color: #fff;
}
.btn--green {
  background: var(--c-btn-green);
  color: #fff;
}
.btn--green:hover {
  background: var(--c-btn-green-h);
  color: #fff;
}
.btn--red {
  background: var(--c-header);
  color: #fff;
}
.btn--red:hover {
  background: var(--c-accent);
  color: #fff;
}
.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 8px;
}
.btn--sm {
  padding: 7px 14px;
  font-size: 0.82rem;
}

#xb9a2 {
  display: none;
  visibility: hidden;
}
.wp-block-button__link {
  display: none;
}
.has-text-align-center {
  display: none;
}

header.site-header {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 64px;
}
.header-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 5px;
  transition:
    background var(--trans),
    color var(--trans);
}
.header-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  margin-right: 6px;
}
.header-online-dot {
  width: 8px;
  height: 8px;
  background: var(--c-btn-green);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
  cursor: pointer;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--c-header);
  z-index: 999;
  padding: 16px;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transform: translateY(-10px);
  opacity: 0;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu a {
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background var(--trans);
}
.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.12);
}
.mobile-menu-actions {
  display: flex;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 4px;
}
.mobile-menu-actions .btn {
  flex: 1;
  text-align: center;
  justify-content: center;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(141, 13, 15, 0.65) 0%,
    rgba(29, 29, 29, 0.7) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 64px 0;
  max-width: 680px;
}
.hero-badge {
  display: inline-block;
  background: var(--c-btn-green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
}
.hero-title span {
  color: #ffe55a;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffe55a;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.winners-section {
  background: var(--c-bg);
}
.winners-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}
.winners-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 400px;
}
.winners-table thead tr {
  background: var(--c-header);
}
.winners-table thead th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.winners-table tbody tr {
  border-bottom: 1px solid var(--c-border);
  transition: background var(--trans);
}
.winners-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
.winners-table tbody tr:last-child {
  border-bottom: none;
}
.winners-table td {
  padding: 11px 16px;
  font-size: 0.9rem;
}
.winners-table .place {
  font-weight: 700;
  color: var(--c-text-muted);
  width: 40px;
}
.winners-table .place-1 {
  color: var(--c-gold);
}
.winners-table .place-2 {
  color: #c0c0c0;
}
.winners-table .place-3 {
  color: #cd7f32;
}
.winners-table .nickname {
  font-weight: 600;
  color: #fff;
}
.winners-table .amount {
  font-weight: 700;
  color: var(--c-btn-green);
  text-align: right;
}
.winners-table .game {
  color: var(--c-text-muted);
  font-size: 0.82rem;
}

.tournaments-section {
  background: #1a1a1a;
}
.tournaments-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.tournament-card {
  flex: 1;
  min-width: 280px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform var(--trans),
    box-shadow var(--trans);
  display: flex;
  flex-direction: column;
}
.tournament-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}
.tournament-card-img {
  height: 160px;
  overflow: hidden;
  position: relative;
}
.tournament-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.tournament-card:hover .tournament-card-img img {
  transform: scale(1.06);
}
.tournament-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--c-header);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tournament-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tournament-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}
.tournament-card-desc {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.55;
}
.tournament-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--c-border);
}
.tournament-prize {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-btn-green);
}
.tournament-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--c-text-muted);
}
.timer-blocks {
  display: flex;
  gap: 4px;
}
.timer-block {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: 4px 7px;
  text-align: center;
  min-width: 36px;
}
.timer-block span {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.timer-block small {
  display: block;
  font-size: 0.6rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
}
.timer-sep {
  color: var(--c-text-muted);
  font-size: 1rem;
  line-height: 2;
}
.tournament-slider-wrap {
  position: relative;
}
.tournaments-slider-nav {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.tournaments-slider-nav button {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: background var(--trans);
}
.tournaments-slider-nav button:hover {
  background: var(--c-header);
}

.promo-section {
  background: var(--c-bg);
}
.promo-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.promo-card {
  background: linear-gradient(135deg, #2a1010 0%, #1e1e1e 100%);
  border: 2px solid var(--c-header);
  border-radius: 14px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.promo-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.promo-code-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.promo-code-box {
  background: #111;
  border: 2px dashed var(--c-header);
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffe55a;
  letter-spacing: 0.12em;
  user-select: all;
  transition: border-color var(--trans);
}
.promo-code-box:hover {
  border-color: var(--c-btn-green);
}
.promo-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  background: rgba(41, 177, 73, 0.12);
  border: 1px solid rgba(41, 177, 73, 0.3);
  color: var(--c-btn-green);
  margin-bottom: 16px;
}
.promo-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-btn-green);
  animation: pulse 1.5s infinite;
}
.promo-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 4px;
}
.promo-bonus {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  margin-top: 14px;
}
.promo-bonus strong {
  color: #ffe55a;
}
.promo-copied {
  display: none;
  font-size: 0.82rem;
  color: var(--c-btn-green);
  margin-top: 8px;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.app-section {
  background: #1a1a1a;
}
.app-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.app-info {
  flex: 1;
  min-width: 280px;
}
.app-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}
.app-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 380px;
}
.app-table tr {
  border-bottom: 1px solid var(--c-border);
}
.app-table tr:last-child {
  border-bottom: none;
}
.app-table td {
  padding: 12px 16px;
  font-size: 0.9rem;
}
.app-table td:first-child {
  color: var(--c-text-muted);
  font-weight: 500;
  width: 45%;
  background: rgba(255, 255, 255, 0.02);
}
.app-table td:last-child {
  color: #fff;
  font-weight: 600;
}
.app-download {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.app-download-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 12px 20px;
  color: #fff;
  font-size: 0.9rem;
  transition:
    background var(--trans),
    transform var(--trans),
    border-color var(--trans);
  min-width: 190px;
  text-decoration: none;
}
.app-btn:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--c-btn-green);
  transform: translateX(4px);
  color: #fff;
}
.app-btn-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.app-btn-text small {
  display: block;
  font-size: 0.68rem;
  color: var(--c-text-muted);
}
.app-btn-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}
.app-badge {
  display: inline-block;
  background: rgba(41, 177, 73, 0.15);
  color: var(--c-btn-green);
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 8px;
  font-weight: 600;
}

.wheel-section {
  background: var(--c-bg);
}
.wheel-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.wheel-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  flex-shrink: 0;
}
.wheel-canvas {
  border-radius: 50%;
  box-shadow:
    0 0 0 6px rgba(141, 13, 15, 0.5),
    0 0 32px rgba(141, 13, 15, 0.3);
  display: block;
}
.wheel-pointer {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 26px solid #ffe55a;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
  z-index: 2;
}
.wheel-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.wheel-center-circle {
  width: 52px;
  height: 52px;
  background: radial-gradient(circle, #2a2a2a, #111);
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.6);
}
.wheel-controls {
  text-align: center;
}
.wheel-result {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 24px 32px;
  text-align: center;
  min-width: 260px;
  max-width: 340px;
  animation: fadeIn 0.4s ease;
}
.wheel-result-win {
  border-color: var(--c-btn-green);
  background: rgba(41, 177, 73, 0.06);
}
.wheel-result-lose {
  border-color: var(--c-border);
}
.wheel-result-emoji {
  font-size: 2rem;
  margin-bottom: 8px;
}
.wheel-result-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.wheel-result-sub {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  margin-bottom: 14px;
}
.wheel-hint {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  text-align: center;
  margin-top: 8px;
}
.wheel-spins-left {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  margin-bottom: 8px;
}
.wheel-tries-badge {
  background: rgba(141, 13, 15, 0.25);
  border: 1px solid rgba(141, 13, 15, 0.4);
  color: #ff9999;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 6px;
  text-align: center;
  margin-top: 8px;
}

.review-section {
  background: #1a1a1a;
}
.review-inner {
  max-width: 860px;
  margin: 0 auto;
}
.review-content-block {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--c-text);
}
.review-content-block h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 12px;
  border-left: 3px solid var(--c-header);
  padding-left: 12px;
}
.review-content-block h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin: 22px 0 10px;
}
.review-content-block h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 16px 0 8px;
}
.review-content-block p {
  margin-bottom: 14px;
  color: var(--c-text);
}
.review-content-block ul,
.review-content-block ol {
  margin: 12px 0 16px 22px;
}
.review-content-block li {
  margin-bottom: 7px;
  color: var(--c-text);
}
.review-content-block a {
  color: var(--c-btn-green);
}
.review-content-block a:hover {
  color: #fff;
}
.review-content-block strong {
  color: #fff;
}
.review-content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.review-content-block table th {
  background: var(--c-header);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-size: 0.88rem;
}
.review-content-block table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.9rem;
  color: var(--c-text);
}
.review-content-block table tr:last-child td {
  border-bottom: none;
}
.review-content-block blockquote {
  border-left: 3px solid var(--c-header);
  padding: 12px 18px;
  background: rgba(141, 13, 15, 0.07);
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  font-style: italic;
  color: var(--c-text-muted);
}

.author-section {
  background: var(--c-bg);
}
.author-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 28px;
  max-width: 700px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.author-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--c-header);
}
.author-info {
  flex: 1;
  min-width: 200px;
}
.author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.author-role {
  font-size: 0.82rem;
  color: var(--c-btn-green);
  font-weight: 600;
  margin-bottom: 10px;
}
.author-bio {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.author-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.author-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
  padding: 5px 12px;
  border-radius: 20px;
  transition: all var(--trans);
}
.author-social a:hover {
  border-color: var(--c-btn-green);
  color: var(--c-btn-green);
}

.site-footer {
  background: var(--c-header);
  padding: 40px 0 0;
}
.footer-top {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  align-items: flex-start;
}
.footer-brand {
  flex: 0 0 200px;
}
.footer-logo img {
  height: 38px;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}
.footer-col {
  flex: 1;
  min-width: 140px;
}
.footer-col-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
  transition: color var(--trans);
}
.footer-col a:hover {
  color: #fff;
}
.footer-payments {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
}
.footer-payments-title {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  font-weight: 600;
}
.footer-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-logo-pill {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  transition: background var(--trans);
}
.footer-logo-pill:hover {
  background: rgba(255, 255, 255, 0.18);
}
.footer-bottom {
  background: rgba(0, 0, 0, 0.25);
  padding: 16px 0;
  margin-top: 8px;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-legal {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: 700px;
  line-height: 1.5;
}
.footer-license {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 5px;
  padding: 3px 10px;
  margin-top: 6px;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #1a0607 0%, #2d0b0c 100%);
  border-top: 2px solid var(--c-header);
  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);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: slideUpWidget 1s 0.8s forwards;
}
@keyframes slideUpWidget {
  to {
    transform: translateY(0);
  }
}
.widget-text {
  flex: 1;
}
.widget-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}
.widget-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}
.widget-bonus-badge {
  background: rgba(255, 229, 90, 0.12);
  border: 1px solid rgba(255, 229, 90, 0.3);
  color: #ffe55a;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  white-space: nowrap;
}
.widget-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
  transition: color var(--trans);
  flex-shrink: 0;
}
.widget-close:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .tournaments-grid {
    flex-direction: column;
  }
  .tournaments-slider-nav {
    display: flex;
  }
  .app-inner {
    flex-direction: column;
  }
  .footer-top {
    gap: 20px;
  }
  .footer-brand {
    flex: 0 0 100%;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 36px 0;
  }
  .section-title {
    font-size: 1.35rem;
  }
  .hero-inner {
    padding: 40px 0;
  }
  .hero-title {
    font-size: 1.6rem;
  }
  .promo-card {
    padding: 24px 16px;
  }
  .promo-code-box {
    font-size: 1.2rem;
    padding: 10px 16px;
  }
  .wheel-wrap {
    width: 260px;
    height: 260px;
  }
  .wheel-canvas {
    width: 260px;
    height: 260px;
  }
  .author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .author-social {
    justify-content: center;
  }
  .sticky-widget {
    flex-wrap: wrap;
    gap: 8px;
  }
  .widget-text {
    width: 100%;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.b2kr4j,
.n8pq1z,
.m5vw3x {
  display: none;
  visibility: hidden;
}
.wp-embed-share {
  display: none;
}
.nonce-field {
  display: none;
  height: 0;
  overflow: hidden;
}
.elementor-widget-container {
  display: none;
}

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

.divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--c-border) 30%,
    var(--c-border) 70%,
    transparent
  );
  margin: 0;
}
