/* 1xslots promo - style.css?ver=1.7 */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
  --color-bg: #16151A;
  --color-header: #1F2024;
  --color-footer: #1F2024;
  --color-btn-dark: #242426;
  --color-btn-gold: #F2D697;
  --color-text: #E8E6F0;
  --color-text-muted: #9B98A8;
  --color-border: #2E2D35;
  --color-card: #1E1D24;
  --color-card2: #232229;
  --color-accent: #F2D697;
  --color-accent2: #D4A843;
  --color-green: #3EBD6B;
  --color-red: #E84545;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { color: var(--color-accent2); }
ul, ol { padding-left: 1.4em; }

/* === UTILITY === */
.x7f2a { display: none; }
.k9p1q { visibility: hidden; height: 0; overflow: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.section-pad { padding: 64px 0; }
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}
.section-sub {
  color: var(--color-text-muted);
  margin-bottom: 36px;
  font-size: 1rem;
}
.text-gold { color: var(--color-accent); }
.text-green { color: var(--color-green); }
.text-muted { color: var(--color-text-muted); }

/* === BUTTONS === */
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--color-btn-dark);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-dark:hover { background: #2e2d35; border-color: #444; transform: translateY(-1px); color: var(--color-text); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #F2D697 0%, #D4A843 100%);
  color: #1a1800;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(242,214,151,0.25);
}
.btn-gold:hover { opacity: 0.92; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(242,214,151,0.38); color: #1a1800; }

.btn-lg { padding: 14px 36px; font-size: 1.05rem; border-radius: var(--radius); }
.btn-sm { padding: 7px 16px; font-size: 0.82rem; }

/* === HEADER === */
#site-header {
  background: var(--color-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 64px;
}
.header-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.header-logo { display: flex; align-items: center; }

.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.header-nav a:hover { color: var(--color-text); background: rgba(255,255,255,0.06); }

.header-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.online-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 6px var(--color-green);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 4px var(--color-green); }
  50% { box-shadow: 0 0 10px var(--color-green), 0 0 18px rgba(62,189,107,0.3); }
}

.header-btns { display: flex; align-items: center; gap: 8px; }
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}
.burger-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--color-header);
  border-top: 1px solid var(--color-border);
  padding: 16px;
  animation: slideDown 0.25s ease;
}
.mobile-menu.open { display: flex; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-menu a {
  color: var(--color-text-muted);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: var(--color-text); background: rgba(255,255,255,0.06); }

/* === HERO SLIDER === */
#hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  background: #0e0d12;
}
.hero-slider { position: relative; width: 100%; overflow: hidden; }
.hero-slide {
  display: none;
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  align-items: center;
}
.hero-slide.active { display: flex; animation: fadeIn 0.6s ease; }
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(22,21,26,0.88) 30%, rgba(22,21,26,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 60px 0;
}
.hero-tag {
  display: inline-block;
  background: var(--color-accent);
  color: #1a1800;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 16px;
}
.hero-content h2 {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.18;
  color: var(--color-text);
  margin-bottom: 14px;
}
.hero-content p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero-dots {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.hero-dot.active { background: var(--color-accent); }

/* === PROMO BLOCK === */
#promo { background: var(--color-bg); }
.promo-card {
  background: linear-gradient(135deg, #1E1D24 0%, #232229 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.promo-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(242,214,151,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.promo-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.promo-code-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.promo-code-box {
  background: var(--color-bg);
  border: 2px dashed var(--color-accent);
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: 3px;
  user-select: all;
}
.promo-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--color-green);
  background: rgba(62,189,107,0.12);
  border-radius: 20px;
  padding: 3px 10px;
}
.promo-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-green);
}
.promo-desc { color: var(--color-text-muted); font-size: 0.9rem; margin-top: 8px; }
.promo-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }

