:root {
  --c-bg: #000000;
  --c-surface: #0d0d0d;
  --c-header: #1B1B1B;
  --c-footer: #1B1B1B;
  --c-primary: #FF9B1F;
  --c-primary-dark: #e08610;
  --c-primary-light: #ffb04d;
  --c-secondary: #FF9B1F;
  --c-text: #f0f0f0;
  --c-text-muted: #a0a0a0;
  --c-text-dim: #6b6b6b;
  --c-border: #2a2a2a;
  --c-card: #141414;
  --c-card2: #1a1a1a;
  --c-success: #22c55e;
  --c-warning: #f59e0b;
  --c-error: #ef4444;
  --c-info: #3b82f6;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --spacing: 8px;
  --font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.4);
  --shadow-md: 0 4px 24px rgba(0,0,0,.6);
  --shadow-lg: 0 8px 48px rgba(0,0,0,.8);
  --shadow-gold: 0 0 24px rgba(255,155,31,.25);
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.g-wrap { max-width: 1280px; margin: 0 auto; padding: 0 calc(var(--spacing) * 3); }
.g-wrap--sm { max-width: 960px; margin: 0 auto; padding: 0 calc(var(--spacing) * 3); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: calc(var(--spacing) * 1);
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .3px;
}
.btn--primary {
  background: var(--c-primary);
  color: #111;
  box-shadow: 0 0 18px rgba(255,155,31,.35);
}
.btn--primary:hover {
  background: var(--c-primary-light);
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(255,155,31,.55);
}
.btn--outline {
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid var(--c-primary);
}
.btn--outline:hover {
  background: rgba(255,155,31,.1);
  color: var(--c-primary-light);
  transform: translateY(-2px);
}
.btn--ghost {
  background: rgba(255,255,255,.06);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); color: var(--c-text); }
.btn--lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn--sm { padding: 7px 16px; font-size: .8rem; }

/* ======================== HEADER ======================== */
.xh-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-header);
  border-bottom: 1px solid rgba(255,155,31,.15);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.xh-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: calc(var(--spacing) * 2);
  padding: 14px calc(var(--spacing) * 3);
  max-width: 1280px;
  margin: 0 auto;
}
.xh-logo a { display: flex; align-items: center; }
.xh-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.xh-nav { display: flex; align-items: center; justify-content: center; gap: 4px; }
.xh-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--c-text);
  font-size: .875rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.xh-nav a:hover, .xh-nav a.active {
  background: rgba(255,155,31,.12);
  color: var(--c-primary);
}
.xh-nav a svg { width: 15px; height: 15px; flex-shrink: 0; opacity: .8; }
.xh-header-right {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing) * 1.5);
}
.xh-online-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: .75rem;
  color: #4ade80;
  white-space: nowrap;
}
.xh-online-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}
.xh-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  background: none;
  border: none;
}
.xh-burger:hover { background: rgba(255,255,255,.07); }
.xh-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.xh-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.xh-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.xh-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.xh-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: calc(var(--spacing) * 2) calc(var(--spacing) * 3);
  gap: 4px;
}
.xh-mobile-menu.open { display: flex; }
.xh-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c-text);
  font-size: .95rem;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.xh-mobile-menu a:hover { background: rgba(255,155,31,.1); color: var(--c-primary); }
.xh-mobile-menu a svg { width: 16px; height: 16px; opacity: .75; }
.xh-mobile-btns { display: flex; gap: calc(var(--spacing) * 1); margin-top: calc(var(--spacing) * 1); flex-wrap: wrap; }
.xh-mobile-btns .btn { flex: 1; justify-content: center; min-width: 100px; }

/* ======================== HERO ======================== */
.xh-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1200 100%);
}
.xh-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .25;
}
.xh-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.4) 60%, rgba(0,0,0,.15) 100%);
}
.xh-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: calc(var(--spacing) * 6);
  align-items: center;
  padding: calc(var(--spacing) * 8) calc(var(--spacing) * 3);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.xh-hero-content { max-width: 560px; }
