:root {
  --clr-bg: #181819;
  --clr-header: #232323;
  --clr-btn-dark: #181819;
  --clr-btn-accent: #eb880c;
  --clr-btn-accent-hover: #d4770a;
  --clr-text: #f0f0f0;
  --clr-text-muted: #9a9a9a;
  --clr-text-dark: #c8c8c8;
  --clr-card: #222224;
  --clr-card-border: #2e2e30;
  --clr-gold: #eb880c;
  --clr-gold-light: #ffa63e;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.45);
  --transition: 0.22s ease;
  --font-main: "Inter", Arial, sans-serif;
  --font-heading: "Montserrat", Arial, sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--clr-gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--clr-gold-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--clr-text);
}

.x9f2k {
  display: none;
}
.wp-block-query {
  display: block;
}
.elementor-hidden {
  visibility: hidden;
  position: absolute;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}

.btn--dark {
  background: var(--clr-btn-dark);
  color: var(--clr-text);
  border: 1px solid #3a3a3c;
}
.btn--dark:hover {
  background: #28282a;
  color: var(--clr-text);
  border-color: var(--clr-gold);
}

.btn--accent {
  background: var(--clr-btn-accent);
  color: #fff;
  border: 1px solid var(--clr-btn-accent);
}
.btn--accent:hover {
  background: var(--clr-btn-accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(235, 136, 12, 0.4);
}

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

.btn--copy {
  background: #2a2a2c;
  color: var(--clr-text);
  border: 1px solid #3a3a3c;
  font-size: 13px;
  padding: 8px 16px;
}
.btn--copy:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}
.btn--copy.copied {
  background: #1a3a1a;
  border-color: #2a7a2a;
  color: #4caf50;
}

/* HEADER */
.site-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #2e2e30;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

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

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

.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.header-nav a {
  color: var(--clr-text-dark);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.header-nav a:hover {
  color: var(--clr-text);
  background: rgba(255, 255, 255, 0.06);
}

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

.online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--clr-text-muted);
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  border: 1px solid #2e2e30;
}

.online-count::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4caf50;
  box-shadow: 0 0 6px #4caf50;
  animation: pulse-dot 2s infinite;
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: 1px solid #3a3a3c;
  border-radius: var(--radius-sm);
  padding: 6px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.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(--clr-header);
  border-bottom: 1px solid #2e2e30;
  z-index: 999;
  padding: 16px 20px;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-10px);
  opacity: 0;
  transition: all var(--transition);
  pointer-events: none;
}

.mobile-menu.active {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  color: var(--clr-text-dark);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid #2a2a2c;
}
.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--clr-text);
}

.hero-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/Rban.jpeg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(24, 24, 25, 0.9) 40%,
    rgba(24, 24, 25, 0.1) 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(235, 136, 12, 0.15);
  border: 1px solid rgba(235, 136, 12, 0.4);
  color: var(--clr-gold);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-title span {
  color: var(--clr-gold);
}

.hero-subtitle {
  font-size: 16px;
  color: var(--clr-text-dark);
  margin-bottom: 28px;
  line-height: 1.6;
}

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

.hero-note {
  font-size: 12px;
  color: var(--clr-text-muted);
  margin-top: 14px;
}

/* TABLE OF CONTENTS */
.toc-section {
  padding: 32px 0;
}

.toc-box {
  background: var(--clr-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

.toc-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--clr-text);
}

.toc-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.toc-list li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #2e2e30;
  color: var(--clr-text-dark);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 20px;
  transition: all var(--transition);
}
.toc-list li a:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  background: rgba(235, 136, 12, 0.08);
}

.toc-num {
  background: var(--clr-gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* SECTION COMMON */
.section {
  padding: 60px 0;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--clr-text-muted);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-gold);
  margin-bottom: 8px;
}

