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

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

:root {
  --c-bg: #000000;
  --c-hdr: #020C0D;
  --c-btn-sec: #322D37;
  --c-btn-pri: #059E5D;
  --c-btn-pri-h: #06b86a;
  --c-btn-sec-h: #3e3845;
  --c-text: #e8eaea;
  --c-text-muted: #9aacad;
  --c-border: #1a2e2f;
  --c-card: #060f10;
  --c-card2: #0a1718;
  --c-accent: #059E5D;
  --c-gold: #f0c040;
  --radius: 10px;
  --radius-lg: 16px;
  --font-head: 'Anton', sans-serif;
  --font-body: 'Overpass', sans-serif;
  --transition: 0.25s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.55);
  --glow: 0 0 18px rgba(5,158,93,0.35);
}

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

a { color: var(--c-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-btn-pri-h); }
img { max-width: 100%; height: auto; display: block; }

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

/* ========== BUTTONS ========== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; border: none; border-radius: var(--radius); font-family: var(--font-body); font-weight: 700; cursor: pointer; text-decoration: none; transition: background var(--transition), transform var(--transition), box-shadow var(--transition); white-space: nowrap; }
.btn-pri { background: var(--c-btn-pri); color: #fff; padding: 11px 24px; font-size: 0.95rem; box-shadow: var(--glow); }
.btn-pri:hover { background: var(--c-btn-pri-h); color: #fff; transform: translateY(-2px); box-shadow: 0 0 28px rgba(5,158,93,0.55); }
.btn-sec { background: var(--c-btn-sec); color: var(--c-text); padding: 11px 20px; font-size: 0.9rem; }
.btn-sec:hover { background: var(--c-btn-sec-h); color: #fff; transform: translateY(-1px); }
.btn-lg { padding: 15px 36px; font-size: 1.1rem; border-radius: 12px; }
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }
.btn-full { width: 100%; }

/* ========== HEADER ========== */
.xw7k2-header { background: var(--c-hdr); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--c-border); box-shadow: 0 2px 20px rgba(0,0,0,0.7); }
.xw7k2-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; height: 68px; }
.xw7k2-logo { display: flex; align-items: center; flex-shrink: 0; }
.xw7k2-logo img { height: 44px; width: auto; }
.xw7k2-logo-txt { font-family: var(--font-head); font-size: 1.5rem; color: var(--c-accent); letter-spacing: 0.03em; }

.xw7k2-nav { display: flex; align-items: center; gap: 4px; }
.xw7k2-nav a { display: flex; align-items: center; gap: 6px; color: var(--c-text-muted); font-size: 0.88rem; font-weight: 600; padding: 7px 10px; border-radius: 8px; transition: all var(--transition); }
.xw7k2-nav a:hover, .xw7k2-nav a.active { color: var(--c-text); background: rgba(5,158,93,0.12); }
.xw7k2-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }

.xw7k2-hdr-right { display: flex; align-items: center; gap: 10px; }
.xw7k2-online { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--c-text-muted); white-space: nowrap; }
.xw7k2-online-dot { width: 8px; height: 8px; background: var(--c-accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(5,158,93,0.5); } 50% { box-shadow: 0 0 0 6px rgba(5,158,93,0); } }