.xh-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,155,31,.15);
  border: 1px solid rgba(255,155,31,.4);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--c-primary);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: calc(var(--spacing) * 2);
}
.xh-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  color: #fff;
  margin-bottom: calc(var(--spacing) * 2);
}
.xh-hero h1 span { color: var(--c-primary); }
.xh-hero-sub {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  margin-bottom: calc(var(--spacing) * 4);
  line-height: 1.65;
}
.xh-hero-btns { display: flex; gap: calc(var(--spacing) * 1.5); flex-wrap: wrap; }
.xh-bonus-tile {
  background: linear-gradient(145deg, #1f1500, #2a1d00);
  border: 1.5px solid rgba(255,155,31,.45);
  border-radius: var(--radius-xl);
  padding: calc(var(--spacing) * 3.5) calc(var(--spacing) * 3);
  text-align: center;
  box-shadow: var(--shadow-gold);
  min-width: 220px;
  animation: float-tile 4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes float-tile {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.xh-bonus-tile-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-text-muted);
  margin-bottom: 6px;
}
.xh-bonus-tile-amount {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--c-primary);
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(255,155,31,.5);
}
.xh-bonus-tile-spins {
  font-size: .85rem;
  color: var(--c-text);
  margin: 6px 0 16px;
}
.xh-bonus-tile-code {
  background: rgba(255,155,31,.1);
  border: 1px dashed rgba(255,155,31,.5);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: .8rem;
  color: var(--c-primary);
  font-family: monospace;
  letter-spacing: 1.5px;
  cursor: pointer;
  margin-bottom: 12px;
  transition: background var(--transition);
}
.xh-bonus-tile-code:hover { background: rgba(255,155,31,.2); }

/* ======================== SECTIONS ======================== */
.xh-section {
  padding: calc(var(--spacing) * 9) 0;
}
.xh-section--dark { background: var(--c-surface); }
.xh-section-title {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: calc(var(--spacing) * 1);
}
.xh-section-title span { color: var(--c-primary); }
.xh-section-subtitle {
  color: var(--c-text-muted);
  font-size: .95rem;
  margin-bottom: calc(var(--spacing) * 5);
}
.xh-section-head { margin-bottom: calc(var(--spacing) * 5); }
.xh-section-head-line {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing) * 2);
  margin-bottom: calc(var(--spacing) * 1);
}
.xh-section-head-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,155,31,.4), transparent);
}

/* ======================== CASINO INFO TABLE ======================== */
.xh-info-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  background: var(--c-card);
  margin: 0 calc(var(--spacing) * 0);
}
.xh-info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.xh-info-table tr {
  border-bottom: 1px solid var(--c-border);
  transition: background var(--transition);
}
.xh-info-table tr:last-child { border-bottom: none; }
.xh-info-table tr:hover { background: rgba(255,155,31,.04); }
.xh-info-table td {
  padding: 14px 20px;
  font-size: .9rem;
  vertical-align: middle;
  text-align: left;
}
.xh-info-table td:first-child {
  width: 42%;
  color: var(--c-text-muted);
  font-weight: 500;
  border-right: 1px solid var(--c-border);
}
.xh-info-table td:last-child {
  color: var(--c-text);
  font-weight: 500;
}
.xh-info-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.xh-info-icon svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--c-primary); opacity: .85; }
.xh-badge-pill {
  display: inline-block;
  background: rgba(255,155,31,.12);
  color: var(--c-primary);
  border: 1px solid rgba(255,155,31,.3);
  border-radius: 100px;
  padding: 2px 10px;
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
}
.xh-badge-pill--green {
  background: rgba(34,197,94,.1);
  color: #4ade80;
  border-color: rgba(34,197,94,.3);
}