/* JACKPOT */
.jackpot-section {
  background: linear-gradient(135deg, #1c1c1e 0%, #232323 100%);
  border-top: 1px solid #2e2e30;
  border-bottom: 1px solid #2e2e30;
}

.jackpot-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.jackpot-card {
  flex: 1 1 200px;
  background: linear-gradient(135deg, #2a2200 0%, #3a2e00 100%);
  border: 1px solid rgba(235, 136, 12, 0.3);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.jackpot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(235, 136, 12, 0.2);
}

.jackpot-card::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(
    circle,
    rgba(235, 136, 12, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.jackpot-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.jackpot-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
}

.jackpot-amount {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--clr-gold);
  letter-spacing: -0.5px;
  transition: all 0.3s;
}

/* PROMO CODE */
.promo-section {
  padding: 60px 0;
}

.promo-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.promo-card {
  background: linear-gradient(135deg, #232323 0%, #2a2200 100%);
  border: 1px solid rgba(235, 136, 12, 0.35);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(235, 136, 12, 0.12);
}

.promo-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.35);
  color: #4caf50;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.promo-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4caf50;
  animation: pulse-dot 2s infinite;
}

.promo-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.promo-desc {
  color: var(--clr-text-muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.promo-code-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 16px;
}

.promo-code-value {
  background: #111112;
  border: 2px solid rgba(235, 136, 12, 0.5);
  border-right: none;
  color: var(--clr-gold);
  font-family: var(--font-heading);
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: 3px;
  padding: 14px 28px;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  user-select: all;
  cursor: text;
}

.btn--copy-inline {
  background: rgba(235, 136, 12, 0.15);
  border: 2px solid rgba(235, 136, 12, 0.5);
  color: var(--clr-gold);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn--copy-inline:hover {
  background: rgba(235, 136, 12, 0.3);
}
.btn--copy-inline.copied {
  background: rgba(76, 175, 80, 0.2);
  border-color: rgba(76, 175, 80, 0.5);
  color: #4caf50;
}

.promo-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

.promo-timer {
  margin-top: 18px;
  font-size: 13px;
  color: var(--clr-text-muted);
}

.promo-timer strong {
  color: var(--clr-gold);
}

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

.tournament-card {
  flex: 1 1 300px;
  background: var(--clr-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.tournament-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(235, 136, 12, 0.3);
}

.tournament-header-bg {
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tournament-header-bg.t1 {
  background: linear-gradient(135deg, #1a1200 0%, #3a2600 100%);
}
.tournament-header-bg.t2 {
  background: linear-gradient(135deg, #0a1a2a 0%, #1a3a50 100%);
}
.tournament-header-bg.t3 {
  background: linear-gradient(135deg, #1a0a1a 0%, #3a1a3a 100%);
}

.tournament-icon {
  font-size: 36px;
}

.tournament-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tournament-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-text);
}

.tournament-desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.tournament-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--clr-card-border);
}

.tournament-prize {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--clr-gold);
}

.tournament-timer {
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.timer-val {
  color: var(--clr-text);
  font-variant-numeric: tabular-nums;
}

/* GAMES */
.games-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.game-card {
  flex: 1 1 160px;
  background: var(--clr-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
  border-color: rgba(235, 136, 12, 0.35);
}

.game-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.game-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover .game-img-wrap img {
  transform: scale(1.06);
}

.game-provider {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--clr-text-muted);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.game-name {
  font-weight: 700;
  font-size: 13px;
  color: var(--clr-text);
}

.game-body .btn {
  width: 100%;
  font-size: 12px;
  padding: 8px;
}

.demo-section {
  padding: 60px 0;
}

.demo-wrapper {
  background: var(--clr-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-lg);
}

.demo-top {
  padding: 20px 24px;
  border-bottom: 1px solid var(--clr-card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.demo-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.demo-game-name {
  font-size: 18px;
  font-weight: 700;
}
.demo-provider {
  font-size: 12px;
  color: var(--clr-text-muted);
}

.demo-iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #111;
}

.demo-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* REVIEW CONTENT */
.review-section {
  padding: 60px 0;
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.author-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--clr-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold), #d4770a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--clr-text);
}

.author-role {
  font-size: 12px;
  color: var(--clr-text-muted);
}

.author-link {
  font-size: 12px;
  color: var(--clr-gold);
  margin-top: 2px;
}

.content-body {
  background: var(--clr-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--clr-text-dark);
}

.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4 {
  color: var(--clr-text);
  font-family: var(--font-heading);
  margin-top: 1.6em;
  margin-bottom: 0.6em;
}

.content-body h2 {
  font-size: 22px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--clr-card-border);
}
.content-body h3 {
  font-size: 18px;
}
.content-body h4 {
  font-size: 16px;
  color: var(--clr-gold);
}

.content-body p {
  margin-bottom: 1em;
}

.content-body ul,
.content-body ol {
  margin: 0.8em 0 1em 1.6em;
}
.content-body li {
  margin-bottom: 0.4em;
}

.content-body a {
  color: var(--clr-gold);
}
.content-body a:hover {
  text-decoration: underline;
}

.content-body strong,
.content-body b {
  color: var(--clr-text);
  font-weight: 700;
}

.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em auto;
  font-size: 14px;
  overflow-x: auto;
  display: block;
}
.content-body table thead {
  background: #2a2a2c;
}
.content-body table th {
  text-align: left;
  padding: 10px 14px;
  font-weight: 700;
  color: var(--clr-text);
  border: 1px solid #3a3a3c;
}
.content-body table td {
  padding: 10px 14px;
  border: 1px solid #2e2e30;
  color: var(--clr-text-dark);
}
.content-body table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.content-body blockquote {
  border-left: 4px solid var(--clr-gold);
  padding: 12px 20px;
  margin: 1.2em 0;
  background: rgba(235, 136, 12, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--clr-text-dark);
  font-style: italic;
}

.content-body code {
  background: #2a2a2c;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--clr-gold-light);
}

.content-body pre {
  background: #2a2a2c;
  padding: 16px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  margin: 1em 0;
}

/* FAQ */
.faq-section {
  padding: 60px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}

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

.faq-item.open {
  border-color: rgba(235, 136, 12, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--clr-text);
  transition: color var(--transition);
  user-select: none;
}
.faq-question:hover {
  color: var(--clr-gold);
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #3a3a3c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 16px;
  font-weight: 400;
  color: var(--clr-text-muted);
}
.faq-item.open .faq-icon {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--clr-card-border);
}
.faq-item.open .faq-answer {
  display: block;
}
.faq-answer a {
  color: var(--clr-gold);
}

/* FOOTER */
.site-footer {
  background: var(--clr-header);
  border-top: 1px solid #2e2e30;
  padding: 48px 0 24px;
  margin-top: 40px;
}

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

.footer-col {
  flex: 1 1 200px;
}

.footer-logo img {
  height: 36px;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  max-width: 260px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-text-muted);
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 13px;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--clr-gold);
}

