@import url('https://fonts.googleapis.com/css2?family=Arboria:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --clr-bg: #13161C;
  --clr-header: #13161C;
  --clr-footer: #0D1016;
  --clr-primary: #A18254;
  --clr-primary-hover: #B8975F;
  --clr-secondary: #464B55;
  --clr-secondary-hover: #545A66;
  --clr-text: #E8E3DA;
  --clr-text-muted: #9A9590;
  --clr-border: #2A2E38;
  --clr-card: #1C2028;
  --clr-card-alt: #181D25;
  --clr-gold-light: #C9A96E;
  --clr-accent: #D4A853;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-main: 'Arboria', 'Inter', sans-serif;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.45);
  --shadow-btn: 0 2px 12px rgba(161,130,84,0.3);
  --transition: 0.22s ease;
}

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

a { color: var(--clr-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-gold-light); }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-main); font-weight: 700; line-height: 1.2; color: var(--clr-text); }
h1 { font-size: clamp(1.75rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.8rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: 0.6rem; }
p { margin-bottom: 1rem; color: var(--clr-text); }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

.wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.container--wide { max-width: 1440px; }
.container--full { max-width: 100%; padding: 0; }
main { flex: 1; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 22px; border-radius: var(--radius-md); font-family: var(--font-main);
  font-size: 0.92rem; font-weight: 600; cursor: pointer; border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap; letter-spacing: 0.02em; text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--clr-primary); color: #13161C; box-shadow: var(--shadow-btn); }
.btn--primary:hover { background: var(--clr-primary-hover); color: #13161C; box-shadow: 0 4px 20px rgba(161,130,84,0.5); }
.btn--secondary { background: var(--clr-secondary); color: var(--clr-text); }
.btn--secondary:hover { background: var(--clr-secondary-hover); color: #fff; }
.btn--outline { background: transparent; border: 1.5px solid var(--clr-primary); color: var(--clr-primary); }
.btn--outline:hover { background: var(--clr-primary); color: #13161C; }
.btn--lg { padding: 14px 34px; font-size: 1.05rem; }
.btn--sm { padding: 7px 16px; font-size: 0.82rem; }
.btn--full { width: 100%; }
.btn--ghost { background: rgba(255,255,255,0.07); color: var(--clr-text); border: 1px solid var(--clr-border); }
.btn--ghost:hover { background: rgba(255,255,255,0.13); color: #fff; }

.header { background: var(--clr-header); border-bottom: 1px solid var(--clr-border); position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(10px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 16px; }
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo img { height: 42px; width: auto; object-fit: contain; }
.header-logo .logo-text { font-size: 1.25rem; font-weight: 700; color: var(--clr-primary); letter-spacing: 0.03em; }

.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a { display: flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: var(--radius-sm); color: var(--clr-text-muted); font-size: 0.88rem; font-weight: 500; transition: color var(--transition), background var(--transition); }
.header-nav a:hover, .header-nav a.active { color: var(--clr-primary); background: rgba(161,130,84,0.08); }
.header-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-online { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--clr-text-muted); margin-right: 8px; }
.header-online .dot { width: 7px; height: 7px; border-radius: 50%; background: #4CAF50; animation: pulse-dot 2s ease-in-out infinite; flex-shrink: 0; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.7; transform: scale(1.3); } }

.burger { display: none; flex-direction: column; justify-content: center; align-items: center; width: 38px; height: 38px; gap: 5px; background: transparent; border: 1px solid var(--clr-border); border-radius: var(--radius-sm); cursor: pointer; padding: 0; }
.burger span { display: block; width: 20px; height: 2px; background: var(--clr-text); border-radius: 2px; transition: transform var(--transition), opacity 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: 70px; left: 0; right: 0; bottom: 0; background: var(--clr-header); z-index: 999; overflow-y: auto; padding: 20px; flex-direction: column; gap: 8px; }
.mobile-menu.active { display: flex; animation: slideDown 0.22s ease; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.mobile-menu a { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: var(--radius-md); color: var(--clr-text); font-size: 1rem; font-weight: 500; border: 1px solid var(--clr-border); transition: background var(--transition), color var(--transition); }
.mobile-menu a:hover { background: rgba(161,130,84,0.1); color: var(--clr-primary); }
.mobile-menu a svg { width: 18px; height: 18px; }
.mobile-menu-divider { height: 1px; background: var(--clr-border); margin: 8px 0; }
.mobile-menu-btns { display: flex; gap: 10px; margin-top: 8px; }
.mobile-menu-btns .btn { flex: 1; }
.mobile-online { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--clr-text-muted); padding: 8px 16px; }
.mobile-online .dot { width: 7px; height: 7px; border-radius: 50%; background: #4CAF50; animation: pulse-dot 2s ease-in-out infinite; }

.hero { position: relative; min-height: 520px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('/clubhouse-banner.png') center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,16,22,0.93) 40%, rgba(13,16,22,0.55) 100%); }
.hero-content { position: relative; z-index: 2; padding: 80px 0; max-width: 620px; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(161,130,84,0.15); border: 1px solid rgba(161,130,84,0.35); color: var(--clr-primary); font-size: 0.82rem; font-weight: 600; padding: 5px 14px; border-radius: 20px; margin-bottom: 20px; letter-spacing: 0.06em; text-transform: uppercase; }
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; margin-bottom: 1rem; line-height: 1.1; }
.hero h1 span { color: var(--clr-primary); }
.hero-desc { font-size: 1.08rem; color: rgba(232,227,218,0.8); margin-bottom: 2rem; max-width: 480px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 24px; margin-top: 2.5rem; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong { font-size: 1.5rem; font-weight: 700; color: var(--clr-primary); }
.hero-stat span { font-size: 0.8rem; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

.breadcrumbs { padding: 14px 0; border-bottom: 1px solid var(--clr-border); }
.breadcrumbs-list { display: flex; align-items: center; gap: 6px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.breadcrumbs-list li { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--clr-text-muted); }
.breadcrumbs-list li a { color: var(--clr-text-muted); transition: color var(--transition); }
.breadcrumbs-list li a:hover { color: var(--clr-primary); }
.breadcrumbs-list li.active { color: var(--clr-primary); }
.breadcrumbs-sep { color: var(--clr-border); font-size: 0.75rem; }

.section { padding: 60px 0; }
.section--sm { padding: 40px 0; }
.section--lg { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 2.5rem; }
.section-title h2 { position: relative; display: inline-block; padding-bottom: 14px; }
.section-title h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 48px; height: 3px; background: var(--clr-primary); border-radius: 2px; }
.section-title p { color: var(--clr-text-muted); max-width: 560px; margin: 1rem auto 0; font-size: 0.97rem; }

.toc-block { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 28px 32px; margin-bottom: 2rem; }
.toc-block h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--clr-text-muted); margin-bottom: 16px; }
.toc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 8px; }
.toc-item { display: flex; align-items: center; gap: 10px; padding: 9px 14px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.03); border: 1px solid transparent; color: var(--clr-text); font-size: 0.88rem; font-weight: 500; transition: background var(--transition), border-color var(--transition), color var(--transition); }
.toc-item:hover { background: rgba(161,130,84,0.1); border-color: rgba(161,130,84,0.25); color: var(--clr-primary); }
.toc-item svg { width: 16px; height: 16px; color: var(--clr-primary); flex-shrink: 0; }
.toc-counter { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; background: rgba(161,130,84,0.15); color: var(--clr-primary); font-size: 0.72rem; font-weight: 700; flex-shrink: 0; }

.advantages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 16px; }
.advantage-card { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 24px 20px; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition); }
.advantage-card:hover { transform: translateY(-4px); border-color: rgba(161,130,84,0.35); box-shadow: var(--shadow-card); }
.advantage-icon { width: 48px; height: 48px; border-radius: var(--radius-md); background: rgba(161,130,84,0.12); display: flex; align-items: center; justify-content: center; }
.advantage-icon svg { width: 24px; height: 24px; color: var(--clr-primary); }
.advantage-card h4 { font-size: 0.97rem; font-weight: 600; color: var(--clr-text); line-height: 1.3; }
.advantage-card p { font-size: 0.83rem; color: var(--clr-text-muted); line-height: 1.55; margin: 0; }