/* ======================== TOURNAMENTS ======================== */
.xh-tournaments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: calc(var(--spacing) * 3);
}
.xh-tournament-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: calc(var(--spacing) * 3);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.xh-tournament-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-primary-light));
}
.xh-tournament-card:hover {
  border-color: rgba(255,155,31,.35);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.xh-tournament-tag {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: calc(var(--spacing) * 1.5);
}
.xh-tournament-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: calc(var(--spacing) * 1);
  line-height: 1.3;
}
.xh-tournament-desc {
  font-size: .84rem;
  color: var(--c-text-muted);
  line-height: 1.55;
  margin-bottom: calc(var(--spacing) * 2.5);
}
.xh-tournament-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing) * 1.5);
  margin-bottom: calc(var(--spacing) * 2.5);
}
.xh-tournament-meta-item label {
  display: block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--c-text-dim);
  margin-bottom: 3px;
}
.xh-tournament-meta-item span {
  font-size: .9rem;
  font-weight: 700;
  color: var(--c-text);
}
.xh-prize-amount {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-primary);
}
.xh-timer {
  display: flex;
  gap: 6px;
  align-items: center;
}
.xh-timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  min-width: 34px;
}
.xh-timer-unit span:first-child {
  font-size: .9rem;
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1;
}
.xh-timer-unit span:last-child {
  font-size: .58rem;
  color: var(--c-text-dim);
  text-transform: uppercase;
  letter-spacing: .3px;
}
.xh-timer-sep { color: var(--c-text-dim); font-weight: 700; margin-top: -6px; }

/* ======================== APP BLOCK ======================== */
.xh-app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing) * 6);
  align-items: start;
}
.xh-app-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  background: var(--c-card);
}
.xh-app-table { width: 100%; border-collapse: collapse; min-width: 300px; }
.xh-app-table td {
  padding: 13px 18px;
  font-size: .88rem;
  border-bottom: 1px solid var(--c-border);
  vertical-align: middle;
}
.xh-app-table tr:last-child td { border-bottom: none; }
.xh-app-table td:first-child { color: var(--c-text-muted); width: 45%; font-weight: 500; }
.xh-app-table td:last-child { color: var(--c-text); font-weight: 600; }
.xh-app-buttons { display: flex; flex-direction: column; gap: calc(var(--spacing) * 2); margin-top: calc(var(--spacing) * 3); }
.xh-dl-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--c-card2);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--c-text);
}
.xh-dl-btn:hover {
  border-color: rgba(255,155,31,.4);
  background: rgba(255,155,31,.06);
  color: var(--c-text);
  transform: translateX(4px);
}
.xh-dl-btn svg { width: 28px; height: 28px; flex-shrink: 0; color: var(--c-primary); }
.xh-dl-btn-text span:first-child { display: block; font-size: .7rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: .5px; }
.xh-dl-btn-text span:last-child { display: block; font-size: 1rem; font-weight: 700; }