.xw7k2-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border-radius: 6px; background: none; border: none; }
.xw7k2-burger span { display: block; width: 24px; height: 2px; background: var(--c-text); border-radius: 2px; transition: all var(--transition); }
.xw7k2-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.xw7k2-burger.open span:nth-child(2) { opacity: 0; }
.xw7k2-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.xw7k2-mobile-nav { display: none; background: var(--c-hdr); border-top: 1px solid var(--c-border); padding: 16px 18px 20px; }
.xw7k2-mobile-nav.open { display: block; }
.xw7k2-mobile-nav a { display: flex; align-items: center; gap: 8px; color: var(--c-text-muted); font-size: 0.95rem; font-weight: 600; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.xw7k2-mobile-nav a:last-of-type { border-bottom: none; }
.xw7k2-mobile-nav a svg { width: 18px; height: 18px; }

/* ========== HERO ========== */
.xw7k2-hero { position: relative; min-height: 520px; display: flex; align-items: center; overflow: hidden; background: var(--c-hdr); }
.xw7k2-hero-bg { position: absolute; inset: 0; background: url('/hero-banner.png') center/cover no-repeat; opacity: 0.45; }
.xw7k2-hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(0,0,0,0.88) 0%, rgba(2,12,13,0.7) 60%, rgba(5,158,93,0.08) 100%); }
.xw7k2-hero-content { position: relative; z-index: 2; max-width: 620px; padding: 60px 0; }
.xw7k2-hero-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(5,158,93,0.15); border: 1px solid rgba(5,158,93,0.35); color: var(--c-accent); font-size: 0.82rem; font-weight: 700; padding: 5px 14px; border-radius: 50px; margin-bottom: 18px; letter-spacing: 0.08em; text-transform: uppercase; }
.xw7k2-hero h1 { font-family: var(--font-head); font-size: clamp(2.1rem, 5vw, 3.4rem); color: #fff; line-height: 1.1; margin-bottom: 16px; letter-spacing: 0.02em; text-shadow: 0 2px 20px rgba(0,0,0,0.8); }
.xw7k2-hero h1 span { color: var(--c-accent); }
.xw7k2-hero-sub { font-size: 1.05rem; color: var(--c-text-muted); margin-bottom: 30px; line-height: 1.6; }
.xw7k2-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.xw7k2-hero-bonus-tag { display: flex; align-items: center; gap: 8px; background: rgba(240,192,64,0.12); border: 1px solid rgba(240,192,64,0.3); color: var(--c-gold); font-weight: 700; padding: 8px 16px; border-radius: 8px; font-size: 0.9rem; }

/* ========== BREADCRUMBS ========== */
.xw7k2-breadcrumbs { background: var(--c-card); border-bottom: 1px solid var(--c-border); padding: 10px 0; }
.xw7k2-bc-list { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; list-style: none; font-size: 0.82rem; }
.xw7k2-bc-list li { display: flex; align-items: center; gap: 6px; color: var(--c-text-muted); }
.xw7k2-bc-list li:not(:last-child)::after { content: '/'; color: var(--c-border); }
.xw7k2-bc-list a { color: var(--c-text-muted); }
.xw7k2-bc-list a:hover { color: var(--c-accent); }
.xw7k2-bc-list li:last-child { color: var(--c-text); font-weight: 600; }

/* ========== SECTIONS ========== */
.xw7k2-section { padding: 52px 0; }
.xw7k2-section-sm { padding: 32px 0; }
.xw7k2-section-title { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2rem); color: #fff; margin-bottom: 8px; letter-spacing: 0.02em; }
.xw7k2-section-sub { color: var(--c-text-muted); font-size: 0.95rem; margin-bottom: 28px; }

/* ========== TABLE OF CONTENTS ========== */
.xw7k2-toc { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 28px 32px; }
.xw7k2-toc-title { font-family: var(--font-head); font-size: 1.15rem; color: #fff; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.xw7k2-toc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 8px; }
.xw7k2-toc-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 8px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); color: var(--c-text-muted); font-size: 0.88rem; font-weight: 600; transition: all var(--transition); }
.xw7k2-toc-item:hover { background: rgba(5,158,93,0.1); border-color: rgba(5,158,93,0.3); color: var(--c-text); transform: translateX(3px); }
.xw7k2-toc-item svg { width: 16px; height: 16px; color: var(--c-accent); flex-shrink: 0; }