.bonuses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
#bonuses-slider .bonuses-grid { display: flex; flex-wrap: nowrap; }
#bonuses-slider .bonus-card { min-width: calc(33.333% - 14px); flex: 0 0 calc(33.333% - 14px); }
.bonus-card { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition); }
.bonus-card:hover { transform: translateY(-4px); border-color: rgba(161,130,84,0.45); box-shadow: 0 8px 40px rgba(0,0,0,0.5); }
.bonus-card.featured { border-color: var(--clr-primary); box-shadow: 0 0 0 1px rgba(161,130,84,0.3), var(--shadow-card); }
.bonus-badge { background: var(--clr-primary); color: #13161C; font-size: 0.72rem; font-weight: 700; padding: 4px 12px; text-transform: uppercase; letter-spacing: 0.08em; text-align: center; }
.bonus-header { padding: 24px 24px 0; }
.bonus-icon { width: 52px; height: 52px; border-radius: var(--radius-md); background: rgba(161,130,84,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.bonus-icon svg { width: 26px; height: 26px; color: var(--clr-primary); }
.bonus-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.bonus-amount { font-size: 2rem; font-weight: 700; color: var(--clr-primary); line-height: 1; margin-bottom: 4px; }
.bonus-amount span { font-size: 1rem; font-weight: 400; color: var(--clr-text-muted); }
.bonus-body { padding: 16px 24px; flex: 1; }
.bonus-features { list-style: none; padding: 0; margin: 0 0 16px; }
.bonus-features li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--clr-text-muted); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.bonus-features li:last-child { border-bottom: none; }
.bonus-features li svg { width: 14px; height: 14px; color: #4CAF50; flex-shrink: 0; }
.bonus-footer { padding: 0 24px 24px; }

.games-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
#games-slider .games-grid { display: flex; flex-wrap: nowrap; }
#games-slider .game-card { min-width: calc(16.666% - 12px); flex: 0 0 calc(16.666% - 12px); }
.game-card { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition); }
.game-card:hover { transform: translateY(-4px) scale(1.02); border-color: rgba(161,130,84,0.4); box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
.game-thumb { aspect-ratio: 3/4; background: linear-gradient(135deg, #1e2530 0%, #141820 100%); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.game-thumb .game-overlay { position: absolute; inset: 0; background: rgba(13,16,22,0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--transition); }
.game-card:hover .game-overlay { opacity: 1; }
.game-info { padding: 12px; }
.game-info h4 { font-size: 0.82rem; font-weight: 600; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game-provider { font-size: 0.72rem; color: var(--clr-text-muted); margin-bottom: 8px; }
.game-rtp { display: inline-block; font-size: 0.7rem; background: rgba(161,130,84,0.12); color: var(--clr-primary); padding: 2px 8px; border-radius: 10px; font-weight: 600; }

.review-content { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 36px 40px; }
.review-content p { color: var(--clr-text); line-height: 1.75; margin-bottom: 1.2rem; }
.review-content h2 { font-size: 1.5rem; margin: 2rem 0 1rem; color: var(--clr-gold-light); }
.review-content h3 { font-size: 1.2rem; margin: 1.5rem 0 0.8rem; color: var(--clr-text); }
.review-content h4 { font-size: 1.05rem; margin: 1.2rem 0 0.6rem; color: var(--clr-text); }
.review-content ul, .review-content ol { margin-left: 1.5rem; margin-bottom: 1.2rem; }
.review-content li { margin-bottom: 0.5rem; color: var(--clr-text); line-height: 1.65; }
.review-content a { color: var(--clr-primary); text-decoration: underline; text-underline-offset: 3px; }
.review-content a:hover { color: var(--clr-gold-light); }
.review-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; overflow-x: auto; display: block; }
.review-content table th { background: rgba(161,130,84,0.1); color: var(--clr-text); font-weight: 600; padding: 10px 16px; text-align: left; border: 1px solid var(--clr-border); font-size: 0.9rem; }
.review-content table td { padding: 9px 16px; border: 1px solid var(--clr-border); color: var(--clr-text-muted); font-size: 0.88rem; }
.review-content table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.review-content strong { color: var(--clr-text); font-weight: 600; }
.review-content em { color: var(--clr-text-muted); }
.review-content blockquote { border-left: 3px solid var(--clr-primary); padding: 12px 20px; background: rgba(161,130,84,0.06); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 1.5rem 0; }
.review-content blockquote p { color: var(--clr-text); margin: 0; font-style: italic; }
.review-content hr { border: none; border-top: 1px solid var(--clr-border); margin: 2rem 0; }

.faq-block { }
.faq-item { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius-md); margin-bottom: 10px; overflow: hidden; transition: border-color var(--transition); }
.faq-item.open { border-color: rgba(161,130,84,0.35); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; cursor: pointer; user-select: none; gap: 12px; }
.faq-question h3 { font-size: 0.97rem; font-weight: 600; color: var(--clr-text); margin: 0; flex: 1; }
.faq-chevron { width: 20px; height: 20px; color: var(--clr-primary); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding var(--transition); }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--clr-text-muted); font-size: 0.92rem; line-height: 1.7; }
.faq-answer-inner p { color: var(--clr-text-muted); margin: 0; }
.faq-answer-inner a { color: var(--clr-primary); }

.author-block { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 32px; display: flex; gap: 28px; align-items: flex-start; }
.author-photo { width: 90px; height: 90px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 3px solid rgba(161,130,84,0.3); }
.author-photo img { width: 100%; height: 100%; object-fit: cover; }
.author-info h3 { font-size: 1.15rem; margin-bottom: 3px; }
.author-role { font-size: 0.83rem; color: var(--clr-primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
.author-bio { font-size: 0.9rem; color: var(--clr-text-muted); line-height: 1.65; margin-bottom: 14px; }
.author-links { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.author-social { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.05); color: var(--clr-text-muted); font-size: 0.82rem; border: 1px solid var(--clr-border); transition: all var(--transition); }
.author-social:hover { background: rgba(161,130,84,0.12); color: var(--clr-primary); border-color: rgba(161,130,84,0.3); }
.author-social svg { width: 15px; height: 15px; }
.author-date { font-size: 0.8rem; color: var(--clr-text-muted); margin-left: auto; text-align: right; }
.author-date span { display: block; }
.author-date strong { color: var(--clr-text); }

.footer { background: var(--clr-footer); border-top: 1px solid var(--clr-border); padding-top: 52px; }
.footer-top { display: grid; grid-template-columns: 280px 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--clr-border); }
.footer-brand p { font-size: 0.85rem; color: var(--clr-text-muted); line-height: 1.65; margin: 14px 0 20px; max-width: 260px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { height: 38px; }
.footer-logo .logo-text { font-size: 1.1rem; font-weight: 700; color: var(--clr-primary); }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 36px; height: 36px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.05); border: 1px solid var(--clr-border); display: flex; align-items: center; justify-content: center; color: var(--clr-text-muted); transition: all var(--transition); }
.footer-social a:hover { background: rgba(161,130,84,0.15); border-color: var(--clr-primary); color: var(--clr-primary); }
.footer-social a svg { width: 16px; height: 16px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h5 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--clr-text-muted); margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.85rem; color: var(--clr-text-muted); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--clr-primary); }
.footer-country { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--clr-text-muted); margin-top: 8px; }
.footer-country img { width: 22px; border-radius: 2px; }