/* ======================== WHEEL GAME ======================== */
.xh-wheel-wrap {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.xh-wheel-canvas-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: calc(var(--spacing) * 3);
}
.xh-wheel-pointer {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 22px solid var(--c-primary);
  filter: drop-shadow(0 2px 6px rgba(255,155,31,.6));
  z-index: 10;
}
#xh-wheel-canvas {
  display: block;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(255,155,31,.3), 0 0 0 4px rgba(255,155,31,.2);
}
.xh-wheel-btn { margin-top: 0; }
.xh-wheel-result {
  margin-top: calc(var(--spacing) * 3);
  padding: calc(var(--spacing) * 3);
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: var(--radius-lg);
  display: none;
  animation: fadeInUp .4s ease;
}
.xh-wheel-result.show { display: block; }
.xh-wheel-result.lose { background: rgba(239,68,68,.08); border-color: rgba(239,68,68,.25); }
.xh-wheel-result-title { font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.xh-wheel-result-text { font-size: .9rem; color: var(--c-text-muted); margin-bottom: calc(var(--spacing) * 2); }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ======================== REVIEW CONTENT ======================== */
.xh-review-wrap {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: calc(var(--spacing) * 5);
}
.xh-author-bar {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing) * 2);
  padding-bottom: calc(var(--spacing) * 3);
  margin-bottom: calc(var(--spacing) * 4);
  border-bottom: 1px solid var(--c-border);
}
.xh-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,155,31,.4);
  flex-shrink: 0;
}
.xh-author-name {
  font-weight: 700;
  color: #fff;
  font-size: .95rem;
}
.xh-author-bio {
  font-size: .8rem;
  color: var(--c-text-muted);
  margin-top: 2px;
}
.xh-author-link {
  font-size: .78rem;
  color: var(--c-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}
.xh-author-link:hover { color: var(--c-primary-light); }
.xh-review-content h2,
.xh-review-content h3,
.xh-review-content h4 {
  color: #fff;
  font-weight: 700;
  margin: calc(var(--spacing) * 3) 0 calc(var(--spacing) * 1.5);
  line-height: 1.3;
}
.xh-review-content h2 { font-size: 1.3rem; }
.xh-review-content h3 { font-size: 1.1rem; }
.xh-review-content h4 { font-size: 1rem; }
.xh-review-content p {
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-bottom: calc(var(--spacing) * 2);
}
.xh-review-content p:last-child { margin-bottom: 0; }
.xh-review-content ul,
.xh-review-content ol {
  list-style: disc;
  padding-left: calc(var(--spacing) * 3);
  margin-bottom: calc(var(--spacing) * 2);
  color: var(--c-text-muted);
}
.xh-review-content ol { list-style: decimal; }
.xh-review-content li { margin-bottom: calc(var(--spacing) * 0.5); line-height: 1.7; }
.xh-review-content a { color: var(--c-primary); }
.xh-review-content a:hover { color: var(--c-primary-light); text-decoration: underline; }
.xh-review-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: calc(var(--spacing) * 2);
  font-size: .88rem;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.xh-review-content th,
.xh-review-content td {
  padding: 11px 16px;
  text-align: left;
  border: 1px solid var(--c-border);
}
.xh-review-content th {
  background: rgba(255,155,31,.08);
  color: var(--c-primary);
  font-weight: 700;
}
.xh-review-content td { color: var(--c-text-muted); }
.xh-review-content blockquote {
  border-left: 3px solid var(--c-primary);
  padding-left: calc(var(--spacing) * 2);
  margin: calc(var(--spacing) * 2) 0;
  color: var(--c-text-muted);
  font-style: italic;
}
.xh-review-content strong { color: var(--c-text); font-weight: 700; }
.xh-review-content em { font-style: italic; }
.xh-review-content img { border-radius: var(--radius-sm); margin: calc(var(--spacing) * 2) 0; }
.xh-review-content hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: calc(var(--spacing) * 3) 0;
}

/* ======================== FAQ ======================== */
.xh-faq-list { display: flex; flex-direction: column; gap: calc(var(--spacing) * 1.5); }
.xh-faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.xh-faq-item.open { border-color: rgba(255,155,31,.35); }
.xh-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: .92rem;
  color: var(--c-text);
  gap: 12px;
  transition: color var(--transition);
}
.xh-faq-question:hover { color: var(--c-primary); }
.xh-faq-item.open .xh-faq-question { color: var(--c-primary); }
.xh-faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: rgba(255,155,31,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.xh-faq-item.open .xh-faq-icon { transform: rotate(45deg); background: rgba(255,155,31,.2); }
.xh-faq-icon::before {
  content: '+';
  color: var(--c-primary);
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
}
.xh-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 20px;
}
.xh-faq-item.open .xh-faq-answer {
  max-height: 600px;
  padding: 0 20px 16px;
}
.xh-faq-answer p {
  color: var(--c-text-muted);
  font-size: .88rem;
  line-height: 1.7;
}

