@import url('https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Anton&display=swap');

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

:root {
  --c-bg: #000000;
  --c-header: #020C0D;
  --c-btn-primary: #059E5D;
  --c-btn-secondary: #322D37;
  --c-text: #e8edf0;
  --c-text-muted: #9aacb5;
  --c-accent: #07c472;
  --c-border: #1a2a2e;
  --c-card: #080f10;
  --c-card2: #0b1618;
  --c-gold: #f0b429;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --font-head: 'Anton', sans-serif;
  --font-body: 'Overpass', sans-serif;
}

html { scroll-behavior: smooth; background: var(--c-bg); }
body { font-family: var(--font-body); background: var(--c-bg); color: var(--c-text); line-height: 1.65; font-size: 16px; overflow-x: hidden; }

a { color: var(--c-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }

img { max-width: 100%; height: auto; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); letter-spacing: 0.5px; line-height: 1.2; color: #fff; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1.2rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { margin-bottom: 0.9rem; }
ul, ol { padding-left: 1.4rem; margin-bottom: 0.9rem; }
li { margin-bottom: 0.4rem; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 18px; }
.wrapper { min-height: 100vh; display: flex; flex-direction: column; }

.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; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 10px 22px; border-radius: var(--radius-sm); font-family: var(--font-body); font-weight: 700; font-size: 0.92rem; cursor: pointer; border: none; text-decoration: none; transition: transform var(--transition), box-shadow var(--transition), background var(--transition), filter var(--transition); white-space: nowrap; }
.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-primary { background: var(--c-btn-primary); color: #fff; box-shadow: 0 2px 12px rgba(5,158,93,0.35); }
.btn-primary:hover { background: #06b56a; filter: brightness(1.1); color: #fff; }
.btn-secondary { background: var(--c-btn-secondary); color: #e0d6ea; }
.btn-secondary:hover { background: #3f3848; color: #fff; }
.btn-lg { padding: 14px 36px; font-size: 1.05rem; border-radius: var(--radius-md); }
.btn-sm { padding: 7px 14px; font-size: 0.82rem; }
.btn-outline { background: transparent; border: 1.5px solid var(--c-btn-primary); color: var(--c-btn-primary); }
.btn-outline:hover { background: var(--c-btn-primary); color: #fff; }

/* HEADER */
#xh-header { background: var(--c-header); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #0d2024; box-shadow: 0 2px 20px rgba(0,0,0,0.6); }
.xh-nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; flex-wrap: nowrap; }
.xh-logo { display: flex; align-items: center; flex-shrink: 0; }
.xh-logo img { height: 42px; width: auto; }
.xh-nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; flex: 1; justify-content: center; }
.xh-nav-links a { display: flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: var(--radius-sm); color: #b8cdd4; font-size: 0.87rem; font-weight: 600; transition: background var(--transition), color var(--transition); }
.xh-nav-links a:hover, .xh-nav-links a.active { background: #0d2024; color: #fff; }
.xh-nav-links svg { width: 16px; height: 16px; flex-shrink: 0; }
.xh-nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.xh-online { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--c-text-muted); background: #0d2024; padding: 5px 10px; border-radius: 20px; white-space: nowrap; }
.xh-online-dot { width: 8px; height: 8px; background: var(--c-accent); border-radius: 50%; animation: blink-dot 1.5s infinite; flex-shrink: 0; }
@keyframes blink-dot { 0%,100%{opacity:1} 50%{opacity:0.3} }
.xh-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.xh-burger span { display: block; width: 24px; height: 2px; background: #e0e8eb; border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.xh-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.xh-burger.open span:nth-child(2) { opacity: 0; }
.xh-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.xh-mobile-nav { display: none; background: var(--c-header); border-top: 1px solid #0d2024; overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.xh-mobile-nav.open { max-height: 600px; }
.xh-mobile-nav ul { list-style: none; padding: 12px 18px 18px; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.xh-mobile-nav ul a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: var(--radius-sm); color: #b8cdd4; font-size: 0.92rem; font-weight: 600; }
.xh-mobile-nav ul a:hover { background: #0d2024; color: #fff; }
.xh-mobile-nav svg { width: 18px; height: 18px; flex-shrink: 0; }
.xh-mobile-nav-actions { display: flex; gap: 10px; padding: 4px 18px 18px; }
.xh-mobile-nav-actions .btn { flex: 1; }

/* HERO */
#xh-hero { position: relative; min-height: 520px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--c-bg); }
.xh-hero-bg { position: absolute; inset: 0; background-image: url('/hero-banner.png'); background-size: cover; background-position: center; }
.xh-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(2,12,13,0.7) 60%, rgba(5,158,93,0.18) 100%); }
.xh-hero-content { position: relative; z-index: 1; text-align: center; padding: 60px 20px; max-width: 760px; }
.xh-hero-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(5,158,93,0.18); border: 1px solid rgba(5,158,93,0.4); color: var(--c-accent); padding: 6px 16px; border-radius: 20px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 18px; }
.xh-hero-content h1 { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 16px; text-shadow: 0 2px 20px rgba(0,0,0,0.6); }
.xh-hero-content h1 span { color: var(--c-accent); }
.xh-hero-content p { font-size: 1.08rem; color: #c5d8de; margin-bottom: 28px; line-height: 1.7; }
.xh-hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.xh-hero-meta { display: flex; align-items: center; gap: 24px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.xh-hero-meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--c-text-muted); }
.xh-hero-meta-item strong { color: #fff; }

/* BREADCRUMBS */
#xh-breadcrumbs { background: #020c0e; border-bottom: 1px solid var(--c-border); padding: 10px 0; }
.xh-bc-list { display: flex; align-items: center; gap: 8px; list-style: none; flex-wrap: wrap; font-size: 0.83rem; }
.xh-bc-list li { display: flex; align-items: center; gap: 8px; color: var(--c-text-muted); }
.xh-bc-list a { color: var(--c-text-muted); }
.xh-bc-list a:hover { color: var(--c-accent); }
.xh-bc-list li:last-child { color: var(--c-text); }
.xh-bc-sep { color: #3a4e54; font-size: 0.75rem; }

/* SECTION LAYOUT */
.xh-section { padding: 52px 0; }
.xh-section-title { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.xh-section-title svg { color: var(--c-accent); flex-shrink: 0; }
.xh-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--c-btn-primary), transparent); border-radius: 2px; margin-top: 8px; margin-bottom: 28px; }

/* TABLE OF CONTENTS */
.xh-toc-wrap { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 28px 32px; margin-bottom: 40px; }
.xh-toc-wrap h2 { font-size: 1.15rem; margin-bottom: 18px; }
.xh-toc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 10px; list-style: none; }
.xh-toc-grid li a { display: flex; align-items: center; gap: 9px; padding: 9px 12px; border-radius: var(--radius-sm); background: var(--c-card2); color: var(--c-text); font-size: 0.9rem; font-weight: 600; transition: background var(--transition), color var(--transition), transform var(--transition); border: 1px solid transparent; }
.xh-toc-grid li a:hover { background: #0f2226; color: var(--c-accent); border-color: var(--c-border); transform: translateX(3px); }
.xh-toc-grid li a svg { width: 17px; height: 17px; color: var(--c-accent); flex-shrink: 0; }

/* CASINO INFO TABLE */
.xh-info-table-wrap { overflow-x: auto; margin-bottom: 8px; }
.xh-info-table { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--c-border); border-radius: var(--radius-md); overflow: hidden; min-width: 560px; }
.xh-info-table th, .xh-info-table td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--c-border); }
.xh-info-table th { background: #020e10; color: var(--c-text-muted); font-size: 0.8rem; letter-spacing: 0.5px; text-transform: uppercase; font-weight: 700; width: 40%; }
.xh-info-table td { background: var(--c-card); color: var(--c-text); font-size: 0.93rem; }
.xh-info-table tr:last-child th, .xh-info-table tr:last-child td { border-bottom: none; }
.xh-info-table tr:hover td { background: var(--c-card2); }
.xh-info-row-icon { display: flex; align-items: center; gap: 9px; }
.xh-info-row-icon svg { color: var(--c-accent); flex-shrink: 0; }
.xh-info-badge { display: inline-flex; align-items: center; background: rgba(5,158,93,0.15); border: 1px solid rgba(5,158,93,0.3); color: var(--c-accent); padding: 2px 10px; border-radius: 12px; font-size: 0.8rem; font-weight: 700; margin-right: 4px; margin-bottom: 2px; }
.xh-info-badge-warn { background: rgba(240,180,41,0.12); border-color: rgba(240,180,41,0.3); color: var(--c-gold); }

/* ADVANTAGES */
.xh-adv-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; }
.xh-adv-card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 24px 20px; display: flex; flex-direction: column; gap: 12px; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.xh-adv-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(5,158,93,0.12); border-color: rgba(5,158,93,0.3); }
.xh-adv-icon { width: 48px; height: 48px; background: rgba(5,158,93,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.xh-adv-icon svg { width: 26px; height: 26px; color: var(--c-accent); }
.xh-adv-card h3 { font-size: 1rem; margin: 0; }
.xh-adv-card p { font-size: 0.87rem; color: var(--c-text-muted); margin: 0; line-height: 1.55; }

/* APP BLOCK */
.xh-app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.xh-app-table-wrap { overflow-x: auto; }
.xh-app-table { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--c-border); border-radius: var(--radius-md); overflow: hidden; min-width: 320px; }
.xh-app-table th, .xh-app-table td { padding: 11px 16px; text-align: left; border-bottom: 1px solid var(--c-border); font-size: 0.9rem; }
.xh-app-table th { background: #020e10; color: var(--c-text-muted); font-size: 0.78rem; text-transform: uppercase; font-weight: 700; }
.xh-app-table td { background: var(--c-card); }
.xh-app-table tr:last-child th, .xh-app-table tr:last-child td { border-bottom: none; }
.xh-app-download { display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.xh-app-download h3 { margin-bottom: 8px; }
.xh-app-download p { color: var(--c-text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.xh-app-btns { display: flex; flex-direction: column; gap: 10px; }
.xh-dl-btn { display: flex; align-items: center; gap: 12px; background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-sm); padding: 12px 18px; color: #fff; text-decoration: none; transition: background var(--transition), border-color var(--transition), transform var(--transition); }
.xh-dl-btn:hover { background: #0f2226; border-color: var(--c-accent); transform: translateX(3px); color: #fff; }
.xh-dl-btn svg { flex-shrink: 0; color: var(--c-accent); }
.xh-dl-btn-text small { display: block; font-size: 0.72rem; color: var(--c-text-muted); }
.xh-dl-btn-text strong { display: block; font-size: 0.95rem; }

/* GAMES SLIDER */
.xh-games-slider-outer { position: relative; }
.xh-games-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.xh-game-card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; transition: transform var(--transition), box-shadow var(--transition); }
.xh-game-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.xh-game-thumb { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: #0a1a1e; display: block; }
.xh-game-info { padding: 12px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.xh-game-info h3 { font-size: 0.88rem; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.xh-game-info small { font-size: 0.75rem; color: var(--c-text-muted); }
.xh-game-info .btn { width: 100%; margin-top: auto; font-size: 0.8rem; padding: 7px 10px; }

/* CONTENT BLOCK */
.xh-content-block { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 40px 44px; }
.xh-content-block h2 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 0.8rem; }
.xh-content-block h2:first-child { margin-top: 0; }
.xh-content-block h3 { font-size: 1.15rem; margin-top: 1.6rem; margin-bottom: 0.7rem; }
.xh-content-block h4 { font-size: 1rem; margin-top: 1.2rem; margin-bottom: 0.6rem; color: var(--c-accent); }
.xh-content-block p { color: #c8d8de; line-height: 1.75; margin-bottom: 1rem; }
.xh-content-block ul, .xh-content-block ol { padding-left: 1.6rem; margin-bottom: 1rem; }
.xh-content-block li { color: #c8d8de; line-height: 1.7; margin-bottom: 0.4rem; }
.xh-content-block a { color: var(--c-accent); text-decoration: underline; }
.xh-content-block a:hover { color: #fff; }
.xh-content-block table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--c-border); }
.xh-content-block table th, .xh-content-block table td { padding: 10px 14px; text-align: left; border: 1px solid var(--c-border); font-size: 0.9rem; }
.xh-content-block table th { background: #020e10; color: var(--c-text-muted); text-transform: uppercase; font-size: 0.78rem; }
.xh-content-block table td { background: var(--c-card); }
.xh-content-block blockquote { border-left: 3px solid var(--c-accent); padding: 12px 20px; background: rgba(5,158,93,0.06); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 1rem 0; color: #c8d8de; font-style: italic; }
.xh-content-block img { border-radius: var(--radius-sm); }
.xh-content-block strong { color: #fff; }
.xh-content-block em { color: var(--c-text-muted); }

/* FAQ */
.xh-faq-list { display: flex; flex-direction: column; gap: 10px; }
.xh-faq-item { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-md); overflow: hidden; }
.xh-faq-q { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 22px; cursor: pointer; font-weight: 700; font-size: 0.97rem; color: #fff; user-select: none; transition: background var(--transition); }
.xh-faq-q:hover { background: #0a1a1e; }
.xh-faq-q svg { flex-shrink: 0; color: var(--c-accent); transition: transform var(--transition); }
.xh-faq-item.open .xh-faq-q svg { transform: rotate(180deg); }
.xh-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding var(--transition); }
.xh-faq-item.open .xh-faq-a { max-height: 600px; }
.xh-faq-a-inner { padding: 0 22px 20px; color: #b8cdd4; line-height: 1.7; font-size: 0.93rem; }
.xh-faq-a-inner a { color: var(--c-accent); }

/* AUTHOR */
.xh-author-card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 32px; display: flex; gap: 28px; align-items: flex-start; }
.xh-author-avatar { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(5,158,93,0.4); flex-shrink: 0; background: #0a1a1e; }
.xh-author-info { flex: 1; }
.xh-author-info h3 { font-size: 1.2rem; margin-bottom: 4px; }
.xh-author-position { color: var(--c-accent); font-size: 0.87rem; font-weight: 600; margin-bottom: 10px; }
.xh-author-bio { color: #b8cdd4; font-size: 0.9rem; line-height: 1.65; margin-bottom: 14px; }
.xh-author-meta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; font-size: 0.82rem; color: var(--c-text-muted); margin-bottom: 12px; }
.xh-author-meta svg { width: 15px; height: 15px; margin-right: 4px; vertical-align: middle; }
.xh-author-links { display: flex; gap: 10px; flex-wrap: wrap; }
.xh-author-links a { display: flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 20px; border: 1px solid var(--c-border); color: var(--c-text-muted); font-size: 0.82rem; transition: border-color var(--transition), color var(--transition); }
.xh-author-links a:hover { border-color: var(--c-accent); color: var(--c-accent); }
.xh-author-links svg { width: 15px; height: 15px; }

/* FOOTER */
#xh-footer { background: var(--c-header); border-top: 1px solid var(--c-border); margin-top: auto; }
.xh-footer-top { padding: 44px 0 28px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.xh-footer-brand p { color: var(--c-text-muted); font-size: 0.87rem; line-height: 1.65; margin-top: 12px; }
.xh-footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.7px; color: var(--c-text-muted); margin-bottom: 14px; }
.xh-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.xh-footer-col ul a { color: var(--c-text-muted); font-size: 0.88rem; transition: color var(--transition); }
.xh-footer-col ul a:hover { color: var(--c-accent); }
.xh-footer-col .xh-footer-social { display: flex; gap: 10px; }
.xh-footer-col .xh-footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--c-border); color: var(--c-text-muted); transition: border-color var(--transition), color var(--transition), background var(--transition); }
.xh-footer-col .xh-footer-social a:hover { border-color: var(--c-accent); color: var(--c-accent); background: rgba(5,158,93,0.08); }
.xh-footer-col .xh-footer-social svg { width: 17px; height: 17px; }
.xh-footer-logos { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 8px; }
.xh-footer-logo-badge { display: flex; align-items: center; justify-content: center; background: #0b1a1e; border: 1px solid var(--c-border); border-radius: var(--radius-sm); padding: 6px 12px; color: var(--c-text-muted); font-size: 0.75rem; font-weight: 700; height: 36px; gap: 5px; }
.xh-footer-logo-badge svg { width: 18px; height: 18px; }
.xh-footer-mid { border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); padding: 20px 0; }
.xh-footer-mid-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.xh-footer-mid-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--c-text-muted); white-space: nowrap; }
.xh-footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.xh-footer-copyright { font-size: 0.8rem; color: var(--c-text-muted); line-height: 1.6; }
.xh-footer-bottom-right { display: flex; align-items: center; gap: 12px; }
.xh-footer-flag { width: 28px; height: 20px; border-radius: 3px; object-fit: cover; flex-shrink: 0; }
.xh-footer-18 { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; border: 2px solid #3a4e54; color: var(--c-text-muted); font-size: 0.72rem; font-weight: 800; flex-shrink: 0; }

/* WIDGET */
#xh-widget { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: linear-gradient(90deg, #020c0d 0%, #031210 50%, #020c0d 100%); border-top: 2px solid var(--c-btn-primary); padding: 12px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; box-shadow: 0 -4px 24px rgba(0,0,0,0.5); }
.xh-widget-text { display: flex; flex-direction: column; }
.xh-widget-text strong { font-size: 0.97rem; color: #fff; }
.xh-widget-text span { font-size: 0.82rem; color: var(--c-accent); }
.xh-widget-right { display: flex; align-items: center; gap: 10px; }
.xh-widget-dismiss { background: none; border: none; cursor: pointer; color: #3a4e54; font-size: 1.2rem; padding: 4px; line-height: 1; transition: color var(--transition); }
.xh-widget-dismiss:hover { color: var(--c-text-muted); }

/* BONUS BOX */
.xh-bonus-box { background: linear-gradient(135deg, #031510 0%, #031812 100%); border: 1px solid rgba(5,158,93,0.35); border-radius: var(--radius-lg); padding: 32px 36px; text-align: center; margin-bottom: 32px; }
.xh-bonus-amount { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3rem); color: var(--c-accent); margin: 12px 0 6px; }
.xh-bonus-label { font-size: 0.85rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.xh-bonus-code { display: inline-flex; align-items: center; gap: 8px; background: #020c0d; border: 1px dashed rgba(5,158,93,0.5); border-radius: var(--radius-sm); padding: 8px 20px; font-family: monospace; font-size: 1.05rem; color: var(--c-accent); letter-spacing: 2px; margin: 14px 0 20px; cursor: pointer; transition: background var(--transition); }
.xh-bonus-code:hover { background: #031812; }
.xh-bonus-note { font-size: 0.78rem; color: #576b72; margin-top: 12px; }

/* RATING STARS */
.xh-stars { display: inline-flex; gap: 3px; color: var(--c-gold); font-size: 1rem; }

/* UTILS */
.xh-flex-center { display: flex; align-items: center; justify-content: center; }
.xh-gap-8 { gap: 8px; }
.xh-text-muted { color: var(--c-text-muted); }
.xh-text-accent { color: var(--c-accent); }
.xh-text-gold { color: var(--c-gold); }
.xh-mb-0 { margin-bottom: 0; }
.xh-mt-0 { margin-top: 0; }
.xh-tag { display: inline-flex; align-items: center; gap: 4px; background: #0b1a1e; border: 1px solid var(--c-border); border-radius: 20px; padding: 3px 10px; font-size: 0.75rem; color: var(--c-text-muted); }

/* SCROLL FADE IN */
.js .xh-fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.xh-fade-in.visible { opacity: 1; transform: none; }

/* INFO PAGE */
.xh-info-content { max-width: 820px; margin: 0 auto; padding: 52px 0 80px; }
.xh-info-content h1 { margin-bottom: 28px; }
.xh-info-content h2 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: 0.8rem; }
.xh-info-content p, .xh-info-content li { color: #b8cdd4; line-height: 1.75; }
.xh-info-content ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.xh-info-content a { color: var(--c-accent); }
.xh-info-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.xh-info-content table th, .xh-info-content table td { padding: 10px 14px; text-align: left; border: 1px solid var(--c-border); font-size: 0.9rem; }
.xh-info-content table th { background: var(--c-card); color: var(--c-text-muted); }
.xh-info-content table td { background: var(--c-card2); }

/* Unused styles for layout uniqueness */
.wp-block-group, .wp-block-column, .wp-block-cover, .elementor-section, .elementor-column, .elementor-widget-container { display: block; }
.wp-post-image, .attachment-full, .size-full { max-width: 100%; height: auto; }
.sticky, .bypostauthor, .screen-reader-text { clip: rect(1px,1px,1px,1px); }
.a3k9f-wr { display: none; }
.q7x2m-hd { visibility: hidden; }
.k4p1r-unused { color: transparent; }
.b8w3n-null { position: fixed; width: 0; height: 0; overflow: hidden; }
.c5t6y-dummy { pointer-events: none; opacity: 0; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .xh-footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .xh-games-grid { grid-template-columns: repeat(3, 1fr); }
  .xh-app-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .xh-nav-links { display: none; }
  .xh-burger { display: flex; }
  .xh-online { display: none; }
  .xh-nav-right .btn-secondary, .xh-nav-right .btn-primary { display: none; }
  .xh-hero-content { padding: 40px 16px; }
  .xh-section { padding: 36px 0; }
  .xh-content-block { padding: 24px 18px; }
  .xh-author-card { flex-direction: column; gap: 20px; }
  .xh-footer-top { grid-template-columns: 1fr 1fr; gap: 22px; padding: 28px 0 18px; }
  .xh-footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .xh-bonus-box { padding: 22px 18px; }
  .xh-toc-wrap { padding: 20px 16px; }
  .xh-games-slider-outer { overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .xh-games-grid { display: flex; gap: 14px; }
  .xh-game-card { flex: 0 0 68%; max-width: 260px; scroll-snap-align: start; }
  .xh-adv-grid { grid-template-columns: 1fr 1fr; }
  #xh-widget { padding: 10px 14px; }
  .xh-widget-text strong { font-size: 0.87rem; }
}
@media (max-width: 480px) {
  .xh-footer-top { grid-template-columns: 1fr; }
  .xh-adv-grid { grid-template-columns: 1fr; }
  .xh-game-card { flex: 0 0 82%; }
  .xh-hero-btns { flex-direction: column; }
  .xh-hero-btns .btn { width: 100%; }
  .xh-widget-text span { display: none; }
  .xh-toc-grid { grid-template-columns: 1fr; }
}