.footer-mid { padding: 32px 0; border-bottom: 1px solid var(--clr-border); }
.footer-mid-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--clr-text-muted); margin-bottom: 14px; }
.logos-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.logo-chip { height: 34px; background: rgba(255,255,255,0.05); border: 1px solid var(--clr-border); border-radius: var(--radius-sm); padding: 0 14px; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 600; color: var(--clr-text-muted); white-space: nowrap; transition: all var(--transition); }
.logo-chip:hover { border-color: rgba(161,130,84,0.3); color: var(--clr-text); }
.logo-chip svg { width: 18px; height: 18px; margin-right: 6px; }

.footer-bottom { padding: 24px 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-legal { font-size: 0.78rem; color: var(--clr-text-muted); line-height: 1.65; max-width: 700px; }
.footer-legal a { color: var(--clr-text-muted); text-decoration: underline; text-underline-offset: 2px; }
.footer-legal a:hover { color: var(--clr-primary); }
.footer-copy { font-size: 0.8rem; color: var(--clr-text-muted); text-align: right; white-space: nowrap; }

.sticky-widget { position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; background: linear-gradient(90deg, #0D1016 0%, #161B24 100%); border-top: 1px solid var(--clr-border); padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; box-shadow: 0 -4px 30px rgba(0,0,0,0.5); transform: translateY(100%); transition: transform 0.4s ease 1.2s; }
.sticky-widget.visible { transform: translateY(0); }
.sticky-widget-info { display: flex; flex-direction: column; }
.sticky-widget-info strong { font-size: 0.92rem; font-weight: 700; color: var(--clr-text); }
.sticky-widget-info span { font-size: 0.78rem; color: var(--clr-primary); font-weight: 600; }
.sticky-widget-promo { display: flex; align-items: center; gap: 8px; }
.sticky-promo-code { background: rgba(161,130,84,0.12); border: 1px dashed var(--clr-primary); color: var(--clr-primary); font-family: monospace; font-size: 0.92rem; font-weight: 700; padding: 6px 14px; border-radius: var(--radius-sm); letter-spacing: 0.1em; cursor: pointer; transition: background var(--transition); }
.sticky-promo-code:hover { background: rgba(161,130,84,0.2); }
.sticky-widget-close { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid var(--clr-border); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--clr-text-muted); flex-shrink: 0; transition: all var(--transition); }
.sticky-widget-close:hover { background: rgba(255,255,255,0.12); color: var(--clr-text); }
.sticky-widget-close svg { width: 14px; height: 14px; }

.slider-wrapper { position: relative; overflow: hidden; }
.slider-track { display: flex; gap: 16px; transition: transform 0.4s ease; will-change: transform; }
.slider-nav { display: none; gap: 10px; justify-content: center; margin-top: 16px; }
.slider-btn { width: 38px; height: 38px; border-radius: 50%; background: var(--clr-card); border: 1px solid var(--clr-border); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--clr-text-muted); transition: all var(--transition); }
.slider-btn:hover { border-color: var(--clr-primary); color: var(--clr-primary); }
.slider-btn svg { width: 16px; height: 16px; }

.rating-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.rating-bar-label { font-size: 0.82rem; color: var(--clr-text-muted); min-width: 120px; }
.rating-bar-track { flex: 1; height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--clr-primary); border-radius: 3px; transition: width 1s ease; }
.rating-score { font-size: 0.82rem; color: var(--clr-primary); font-weight: 700; min-width: 30px; text-align: right; }