/* ======================== COMMENTS ======================== */
.xh-comments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing) * 4);
  align-items: start;
}
.xh-comment-list { display: flex; flex-direction: column; gap: calc(var(--spacing) * 2); }
.xh-comment-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: calc(var(--spacing) * 2.5);
  transition: border-color var(--transition);
}
.xh-comment-item:hover { border-color: rgba(255,155,31,.2); }
.xh-comment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: calc(var(--spacing) * 1.5);
}
.xh-comment-author { font-weight: 700; font-size: .9rem; color: #fff; }
.xh-comment-date { font-size: .75rem; color: var(--c-text-dim); }
.xh-comment-stars { color: var(--c-primary); font-size: .85rem; letter-spacing: 1px; margin-bottom: 8px; }
.xh-comment-text { font-size: .88rem; color: var(--c-text-muted); line-height: 1.65; }
.xh-comment-form {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: calc(var(--spacing) * 3.5);
}
.xh-comment-form h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: calc(var(--spacing) * 3);
}
.xh-form-group { margin-bottom: calc(var(--spacing) * 2); }
.xh-form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.xh-form-group input,
.xh-form-group select,
.xh-form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: .9rem;
  color: var(--c-text);
  font-family: var(--font);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.xh-form-group input:focus,
.xh-form-group select:focus,
.xh-form-group textarea:focus {
  border-color: rgba(255,155,31,.5);
  box-shadow: 0 0 0 3px rgba(255,155,31,.1);
}
.xh-form-group textarea { resize: vertical; min-height: 90px; }
.xh-form-group select { cursor: pointer; }
.xh-form-group select option { background: #1a1a1a; }
.xh-star-select {
  display: flex;
  gap: 6px;
  margin-top: 2px;
}
.xh-star-select span {
  font-size: 1.4rem;
  cursor: pointer;
  transition: transform var(--transition);
  color: var(--c-text-dim);
}
.xh-star-select span.active,
.xh-star-select span:hover { color: var(--c-primary); transform: scale(1.2); }
.xh-form-success {
  display: none;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .88rem;
  color: #4ade80;
  margin-top: calc(var(--spacing) * 2);
}
.xh-form-success.show { display: block; animation: fadeInUp .3s ease; }

/* ======================== FOOTER ======================== */
.xh-site-footer {
  background: var(--c-footer);
  border-top: 1px solid rgba(255,155,31,.12);
  padding: calc(var(--spacing) * 7) 0 calc(var(--spacing) * 3);
}
.xh-footer-top {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: calc(var(--spacing) * 5);
  margin-bottom: calc(var(--spacing) * 5);
  padding-bottom: calc(var(--spacing) * 5);
  border-bottom: 1px solid var(--c-border);
}
.xh-footer-logo img { height: 40px; margin-bottom: calc(var(--spacing) * 2); }
.xh-footer-tagline { font-size: .82rem; color: var(--c-text-muted); line-height: 1.6; margin-bottom: calc(var(--spacing) * 2); }
.xh-footer-flag { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--c-text-muted); }
.xh-footer-flag img { width: 22px; height: 15px; border-radius: 2px; }
.xh-footer-col-title {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: calc(var(--spacing) * 2);
}
.xh-footer-nav { display: flex; flex-direction: column; gap: 8px; }
.xh-footer-nav a { font-size: .85rem; color: var(--c-text-muted); transition: color var(--transition); }
.xh-footer-nav a:hover { color: var(--c-primary); }
.xh-footer-social { display: flex; gap: 10px; margin-top: calc(var(--spacing) * 2); flex-wrap: wrap; }
.xh-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  color: var(--c-text-muted);
  font-size: .85rem;
  transition: all var(--transition);
}
.xh-social-btn:hover { background: rgba(255,155,31,.1); border-color: rgba(255,155,31,.35); color: var(--c-primary); }
.xh-footer-logos {
  padding-bottom: calc(var(--spacing) * 4);
  margin-bottom: calc(var(--spacing) * 4);
  border-bottom: 1px solid var(--c-border);
}
.xh-footer-logos-title {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: var(--c-text-dim);
  margin-bottom: calc(var(--spacing) * 1.5);
}
.xh-footer-logos-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.xh-logo-chip {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: .75rem;
  color: var(--c-text-muted);
  white-space: nowrap;
  transition: all var(--transition);
}
.xh-logo-chip:hover { background: rgba(255,255,255,.08); color: var(--c-text); }
.xh-footer-legal {
  font-size: .75rem;
  color: var(--c-text-dim);
  line-height: 1.7;
}
.xh-footer-legal p { margin-bottom: 6px; }
.xh-footer-legal a { color: var(--c-text-dim); text-decoration: underline; }
.xh-footer-legal a:hover { color: var(--c-text-muted); }
.xh-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: calc(var(--spacing) * 3);
  flex-wrap: wrap;
  gap: 12px;
}
.xh-footer-copyright { font-size: .78rem; color: var(--c-text-dim); }
.xh-footer-contact { font-size: .78rem; color: var(--c-text-dim); }
.xh-footer-contact a { color: var(--c-text-muted); }