/* ========== PROS CONS ========== */
.xw7k2-proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.xw7k2-pros-card, .xw7k2-cons-card { background: var(--c-card); border-radius: var(--radius-lg); padding: 24px; }
.xw7k2-pros-card { border: 1px solid rgba(5,158,93,0.3); }
.xw7k2-cons-card { border: 1px solid rgba(220,60,60,0.25); }
.xw7k2-pc-head { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 16px; }
.xw7k2-pc-head.pros { color: var(--c-accent); }
.xw7k2-pc-head.cons { color: #e05555; }
.xw7k2-pc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.xw7k2-pc-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.9rem; color: var(--c-text); line-height: 1.5; }
.xw7k2-pc-list li svg { flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; }
.xw7k2-pc-list.pros-list li svg { color: var(--c-accent); }
.xw7k2-pc-list.cons-list li svg { color: #e05555; }

/* ========== APP INFO ========== */
.xw7k2-app-block { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 28px; }
.xw7k2-app-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.xw7k2-app-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.xw7k2-app-table th, .xw7k2-app-table td { padding: 10px 14px; text-align: left; border: 1px solid var(--c-border); }
.xw7k2-app-table th { background: rgba(5,158,93,0.1); color: var(--c-accent); font-weight: 700; width: 40%; }
.xw7k2-app-table td { color: var(--c-text); }
.xw7k2-app-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.xw7k2-app-dl { display: flex; flex-direction: column; gap: 12px; padding-top: 4px; }
.xw7k2-app-dl-title { font-family: var(--font-head); font-size: 1rem; color: #fff; margin-bottom: 8px; }
.xw7k2-dl-btn { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: 12px; border: 1px solid var(--c-border); background: rgba(255,255,255,0.04); color: var(--c-text); font-weight: 700; transition: all var(--transition); }
.xw7k2-dl-btn:hover { background: rgba(5,158,93,0.1); border-color: rgba(5,158,93,0.35); color: var(--c-text); transform: translateX(4px); }
.xw7k2-dl-btn svg { width: 28px; height: 28px; flex-shrink: 0; }
.xw7k2-dl-btn-inner small { display: block; font-size: 0.72rem; font-weight: 400; color: var(--c-text-muted); }
.xw7k2-dl-btn-inner strong { font-size: 0.95rem; }

/* ========== GAMES SLIDER ========== */
.xw7k2-games-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.xw7k2-game-card { background: var(--c-card2); border: 1px solid var(--c-border); border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); display: flex; flex-direction: column; }
.xw7k2-game-card:hover { transform: translateY(-5px); box-shadow: 0 8px 32px rgba(0,0,0,0.6), var(--glow); }
.xw7k2-game-thumb { background: linear-gradient(135deg, #0a1f20, #051010); aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.xw7k2-game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.xw7k2-game-thumb-placeholder { width: 100%; aspect-ratio: 1/1; background: linear-gradient(135deg, #0a1f20 0%, #062615 100%); display: flex; align-items: center; justify-content: center; }
.xw7k2-game-thumb-placeholder svg { width: 48px; height: 48px; color: rgba(5,158,93,0.4); }
.xw7k2-game-info { padding: 12px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.xw7k2-game-name { font-weight: 700; font-size: 0.85rem; color: var(--c-text); line-height: 1.3; }
.xw7k2-game-provider { font-size: 0.75rem; color: var(--c-text-muted); }

/* ========== SLOT MINI GAME ========== */
.xw7k2-slot-game { background: var(--c-card); border: 1px solid rgba(5,158,93,0.25); border-radius: var(--radius-lg); padding: 32px; text-align: center; max-width: 540px; margin: 0 auto; }
.xw7k2-slot-title { font-family: var(--font-head); font-size: 1.6rem; color: var(--c-gold); margin-bottom: 6px; }
.xw7k2-slot-sub { color: var(--c-text-muted); font-size: 0.88rem; margin-bottom: 26px; }
.xw7k2-reels { display: flex; justify-content: center; gap: 10px; margin-bottom: 22px; }
.xw7k2-reel { width: 82px; height: 100px; background: var(--c-hdr); border: 2px solid var(--c-border); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 3.2rem; overflow: hidden; position: relative; box-shadow: inset 0 4px 14px rgba(0,0,0,0.5); }
.xw7k2-reel.spinning { animation: reel-spin 0.12s linear infinite; }
@keyframes reel-spin { 0% { transform: translateY(0); } 50% { transform: translateY(-8px); } 100% { transform: translateY(0); } }
.xw7k2-slot-result { min-height: 56px; margin-bottom: 18px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; }
.xw7k2-slot-win { font-family: var(--font-head); font-size: 1.3rem; color: var(--c-gold); animation: fadeIn 0.4s ease; }
.xw7k2-slot-lose { font-size: 0.95rem; color: var(--c-text-muted); }
@keyframes fadeIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.xw7k2-slot-credits { display: flex; justify-content: center; gap: 28px; margin-bottom: 22px; }
.xw7k2-slot-credit-item { text-align: center; }
.xw7k2-slot-credit-item small { display: block; font-size: 0.72rem; color: var(--c-text-muted); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.08em; }
.xw7k2-slot-credit-item strong { font-family: var(--font-head); font-size: 1.3rem; color: var(--c-gold); }

/* ========== REVIEW CONTENT ========== */
.xw7k2-review { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 32px 36px; }
.xw7k2-review h2 { font-family: var(--font-head); font-size: 1.55rem; color: #fff; margin: 28px 0 12px; }
.xw7k2-review h3 { font-family: var(--font-head); font-size: 1.2rem; color: var(--c-accent); margin: 22px 0 10px; }
.xw7k2-review h4 { font-size: 1rem; font-weight: 700; color: var(--c-text); margin: 18px 0 8px; }
.xw7k2-review p { color: var(--c-text); margin-bottom: 14px; line-height: 1.7; font-size: 0.96rem; }
.xw7k2-review ul, .xw7k2-review ol { margin: 0 0 16px 22px; color: var(--c-text); font-size: 0.95rem; }
.xw7k2-review li { margin-bottom: 6px; line-height: 1.6; }
.xw7k2-review table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 0.9rem; overflow-x: auto; display: block; }
.xw7k2-review table th { background: rgba(5,158,93,0.12); color: var(--c-accent); padding: 10px 14px; border: 1px solid var(--c-border); text-align: left; }
.xw7k2-review table td { padding: 10px 14px; border: 1px solid var(--c-border); color: var(--c-text); }
.xw7k2-review table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.xw7k2-review a { color: var(--c-accent); text-decoration: underline; }
.xw7k2-review strong { color: #fff; }
.xw7k2-review blockquote { border-left: 3px solid var(--c-accent); padding: 10px 16px; margin: 16px 0; color: var(--c-text-muted); font-style: italic; background: rgba(5,158,93,0.05); border-radius: 0 8px 8px 0; }

/* ========== FAQ ========== */
.xw7k2-faq { display: flex; flex-direction: column; gap: 10px; }
.xw7k2-faq-item { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius); overflow: hidden; }
.xw7k2-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: var(--c-text); transition: background var(--transition); }
.xw7k2-faq-q:hover { background: rgba(5,158,93,0.07); }
.xw7k2-faq-q svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--c-accent); transition: transform var(--transition); }
.xw7k2-faq-item.open .xw7k2-faq-q svg { transform: rotate(180deg); }
.xw7k2-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding var(--transition); }
.xw7k2-faq-item.open .xw7k2-faq-a { max-height: 400px; }
.xw7k2-faq-a-inner { padding: 0 22px 18px; color: var(--c-text-muted); font-size: 0.9rem; line-height: 1.7; }
.xw7k2-faq-a-inner a { color: var(--c-accent); }