.xbf72a { display: none; }
.wq94t { visibility: hidden; height: 0; overflow: hidden; }
.nk3812 { opacity: 0; pointer-events: none; position: absolute; }

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

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.tag { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: 20px; background: rgba(255,255,255,0.05); border: 1px solid var(--clr-border); font-size: 0.78rem; color: var(--clr-text-muted); }

@media (max-width: 1100px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  #games-slider .game-card { min-width: calc(33.333% - 11px); flex: 0 0 calc(33.333% - 11px); }
  .bonuses-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 240px 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .bonuses-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  #bonuses-slider .bonus-card { min-width: calc(100% - 0px); flex: 0 0 100%; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .toc-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .header-online { display: none; }
  .header-actions .btn { display: none; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  #games-slider .game-card { min-width: calc(50% - 8px); flex: 0 0 calc(50% - 8px); }
  .games-grid:not(.slider-track) .game-card:nth-child(n+5) { display: none; }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .author-block { flex-direction: column; gap: 18px; }
  .author-date { margin-left: 0; text-align: left; margin-top: 10px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; }
  .footer-copy { text-align: left; }
  .hero { min-height: 420px; }
  .toc-grid { grid-template-columns: 1fr; }
  .review-content { padding: 22px 18px; }
  .sticky-widget { flex-wrap: wrap; }
  .slider-nav { display: flex; }
  .bonuses-grid { }
  .section { padding: 44px 0; }
}
@media (max-width: 540px) {
  .advantages-grid { grid-template-columns: 1fr 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid:not(.slider-track) .game-card:nth-child(n+5) { display: none; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-meta { gap: 16px; }
  .bonuses-grid { max-width: 100%; }
  .toc-block { padding: 20px 16px; }
  .author-links { flex-direction: column; align-items: flex-start; }
}

.wp-content-preload { display: none; }
.wp-page-template { visibility: hidden; height: 0; overflow: hidden; }
.wp-site-title { display: none; }