/* ======================== STICKY WIDGET ======================== */
.xh-sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #1a0f00, #2a1800);
  border-top: 1.5px solid rgba(255,155,31,.5);
  box-shadow: 0 -4px 24px rgba(0,0,0,.6);
  transform: translateY(0);
  transition: transform var(--transition);
}
.xh-sticky-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px calc(var(--spacing) * 3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(var(--spacing) * 2);
  flex-wrap: wrap;
}
.xh-sticky-promo {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing) * 1.5);
}
.xh-sticky-promo-tag {
  background: var(--c-primary);
  color: #111;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 3px 9px;
  border-radius: 4px;
}
.xh-sticky-promo-text { font-size: .9rem; font-weight: 700; color: #fff; }
.xh-sticky-code {
  display: flex;
  align-items: center;
  gap: 8px;
}
.xh-sticky-code-label { font-size: .72rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: .5px; }
.xh-sticky-code-value {
  background: rgba(255,155,31,.12);
  border: 1px dashed rgba(255,155,31,.5);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-family: monospace;
  font-size: .85rem;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: background var(--transition);
}
.xh-sticky-code-value:hover { background: rgba(255,155,31,.2); }
.xh-sticky-close {
  background: none;
  border: none;
  color: var(--c-text-dim);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1;
  transition: color var(--transition);
}
.xh-sticky-close:hover { color: var(--c-text); }

/* ======================== RATING BLOCK ======================== */
.xh-rating-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(var(--spacing) * 2);
  margin-top: calc(var(--spacing) * 4);
}
.xh-rating-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: calc(var(--spacing) * 2.5);
  text-align: center;
  transition: all var(--transition);
}
.xh-rating-card:hover { border-color: rgba(255,155,31,.3); transform: translateY(-3px); }
.xh-rating-card-icon { font-size: 1.5rem; margin-bottom: 8px; }
.xh-rating-card-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .5px; color: var(--c-text-dim); margin-bottom: 4px; }
.xh-rating-card-val { font-size: 1.25rem; font-weight: 800; color: var(--c-primary); }
.xh-rating-stars-row { display: flex; justify-content: center; gap: 3px; margin-top: 4px; }
.xh-rating-stars-row span { color: var(--c-primary); font-size: .8rem; }

/* ======================== BONUS CODES TABLE ======================== */
.xh-bonus-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  background: var(--c-card);
}
.xh-bonus-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.xh-bonus-table th {
  padding: 13px 18px;
  text-align: left;
  font-size: .77rem;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--c-primary);
  font-weight: 700;
  background: rgba(255,155,31,.05);
  border-bottom: 1px solid var(--c-border);
}
.xh-bonus-table td {
  padding: 14px 18px;
  font-size: .88rem;
  border-bottom: 1px solid rgba(255,255,255,.04);
  vertical-align: middle;
}
.xh-bonus-table tr:last-child td { border-bottom: none; }
.xh-bonus-table tr:hover td { background: rgba(255,155,31,.03); }
.xh-code-pill {
  background: rgba(255,155,31,.1);
  border: 1px dashed rgba(255,155,31,.45);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-family: monospace;
  font-size: .82rem;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: 1.2px;
  cursor: pointer;
  display: inline-block;
  transition: background var(--transition);
}
.xh-code-pill:hover { background: rgba(255,155,31,.2); }