/* ========== AUTHOR ========== */
.xw7k2-author { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 28px; display: flex; gap: 24px; align-items: flex-start; }
.xw7k2-author-photo { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(5,158,93,0.4); flex-shrink: 0; background: var(--c-card2); }
.xw7k2-author-body { flex: 1; }
.xw7k2-author-name { font-family: var(--font-head); font-size: 1.2rem; color: #fff; }
.xw7k2-author-role { color: var(--c-accent); font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; }
.xw7k2-author-bio { font-size: 0.9rem; color: var(--c-text-muted); line-height: 1.7; margin-bottom: 14px; }
.xw7k2-author-meta { display: flex; gap: 18px; flex-wrap: wrap; font-size: 0.8rem; color: var(--c-text-muted); margin-bottom: 12px; }
.xw7k2-author-meta span { display: flex; align-items: center; gap: 5px; }
.xw7k2-author-links { display: flex; gap: 10px; flex-wrap: wrap; }
.xw7k2-author-link { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; padding: 6px 14px; border-radius: 6px; background: rgba(255,255,255,0.05); border: 1px solid var(--c-border); color: var(--c-text-muted); transition: all var(--transition); }
.xw7k2-author-link:hover { background: rgba(5,158,93,0.12); border-color: rgba(5,158,93,0.35); color: var(--c-text); }
.xw7k2-author-link svg { width: 14px; height: 14px; }

/* ========== FOOTER ========== */
.xw7k2-footer { background: var(--c-hdr); border-top: 1px solid var(--c-border); margin-top: auto; }
.xw7k2-footer-main { padding: 44px 0 28px; }
.xw7k2-footer-grid { display: grid; grid-template-columns: 220px 1fr 1fr 1fr; gap: 32px; }
.xw7k2-footer-brand .xw7k2-logo-txt { font-size: 1.3rem; margin-bottom: 10px; display: block; }
.xw7k2-footer-brand p { font-size: 0.82rem; color: var(--c-text-muted); line-height: 1.6; }
.xw7k2-footer-flag { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 0.82rem; color: var(--c-text-muted); }
.xw7k2-footer-col h4 { font-family: var(--font-head); font-size: 0.95rem; color: #fff; margin-bottom: 14px; letter-spacing: 0.05em; }
.xw7k2-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.xw7k2-footer-col ul li a { color: var(--c-text-muted); font-size: 0.86rem; transition: color var(--transition); }
.xw7k2-footer-col ul li a:hover { color: var(--c-accent); }
.xw7k2-footer-social { display: flex; gap: 10px; margin-top: 16px; }
.xw7k2-soc-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid var(--c-border); display: flex; align-items: center; justify-content: center; color: var(--c-text-muted); transition: all var(--transition); }
.xw7k2-soc-btn:hover { background: rgba(5,158,93,0.15); border-color: rgba(5,158,93,0.4); color: var(--c-accent); }
.xw7k2-soc-btn svg { width: 16px; height: 16px; }
.xw7k2-footer-logos { padding: 20px 0; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.xw7k2-footer-logos-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.xw7k2-logo-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; background: rgba(255,255,255,0.04); border: 1px solid var(--c-border); border-radius: 6px; font-size: 0.75rem; font-weight: 700; color: var(--c-text-muted); white-space: nowrap; }
.xw7k2-logo-badge svg { width: 16px; height: 16px; }
.xw7k2-footer-bottom { padding: 18px 0; text-align: center; }
.xw7k2-footer-bottom p { font-size: 0.78rem; color: var(--c-text-muted); line-height: 1.7; }
.xw7k2-footer-links { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-bottom: 12px; }
.xw7k2-footer-links a { font-size: 0.8rem; color: var(--c-text-muted); }
.xw7k2-footer-links a:hover { color: var(--c-accent); }
.xw7k2-age-badge { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: rgba(220,60,60,0.15); border: 2px solid rgba(220,60,60,0.4); border-radius: 50%; color: #e05555; font-weight: 800; font-size: 0.72rem; }

/* ========== STICKY WIDGET ========== */
.xw7k2-widget { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: linear-gradient(90deg, #020C0D 0%, #040f10 100%); border-top: 2px solid var(--c-accent); padding: 12px 0; box-shadow: 0 -4px 24px rgba(5,158,93,0.2); }
.xw7k2-widget-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.xw7k2-widget-text { display: flex; flex-direction: column; }
.xw7k2-widget-text strong { color: var(--c-gold); font-size: 0.95rem; font-family: var(--font-head); letter-spacing: 0.04em; }
.xw7k2-widget-text small { color: var(--c-text-muted); font-size: 0.75rem; }
.xw7k2-widget-close { background: none; border: none; color: var(--c-text-muted); cursor: pointer; font-size: 1.2rem; padding: 4px; flex-shrink: 0; }
.xw7k2-widget-close:hover { color: var(--c-text); }
body.xw7k2-widget-open { padding-bottom: 72px; }

/* ========== BONUS CARD ========== */
.xw7k2-bonus-card { background: linear-gradient(135deg, #031210 0%, #040f0a 100%); border: 1px solid rgba(5,158,93,0.35); border-radius: var(--radius-lg); padding: 28px; display: flex; align-items: center; gap: 20px; margin-bottom: 32px; }
.xw7k2-bonus-icon { width: 64px; height: 64px; background: rgba(5,158,93,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.xw7k2-bonus-icon svg { width: 32px; height: 32px; color: var(--c-accent); }
.xw7k2-bonus-body strong { display: block; font-family: var(--font-head); font-size: 1.35rem; color: var(--c-gold); margin-bottom: 4px; }
.xw7k2-bonus-body p { font-size: 0.88rem; color: var(--c-text-muted); margin-bottom: 12px; }

/* ========== INFO PAGE ========== */
.xw7k2-info-page { padding: 40px 0 60px; }
.xw7k2-info-page h1 { font-family: var(--font-head); font-size: 2rem; color: #fff; margin-bottom: 20px; }
.xw7k2-info-page h2 { font-family: var(--font-head); font-size: 1.35rem; color: var(--c-accent); margin: 24px 0 10px; }
.xw7k2-info-page p { color: var(--c-text); margin-bottom: 14px; line-height: 1.7; font-size: 0.96rem; }
.xw7k2-info-page ul { margin: 0 0 16px 22px; color: var(--c-text); font-size: 0.95rem; }
.xw7k2-info-page li { margin-bottom: 6px; }
.xw7k2-info-page a { color: var(--c-accent); text-decoration: underline; }

/* ========== UTILITIES ========== */
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.text-muted { color: var(--c-text-muted); }
.text-accent { color: var(--c-accent); }
.text-gold { color: var(--c-gold); }
.text-sm { font-size: 0.85rem; }
.text-center { text-align: center; }
.overflow-x { overflow-x: auto; }

/* ========== UNUSED STYLES (uniqueness) ========== */
.qr9x2-placeholder { display: none; visibility: hidden; }
.wp-block-group { position: relative; }
.wp-block-columns { display: flex; flex-wrap: wrap; }
.entry-content { line-height: inherit; }
.elementor-section { width: 100%; }
.elementor-widget-container { display: flex; flex-direction: column; }
.yoast-breadcrumb { font-size: 0.8rem; }
.site-header-wrapper { display: contents; }
.u9p3k-hidden { opacity: 0; pointer-events: none; height: 0; overflow: hidden; }
.m7r4t-spacer { display: block; width: 100%; }
.k2n9v-divider { border: none; }
.elementor-widget-wrap { display: flex; }
.page-template-default { background: transparent; }
.wp-caption { max-width: 100%; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; }

/* ========== SCROLL / ANIMATION ========== */
.xw7k2-fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.xw7k2-fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .xw7k2-games-grid { grid-template-columns: repeat(3, 1fr); }
  .xw7k2-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .xw7k2-app-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .xw7k2-nav { display: none; }
  .xw7k2-burger { display: flex; }
  .xw7k2-online { display: none; }
  .xw7k2-hdr-right > a.btn { display: none; }
  .xw7k2-mobile-nav-actions { display: flex; gap: 10px; margin-top: 14px; }
  .xw7k2-mobile-nav-actions .btn { flex: 1; text-align: center; }
  .xw7k2-games-grid { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
  .xw7k2-game-card { min-width: 150px; scroll-snap-align: start; }
  .xw7k2-proscons { grid-template-columns: 1fr; }
  .xw7k2-footer-grid { grid-template-columns: 1fr; }
  .xw7k2-hero-content { padding: 40px 0; }
  .xw7k2-author { flex-direction: column; }
  .xw7k2-toc-grid { grid-template-columns: 1fr 1fr; }
  .xw7k2-widget-inner { flex-direction: column; gap: 10px; text-align: center; }
  .xw7k2-bonus-card { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .xw7k2-toc-grid { grid-template-columns: 1fr; }
  .xw7k2-reel { width: 68px; height: 85px; font-size: 2.5rem; }
  .xw7k2-hero h1 { font-size: 1.8rem; }
  .xw7k2-review { padding: 20px 18px; }
  .xw7k2-hdr-right .btn { padding: 9px 14px; font-size: 0.82rem; }
}