.footer-payments,
.footer-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.payment-badge,
.provider-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid #2e2e30;
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-text-muted);
  transition: all var(--transition);
}
.payment-badge:hover,
.provider-badge:hover {
  background: rgba(235, 136, 12, 0.08);
  border-color: rgba(235, 136, 12, 0.25);
  color: var(--clr-text);
}

.footer-bottom {
  border-top: 1px solid #2e2e30;
  padding-top: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.footer-legal {
  font-size: 11px;
  color: #555;
  max-width: 500px;
  line-height: 1.5;
  text-align: right;
}

/* STICKY WIDGET */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: linear-gradient(90deg, #1c1400 0%, #2a1e00 100%);
  border-top: 2px solid var(--clr-gold);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(235, 136, 12, 0.2);
  transform: translateY(0);
  transition: transform var(--transition);
}

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

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

.widget-bonus {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--clr-gold);
  line-height: 1.2;
}

.widget-sub {
  font-size: 12px;
  color: var(--clr-text-muted);
}

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

.widget-close {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
  line-height: 1;
  transition: color var(--transition);
}
.widget-close:hover {
  color: var(--clr-text);
}

body.widget-open {
  padding-bottom: 66px;
}

/* SLIDER (mobile) */
.slider-wrap {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.35s ease;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(35, 35, 35, 0.9);
  border: 1px solid #3a3a3c;
  color: var(--clr-text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: all var(--transition);
}
.slider-btn:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
}
.slider-btn.prev {
  left: -8px;
}
.slider-btn.next {
  right: -8px;
}

/* SCROLL ANIMATIONS */
[data-fade] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
[data-fade].visible {
  opacity: 1;
  transform: translateY(0);
}

/* WP COMPAT ELEMENTS (декоративные) */
.wp-content {
  display: contents;
}
#wpadminbar {
  display: none !important;
}
.elementor-section {
  display: contents;
}
.elementor-column {
  display: contents;
}
.wp-block-group {
  display: contents;
}
.yoast-schema-graph {
  display: none;
}
.wp-post-navigation {
  display: none;
}
.entry-meta {
  display: none;
}
.wp-caption-text {
  display: none;
}
.screen-reader-text {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .tournaments-grid {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .bx-container {
    padding: 0 14px;
  }
  .header-inner {
    height: 60px;
  }
  .header-actions .online-count {
    display: none;
  }

  .hero-section {
    min-height: 340px;
  }
  .hero-content {
    padding: 36px 0;
  }

  .jackpot-grid {
    gap: 10px;
  }
  .jackpot-card {
    flex: 1 1 140px;
    padding: 16px 12px;
  }

  .games-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }
  .games-grid::-webkit-scrollbar {
    height: 4px;
  }
  .games-grid::-webkit-scrollbar-track {
    background: #2a2a2c;
  }
  .games-grid::-webkit-scrollbar-thumb {
    background: var(--clr-gold);
    border-radius: 2px;
  }
  .game-card {
    flex: 0 0 160px;
    scroll-snap-align: start;
  }

  .tournaments-grid {
    overflow-x: auto;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
  }
  .tournament-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }

  .toc-section {
    padding: 20px 0;
  }
  .toc-box {
    padding: 20px 16px;
  }

  .promo-card {
    padding: 24px 16px;
  }
  .promo-code-value {
    font-size: 20px;
    padding: 12px 16px;
    letter-spacing: 2px;
  }

  .footer-grid {
    gap: 28px;
  }
  .footer-legal {
    text-align: left;
  }

  .sticky-widget {
    padding: 10px 14px;
  }
  .widget-bonus {
    font-size: 14px;
  }

  .section {
    padding: 40px 0;
  }

  .content-body {
    padding: 20px 16px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .promo-code-box {
    flex-direction: column;
  }
  .promo-code-value {
    border-right: 2px solid rgba(235, 136, 12, 0.5);
    border-bottom: none;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }
  .btn--copy-inline {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    width: 100%;
    justify-content: center;
  }
  .promo-actions {
    flex-direction: column;
  }
  .promo-actions .btn {
    width: 100%;
  }
}