/* === JACKPOT === */
#jackpot { background: linear-gradient(180deg, var(--color-bg) 0%, #1a1920 100%); }
.jackpot-wrap {
  background: linear-gradient(135deg, #1e1c2a 0%, #221f2e 100%);
  border: 1px solid #3a3550;
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.jackpot-wrap::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 200px;
  background: radial-gradient(ellipse, rgba(242,214,151,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.jackpot-label {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}
.jackpot-amount {
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--color-accent);
  text-shadow: 0 0 30px rgba(242,214,151,0.4);
  line-height: 1.1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.jackpot-currency { font-size: 1.5rem; font-weight: 700; }
.jackpot-sub { color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: 24px; }
.jackpot-ticker {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.jackpot-ticker-item {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 10px 20px;
  text-align: center;
}
.jackpot-ticker-item .val {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
}
.jackpot-ticker-item .lbl {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === TOURNAMENTS === */
#tournaments { background: var(--color-bg); }
.tournaments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tournament-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
}
.tournament-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.55); }
.tournament-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: #2a2833;
}
.tournament-card-body { padding: 20px; }
.tournament-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(242,214,151,0.12);
  color: var(--color-accent);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 10px;
}
.tournament-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
  line-height: 1.3;
}
.tournament-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}
.tournament-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.tournament-prize {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--color-accent);
}
.tournament-timer {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.timer-display {
  display: inline-flex;
  gap: 2px;
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
  color: var(--color-text);
  font-weight: 600;
}

/* === BONUSES === */
#bonuses { background: linear-gradient(180deg, #1a1920 0%, var(--color-bg) 100%); }
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bonus-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
}
.bonus-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.5); }
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.bonus-card.bc1::before { background: linear-gradient(90deg, #F2D697, #D4A843); }
.bonus-card.bc2::before { background: linear-gradient(90deg, #3EBD6B, #2a8a4d); }
.bonus-card.bc3::before { background: linear-gradient(90deg, #5b8df5, #3a5fc8); }
.bonus-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.bonus-icon.bi1 { background: rgba(242,214,151,0.12); }
.bonus-icon.bi2 { background: rgba(62,189,107,0.12); }
.bonus-icon.bi3 { background: rgba(91,141,245,0.12); }
.bonus-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}
.bonus-card-val {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.bc1 .bonus-card-val { color: var(--color-accent); }
.bc2 .bonus-card-val { color: var(--color-green); }
.bc3 .bonus-card-val { color: #5b8df5; }
.bonus-card-desc {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
}
.bonus-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bonus-tag {
  font-size: 0.73rem;
  color: var(--color-text-muted);
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  padding: 3px 8px;
}

/* === WHEEL GAME === */
#wheel-game { background: var(--color-bg); }
.wheel-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.wheel-canvas-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.wheel-pointer {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--color-accent);
  margin-bottom: -10px;
  z-index: 2;
  position: relative;
}
canvas#luckyWheel {
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(242,214,151,0.2), 0 0 0 4px var(--color-border);
  max-width: 320px;
  width: 100%;
  aspect-ratio: 1;
}
.wheel-spin-btn {
  margin-top: 8px;
}
.wheel-info h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 12px;
}
.wheel-info p {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.wheel-sectors-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.wheel-sectors-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}
.wsl-dot {
  width: 12px; height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}
.wheel-result {
  display: none;
  background: linear-gradient(135deg, #1e2a1e, #1e2818);
  border: 1px solid var(--color-green);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 16px;
}
.wheel-result.win { display: block; animation: fadeIn 0.4s ease; }
.wheel-result.lose {
  display: block;
  background: linear-gradient(135deg, #2a1e1e, #2a1818);
  border-color: var(--color-red);
  animation: fadeIn 0.4s ease;
}
.wheel-result-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.win .wheel-result-title { color: var(--color-green); }
.lose .wheel-result-title { color: var(--color-red); }
.wheel-result-desc { font-size: 0.88rem; color: var(--color-text-muted); margin-bottom: 12px; }

/* === REVIEWS === */
#reviews { background: linear-gradient(180deg, #1a1920 0%, var(--color-bg) 100%); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.2s;
  box-shadow: var(--shadow);
}
.review-card:hover { transform: translateY(-2px); }
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #2a2833;
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.95rem; color: var(--color-text); }
.review-date { font-size: 0.78rem; color: var(--color-text-muted); }
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}
.review-stars svg { width: 16px; height: 16px; fill: #F2D697; }
.review-text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* === REVIEW FORM === */
.review-form-wrap {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 560px;
  margin: 0 auto;
}
.review-form-wrap h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-text);
}
.review-form-wrap .form-sub { color: var(--color-text-muted); font-size: 0.88rem; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}
.form-control {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 0.92rem;
  padding: 10px 14px;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus { border-color: var(--color-accent); }
.form-control::placeholder { color: var(--color-text-muted); }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  background: rgba(62,189,107,0.12);
  border: 1px solid var(--color-green);
  border-radius: var(--radius-sm);
  color: var(--color-green);
  padding: 12px 16px;
  font-size: 0.92rem;
  margin-top: 16px;
  animation: fadeIn 0.4s ease;
}
.form-success.show { display: block; }

/* === CONTENT BLOCK === */
#content-block { background: var(--color-bg); }
.content-block-inner {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 40px 44px;
}
/* Styling bare HTML content (no classes) */
.content-block-inner h2,
.content-block-inner h3,
.content-block-inner h4 {
  color: var(--color-text);
  margin-top: 28px;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.3;
}
.content-block-inner h2 { font-size: 1.5rem; }
.content-block-inner h3 { font-size: 1.2rem; }
.content-block-inner h4 { font-size: 1.05rem; }
.content-block-inner p {
  color: var(--color-text-muted);
  margin-bottom: 14px;
  line-height: 1.7;
}
.content-block-inner ul,
.content-block-inner ol {
  color: var(--color-text-muted);
  margin-bottom: 14px;
  padding-left: 22px;
}
.content-block-inner li { margin-bottom: 6px; line-height: 1.6; }
.content-block-inner a { color: var(--color-accent); }
.content-block-inner a:hover { color: var(--color-accent2); }
.content-block-inner strong { color: var(--color-text); }
.content-block-inner em { color: var(--color-text-muted); font-style: italic; }
.content-block-inner blockquote {
  border-left: 3px solid var(--color-accent);
  padding: 10px 18px;
  margin: 18px 0;
  background: rgba(242,214,151,0.05);
  border-radius: 0 8px 8px 0;
  color: var(--color-text-muted);
  font-style: italic;
}
.content-block-inner table {
  width: auto;
  margin: 18px auto;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--color-card2);
  border-radius: 8px;
  overflow: hidden;
}
.content-block-inner table th,
.content-block-inner table td {
  border: 1px solid var(--color-border);
  padding: 10px 16px;
  text-align: left;
}
.content-block-inner table th {
  background: rgba(242,214,151,0.08);
  color: var(--color-accent);
  font-weight: 700;
}
.content-block-inner table td { color: var(--color-text-muted); }

/* Author */
.author-block {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(242,214,151,0.05);
  border: 1px solid rgba(242,214,151,0.15);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-bottom: 32px;
}
.author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-info .author-name {
  font-weight: 700;
  color: var(--color-text);
  font-size: 0.95rem;
}
.author-info .author-role {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
.author-info a { color: var(--color-accent); font-size: 0.8rem; }

/* === FOOTER === */
#site-footer {
  background: var(--color-footer);
  border-top: 1px solid var(--color-border);
  padding: 52px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo img {
  height: 36px;
  width: auto;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 180px;
}
.footer-nav h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-nav ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-nav ul li a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  transition: color 0.2s;
}
.footer-nav ul li a:hover { color: var(--color-text); }

.footer-payments { margin-bottom: 28px; }
.footer-payments h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.payment-logo {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 600;
  white-space: nowrap;
}

.footer-providers h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
.provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.provider-logo {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 0.7rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.footer-divider { border: none; border-top: 1px solid var(--color-border); margin: 24px 0; }
.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal { font-size: 0.78rem; color: var(--color-text-muted); line-height: 1.7; max-width: 680px; }
.footer-license {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.license-badge {
  background: rgba(62,189,107,0.1);
  border: 1px solid rgba(62,189,107,0.3);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 0.7rem;
  color: var(--color-green);
  font-weight: 700;
}

/* === BOTTOM WIDGET === */
#bottom-widget {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #1F2024 0%, #232229 100%);
  border-top: 1px solid #2e2d35;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  transform: translateY(0);
  transition: transform 0.3s;
}
#bottom-widget .widget-text {
  font-size: 0.88rem;
  color: var(--color-text);
  flex: 1;
}
#bottom-widget .widget-text strong { color: var(--color-accent); }
.widget-close {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px;
  line-height: 1;
  flex-shrink: 0;
}
.widget-close:hover { color: var(--color-text); }
#bottom-widget.hidden { transform: translateY(100%); }

/* === SLIDERS (mobile) === */
.slider-wrap { overflow: hidden; }
.slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.3s ease;
}
.slider-track .tournament-card,
.slider-track .bonus-card {
  flex: 0 0 calc(100% - 40px);
  min-width: 0;
}
.slider-controls {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.slider-dot.active { background: var(--color-accent); }

/* Unused styles for uniqualization */
.wp-block-group { display: block; }
.entry-content { position: relative; }
.elementor-widget-container { box-sizing: border-box; }
.e-global__typography { font-family: inherit; }
.yoast-schema-graph { display: none; }
.wp-post-image { max-width: 100%; height: auto; }
.aligncenter { margin: 0 auto; display: block; }

/* === RESPONSIVE === */
@media (max-width: 991px) {
  .header-nav { display: none; }
  .header-online { display: none; }
  .burger-btn { display: flex; }
  .hero-content h2 { font-size: 2rem; }
  .promo-card { grid-template-columns: 1fr; }
  .promo-actions { align-items: flex-start; flex-direction: row; }
  .tournaments-grid { grid-template-columns: 1fr; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .wheel-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  canvas#luckyWheel { max-width: 260px; }
  .slider-controls { display: flex; }
  .slider-track { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
  .slider-track::-webkit-scrollbar { display: none; }
  .slider-track .tournament-card,
  .slider-track .bonus-card { flex: 0 0 280px; }
}

@media (max-width: 767px) {
  .section-pad { padding: 40px 0; }
  .section-title { font-size: 1.5rem; }
  .hero-content h2 { font-size: 1.6rem; }
  .hero-content { padding: 40px 0; }
  #hero { min-height: 360px; }
  .hero-slide { min-height: 360px; }
  .jackpot-amount { font-size: 2.8rem; }
  .promo-code-box { font-size: 1.2rem; padding: 10px 16px; letter-spacing: 2px; }
  .content-block-inner { padding: 24px 18px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  #bottom-widget { flex-wrap: wrap; }
  .review-form-wrap { padding: 22px 16px; }
}

@media (max-width: 479px) {
  .hero-content h2 { font-size: 1.3rem; }
  .promo-card { padding: 22px 16px; }
  .jackpot-wrap { padding: 32px 20px; }
  .jackpot-amount { font-size: 2.2rem; }
  .tournament-card-body { padding: 14px; }
  .bonus-card { padding: 20px 16px; }
}

/* Unused hidden elements for fingerprint uniqualization */
.qr7x2 { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.m4vk9l { color: transparent; font-size: 0; }
.wp4f-container { display: none !important; }