/* ======================== PROVIDERS ======================== */
.xh-providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: calc(var(--spacing) * 1.5);
}
.xh-provider-chip {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
  font-size: .78rem;
  font-weight: 600;
  color: var(--c-text-muted);
  transition: all var(--transition);
}
.xh-provider-chip:hover {
  border-color: rgba(255,155,31,.35);
  color: var(--c-text);
  background: rgba(255,155,31,.05);
}

/* ======================== UTILITIES & MISC ======================== */
.xh-text-gold { color: var(--c-primary); }
.xh-text-muted { color: var(--c-text-muted); }
.xh-divider { height: 1px; background: var(--c-border); margin: calc(var(--spacing) * 2) 0; }
.xh-mt2 { margin-top: calc(var(--spacing) * 2); }
.xh-mt3 { margin-top: calc(var(--spacing) * 3); }
.xh-mt4 { margin-top: calc(var(--spacing) * 4); }
.xh-mb3 { margin-bottom: calc(var(--spacing) * 3); }
.xh-flex-center { display: flex; align-items: center; justify-content: center; }
.xh-gap2 { gap: calc(var(--spacing) * 2); }

.woocommerce-hidden { display: none !important; }
.wp-block-separator { display: none; }
.screen-reader-text { position: absolute; left: -9999px; }
.elementor-hidden { visibility: hidden; height: 0; overflow: hidden; }

input::placeholder { color: var(--c-text-dim); }
textarea::placeholder { color: var(--c-text-dim); }

.xh-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-primary-light));
  z-index: 9999;
  width: 0%;
  transition: width .1s linear;
}

.xh-back-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: rgba(255,155,31,.15);
  border: 1px solid rgba(255,155,31,.4);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 500;
}
.xh-back-top.show { opacity: 1; pointer-events: auto; }
.xh-back-top:hover { background: rgba(255,155,31,.25); }
.xh-back-top svg { width: 16px; height: 16px; color: var(--c-primary); }

.xh-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.xh-reveal.visible { opacity: 1; transform: translateY(0); }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1100px) {
  .xh-footer-top { grid-template-columns: 1fr 1fr; }
  .xh-app-grid { grid-template-columns: 1fr; }
  .xh-rating-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .xh-nav { display: none; }
  .xh-burger { display: flex; }
  .xh-hero-inner { grid-template-columns: 1fr; }
  .xh-bonus-tile { display: none; }
  .xh-comments-grid { grid-template-columns: 1fr; }
  .xh-tournaments-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .xh-hero { min-height: 420px; }
  .xh-hero-inner { padding: calc(var(--spacing) * 5) calc(var(--spacing) * 2); }
  .xh-section { padding: calc(var(--spacing) * 6) 0; }
  .xh-footer-top { grid-template-columns: 1fr; gap: calc(var(--spacing) * 4); }
  .xh-sticky-code { display: none; }
  .xh-review-wrap { padding: calc(var(--spacing) * 3); }
  .xh-rating-row { grid-template-columns: repeat(2, 1fr); }
  .xh-footer-bottom { flex-direction: column; align-items: flex-start; }
  .xh-header-inner { padding: 12px calc(var(--spacing) * 2); }
}

@media (max-width: 400px) {
  .xh-hero h1 { font-size: 1.5rem; }
  .xh-rating-row { grid-template-columns: repeat(2, 1fr); }
}

.xe4f9a { background: transparent; }
.xb7d2c { display: none; }
.xc3e1f { position: static; }
