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

:root {
  --bg: #0d1520;
  --bg2: #162030;
  --bg3: #1e2d40;
  --bg4: #243448;
  --gold: #f0a500;
  --gold-d: #d99000;
  --gold-l: #fbc94e;
  --blue: #3eb8f0;
  --blue-d: #0d8fcc;
  --text: #dce8f0;
  --text2: #8aa8c0;
  --text3: #5c7d96;
  --border: #243448;
  --white: #ffffff;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --sh-sm: 0 2px 10px rgba(0,0,0,.35);
  --sh-md: 0 4px 24px rgba(0,0,0,.45);
  --sh-lg: 0 8px 40px rgba(0,0,0,.55);
  --tr: .28s ease;
  --fh: 'Exo 2', system-ui, sans-serif;
  --fb: 'Inter', system-ui, sans-serif;
  --cw: 1200px;
  --hh: 72px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body { font-family: var(--fb); background: var(--bg); color: var(--text); line-height: 1.72; font-size: 16px; overflow-x: hidden; }

img { max-width: 100%; height: auto; display: block; background: var(--bg3); }

a { color: var(--gold); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--gold-l); }
a:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--fb); }

h1, h2, h3, h4, h5, h6 { font-family: var(--fh); font-weight: 700; line-height: 1.2; color: var(--white); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }
h6 { font-size: .875rem; }

p { color: var(--text); margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.container { max-width: var(--cw); margin: 0 auto; padding: 0 20px; }

.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 110px 0; }

.bg2 { background: var(--bg2); }
.bg3 { background: var(--bg3); }
.text-center { text-align: center; }
.text-gold { color: var(--gold) !important; }
.text-blue { color: var(--blue) !important; }
.text-muted { color: var(--text2) !important; }
.text-white { color: var(--white) !important; }
.fw-bold { font-weight: 700; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 16px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 36px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-2 { gap: 16px; }
.flex-wrap { flex-wrap: wrap; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  font-family: var(--fh);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title { color: var(--white); margin-bottom: 18px; }
.section-title span { color: var(--gold); }
.section-desc { color: var(--text2); max-width: 640px; font-size: 1.05rem; }
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-head.center .section-desc { margin: 0 auto; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--fh);
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--r-md);
  transition: all var(--tr);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: .5px;
  border: 2px solid transparent;
}
.btn-primary { background: var(--gold); color: #0d1520; border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-d); color: #0d1520; border-color: var(--gold-d); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(240,165,0,.4); }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: #0d1520; transform: translateY(-2px); }
.btn-blue { background: var(--blue); color: #0d1520; border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-d); color: var(--white); border-color: var(--blue-d); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.06); color: var(--white); border-color: rgba(255,255,255,.15); }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: var(--white); }
.btn-sm { padding: 9px 20px; font-size: .85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  font-size: .72rem;
  font-weight: 600;
  font-family: var(--fh);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid transparent;
}
.badge-gold { background: rgba(240,165,0,.15); color: var(--gold); border-color: rgba(240,165,0,.3); }
.badge-blue { background: rgba(62,184,240,.12); color: var(--blue); border-color: rgba(62,184,240,.25); }
.badge-green { background: rgba(76,175,80,.12); color: #6fcf7c; border-color: rgba(76,175,80,.25); }

.star-rating { display: inline-flex; gap: 3px; color: var(--gold); font-size: .9rem; }

.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  background: var(--bg4);
  color: var(--text2);
  font-size: .78rem;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: all var(--tr);
  text-decoration: none;
}
.tag:hover { background: var(--gold); color: #0d1520; border-color: var(--gold); }

#site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--hh);
  background: rgba(13,21,32,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--tr);
}
#site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.6); }

.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--hh); }

.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.site-logo img { width: 160px; height: 44px; object-fit: contain; background: transparent; }
.site-logo:hover { opacity: .85; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 15px;
  color: var(--text);
  font-family: var(--fh);
  font-weight: 500;
  font-size: .9rem;
  border-radius: var(--r-sm);
  transition: all var(--tr);
  text-decoration: none;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); background: rgba(240,165,0,.08); }
.main-nav a.active { font-weight: 600; }

.nav-cta { display: flex; align-items: center; gap: 10px; margin-left: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--r-sm);
  background: transparent;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: all var(--tr);
}
.hamburger:hover { background: var(--bg3); border-color: var(--gold); }
.hamburger:hover span { background: var(--gold); }
.hamburger span { display: block; width: 100%; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--tr); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--hh) 0 0 0;
  background: rgba(13,21,32,.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  padding: 20px;
  gap: 4px;
  overflow-y: auto;
  opacity: 0;
  transition: opacity var(--tr);
}
.mobile-nav.open { display: flex; opacity: 1; }
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: var(--text);
  font-family: var(--fh);
  font-weight: 500;
  font-size: 1rem;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  text-decoration: none;
  transition: all var(--tr);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); background: rgba(240,165,0,.08); border-color: rgba(240,165,0,.2); }
.mobile-cta { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.mobile-cta .btn { justify-content: center; }

.breadcrumb-bar { background: var(--bg2); border-bottom: 1px solid var(--border); padding: 12px 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--text3); flex-wrap: wrap; }
.breadcrumb a { color: var(--text2); transition: color var(--tr); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--text3); }
.breadcrumb .current { color: var(--gold); font-weight: 500; }

.page-banner { background: var(--bg2); padding: 56px 0 44px; position: relative; overflow: hidden; }
.page-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(240,165,0,.05) 0%,transparent 60%); pointer-events: none; }
.page-banner::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: var(--border); }
.page-banner .section-label { margin-bottom: 10px; }
.page-banner h1 { margin-bottom: 12px; }
.page-banner .lead { color: var(--text2); font-size: 1.1rem; max-width: 640px; }

.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; background: var(--bg); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg,rgba(13,21,32,.93) 40%,rgba(13,21,32,.65) 100%); }
.hero-body { position: relative; z-index: 1; padding: 120px 0 80px; width: 100%; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(240,165,0,.12);
  border: 1px solid rgba(240,165,0,.25);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  font-family: var(--fh);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero h1 { max-width: 720px; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-desc { max-width: 560px; color: var(--text2); font-size: 1.1rem; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 36px; margin-top: 56px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.1); flex-wrap: wrap; }
.hero-stat-num { font-family: var(--fh); font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.hero-stat-label { font-size: .82rem; color: var(--text2); text-transform: uppercase; letter-spacing: 1px; }

.quick-access { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 32px; margin-top: -40px; position: relative; z-index: 10; box-shadow: var(--sh-lg); }
.quick-access-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.quick-access-icon { width: 56px; height: 56px; background: rgba(240,165,0,.1); border: 1px solid rgba(240,165,0,.2); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.4rem; flex-shrink: 0; }
.quick-access-text { flex: 1; min-width: 200px; }
.quick-access-text h3 { font-size: 1.1rem; margin-bottom: 4px; }
.quick-access-text p { color: var(--text2); font-size: .9rem; margin: 0; }
.quick-access-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: all var(--tr); display: flex; flex-direction: column; }
.card:hover { border-color: rgba(240,165,0,.35); transform: translateY(-4px); box-shadow: var(--sh-lg); }
.card-img { position: relative; overflow: hidden; aspect-ratio: 16/10; background: var(--bg3); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.card-tag { font-size: .72rem; font-weight: 600; font-family: var(--fh); letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.card-title { font-size: 1.1rem; margin-bottom: 10px; color: var(--white); font-family: var(--fh); font-weight: 700; line-height: 1.3; }
.card-title a { color: var(--white); transition: color var(--tr); }
.card-title a:hover { color: var(--gold); }
.card-desc { color: var(--text2); font-size: .9rem; margin-bottom: 16px; flex: 1; }
.card-meta { display: flex; align-items: center; gap: 14px; font-size: .78rem; color: var(--text3); margin-top: auto; }
.card-meta i { color: var(--gold); }
.card-footer { padding: 14px 22px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }

.game-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: all var(--tr); display: flex; flex-direction: column; }
.game-card:hover { border-color: rgba(240,165,0,.4); transform: translateY(-5px); box-shadow: var(--sh-lg); }
.game-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg3); }
.game-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.game-card:hover .game-card-img img { transform: scale(1.08); }
.game-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(13,21,32,.9) 0%,transparent 60%); display: flex; align-items: flex-end; padding: 14px; }
.game-card-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.game-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.game-card-cat { font-size: .7rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; font-family: var(--fh); display: block; }
.game-card-title { font-size: 1.15rem; margin-bottom: 10px; color: var(--white); }
.game-card-desc { color: var(--text2); font-size: .88rem; margin-bottom: 16px; flex: 1; }
.game-card-stats { display: flex; gap: 14px; font-size: .78rem; color: var(--text3); padding-top: 14px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.game-card-stats span { display: flex; align-items: center; gap: 5px; }
.game-card-stats i { color: var(--blue); }

.review-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; transition: all var(--tr); }
.review-card:hover { border-color: rgba(240,165,0,.3); transform: translateY(-3px); box-shadow: var(--sh-md); }
.review-card-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.review-avatar { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid var(--border); background: var(--bg3); }
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-user { flex: 1; min-width: 100px; }
.review-name { font-weight: 600; color: var(--white); font-size: .95rem; font-family: var(--fh); margin-bottom: 2px; display: block; }
.review-handle { font-size: .78rem; color: var(--text3); }
.review-platform { display: inline-flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 600; padding: 5px 10px; border-radius: 100px; flex-shrink: 0; border: 1px solid transparent; }
.platform-facebook { background: rgba(24,119,242,.15); color: #4d9cf7; border-color: rgba(24,119,242,.25); }
.platform-instagram { background: rgba(225,48,108,.12); color: #e8649a; border-color: rgba(225,48,108,.2); }
.platform-google { background: rgba(66,133,244,.12); color: #7baaf7; border-color: rgba(66,133,244,.2); }
.platform-forum { background: rgba(76,175,80,.1); color: #6fcf7c; border-color: rgba(76,175,80,.2); }
.review-stars { margin-bottom: 12px; }
.review-text { color: var(--text2); font-size: .9rem; line-height: 1.65; position: relative; padding-left: 16px; }
.review-text::before { content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 3px; background: var(--gold); border-radius: 2px; opacity: .5; }
.review-footer { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; font-size: .78rem; color: var(--text3); }
.review-likes { display: flex; align-items: center; gap: 5px; }
.review-likes i { color: var(--gold); }

.stats-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 40px 24px; text-align: center; border-right: 1px solid var(--border); transition: background var(--tr); }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(240,165,0,.04); }
.stat-num { font-family: var(--fh); font-size: 2.6rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: .82rem; color: var(--text2); text-transform: uppercase; letter-spacing: 1.5px; }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-grid.reverse .feature-img { order: 2; }
.feature-grid.reverse .feature-content { order: 1; }
.feature-img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); position: relative; }
.feature-img img { width: 100%; height: 420px; object-fit: cover; }
.feature-img::before { content: ''; position: absolute; inset: 0; border: 1px solid rgba(240,165,0,.15); border-radius: var(--r-lg); z-index: 1; pointer-events: none; }
.feature-list { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; }
.feature-item-icon { width: 32px; height: 32px; border-radius: var(--r-sm); background: rgba(240,165,0,.12); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: .85rem; flex-shrink: 0; margin-top: 2px; }
.feature-item-text h5 { color: var(--white); font-size: .95rem; margin-bottom: 2px; }
.feature-item-text p { color: var(--text2); font-size: .85rem; margin: 0; }

.cta-section { background: linear-gradient(135deg,#162030 0%,#1a2a3a 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 70px 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -60px; right: -60px; width: 320px; height: 320px; background: radial-gradient(circle,rgba(240,165,0,.08) 0%,transparent 70%); pointer-events: none; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-content h2 { margin-bottom: 10px; }
.cta-content p { color: var(--text2); max-width: 520px; margin: 0; }
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; }

.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-tab { padding: 9px 20px; font-family: var(--fh); font-weight: 500; font-size: .88rem; background: var(--bg2); border: 1px solid var(--border); color: var(--text2); border-radius: 100px; cursor: pointer; transition: all var(--tr); text-decoration: none; display: inline-flex; align-items: center; gap: 7px; }
.filter-tab:hover, .filter-tab.active { background: var(--gold); border-color: var(--gold); color: #0d1520; }
.filter-tab .count { background: rgba(0,0,0,.15); padding: 1px 7px; border-radius: 100px; font-size: .72rem; }

.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.blog-grid { display: flex; flex-direction: column; gap: 28px; }

.blog-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: all var(--tr); }
.blog-card:hover { border-color: rgba(240,165,0,.35); transform: translateY(-4px); box-shadow: var(--sh-lg); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg3); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat { font-size: .7rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-family: var(--fh); display: block; }
.blog-card-title { font-size: 1.25rem; margin-bottom: 10px; line-height: 1.3; }
.blog-card-title a { color: var(--white); transition: color var(--tr); }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt { color: var(--text2); font-size: .9rem; margin-bottom: 20px; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 16px; font-size: .78rem; color: var(--text3); flex-wrap: wrap; }
.blog-card-meta i { color: var(--gold); }
.blog-card-meta span { display: flex; align-items: center; gap: 5px; }

.sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-widget { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; }
.sidebar-widget-title { font-size: 1rem; font-family: var(--fh); font-weight: 700; color: var(--white); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.sidebar-widget-title i { color: var(--gold); }
.sidebar-posts { display: flex; flex-direction: column; gap: 16px; }
.sidebar-post { display: flex; gap: 12px; align-items: flex-start; }
.sidebar-post-img { width: 64px; height: 64px; border-radius: var(--r-sm); overflow: hidden; flex-shrink: 0; background: var(--bg3); }
.sidebar-post-img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-post-title { font-size: .85rem; font-weight: 600; color: var(--white); line-height: 1.35; margin-bottom: 4px; font-family: var(--fh); display: block; }
.sidebar-post-title a { color: var(--white); }
.sidebar-post-title a:hover { color: var(--gold); }
.sidebar-post-date { font-size: .72rem; color: var(--text3); display: flex; align-items: center; gap: 5px; }
.sidebar-post-date i { color: var(--gold); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-cats { display: flex; flex-direction: column; gap: 4px; }
.sidebar-cat-item { display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; border-radius: var(--r-sm); color: var(--text2); font-size: .875rem; text-decoration: none; transition: all var(--tr); }
.sidebar-cat-item:hover { background: var(--bg3); color: var(--gold); }
.cat-count { background: var(--bg4); color: var(--text3); font-size: .72rem; padding: 2px 8px; border-radius: 100px; }

.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.article-header { margin-bottom: 32px; }
.article-header h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 16px; }
.article-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; font-size: .82rem; color: var(--text3); padding: 14px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.article-meta i { color: var(--gold); }
.article-meta span { display: flex; align-items: center; gap: 6px; }
.article-hero-img { border-radius: var(--r-lg); overflow: hidden; margin: 28px 0 36px; aspect-ratio: 16/9; }
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.article-body h2 { color: var(--white); font-size: clamp(1.2rem, 2.5vw, 1.7rem); margin: 36px 0 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.article-body h3 { color: var(--white); font-size: clamp(1rem, 2vw, 1.3rem); margin: 28px 0 12px; }
.article-body p { color: var(--text2); margin-bottom: 18px; line-height: 1.8; }
.article-body ul { margin: 12px 0 20px; color: var(--text2); }
.article-body ul li { padding: 6px 0 6px 20px; position: relative; font-size: .95rem; }
.article-body ul li::before { content: ''; position: absolute; left: 0; top: 14px; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.article-body strong { color: var(--white); font-weight: 600; }
.article-highlight { background: rgba(240,165,0,.06); border-left: 3px solid var(--gold); padding: 16px 20px; border-radius: 0 var(--r-sm) var(--r-sm) 0; margin: 24px 0; }
.article-highlight p { margin: 0; font-style: italic; color: var(--text); }
.article-tags { display: flex; align-items: center; gap: 8px; margin-top: 32px; flex-wrap: wrap; }
.article-tags-label { font-size: .8rem; color: var(--text3); font-family: var(--fh); font-weight: 600; }

.author-box { display: flex; gap: 20px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; margin-top: 40px; align-items: flex-start; }
.author-avatar { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid var(--gold); background: var(--bg3); }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info h4 { margin-bottom: 4px; font-size: 1rem; }
.author-role { font-size: .78rem; color: var(--gold); margin-bottom: 8px; font-family: var(--fh); font-weight: 600; display: block; }
.author-bio { font-size: .85rem; color: var(--text2); margin: 0; }

.review-stats-box { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px; display: flex; gap: 40px; align-items: center; margin-bottom: 40px; flex-wrap: wrap; }
.review-score { text-align: center; }
.review-score-num { font-family: var(--fh); font-size: 4rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.review-score-stars { margin-bottom: 6px; font-size: 1.2rem; }
.review-score-count { font-size: .82rem; color: var(--text2); }
.review-bars { flex: 1; min-width: 200px; }
.review-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: .82rem; color: var(--text2); }
.review-bar-label { width: 40px; flex-shrink: 0; text-align: right; font-size: .75rem; }
.review-bar-track { flex: 1; height: 6px; background: var(--bg4); border-radius: 6px; overflow: hidden; }
.review-bar-fill { height: 100%; background: var(--gold); border-radius: 6px; }
.review-bar-count { width: 28px; text-align: right; flex-shrink: 0; color: var(--text3); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; display: flex; gap: 16px; align-items: flex-start; transition: all var(--tr); }
.contact-info-card:hover { border-color: rgba(240,165,0,.35); transform: translateY(-2px); }
.contact-info-icon { width: 46px; height: 46px; background: rgba(240,165,0,.1); border: 1px solid rgba(240,165,0,.2); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.contact-info-label { font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text3); margin-bottom: 4px; font-family: var(--fh); font-weight: 600; display: block; }
.contact-info-value { font-weight: 600; color: var(--white); font-size: .95rem; }
.contact-info-value a { color: var(--gold); }
.contact-info-value a:hover { color: var(--gold-l); }
.map-embed { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--sh-md); }
.map-embed iframe { display: block; width: 100%; border: none; }

.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }
.legal-nav { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px; position: sticky; top: calc(var(--hh) + 20px); }
.legal-nav-title { font-size: .75rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text3); margin-bottom: 12px; font-family: var(--fh); font-weight: 600; display: block; }
.legal-nav a { display: block; padding: 8px 12px; font-size: .85rem; color: var(--text2); border-radius: var(--r-sm); transition: all var(--tr); margin-bottom: 2px; }
.legal-nav a:hover, .legal-nav a.active { background: rgba(240,165,0,.08); color: var(--gold); }
.legal-content h2 { font-size: 1.4rem; margin: 36px 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--text2); margin-bottom: 14px; line-height: 1.8; }
.legal-content ul { color: var(--text2); margin: 12px 0 20px; }
.legal-content ul li { padding: 5px 0 5px 18px; position: relative; font-size: .9rem; }
.legal-content ul li::before { content: ''; position: absolute; left: 0; top: 13px; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.legal-date { font-size: .82rem; color: var(--text3); margin-bottom: 28px; display: flex; align-items: center; gap: 6px; }
.legal-date i { color: var(--gold); }

.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 48px; }
.pagination a, .pagination span { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--r-sm); font-size: .9rem; font-family: var(--fh); font-weight: 500; background: var(--bg2); border: 1px solid var(--border); color: var(--text2); text-decoration: none; transition: all var(--tr); }
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .active { background: var(--gold); border-color: var(--gold); color: #0d1520; font-weight: 700; }
.pagination .dots { border: none; background: none; color: var(--text3); }

.error-page { min-height: calc(100vh - var(--hh) - 200px); display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 20px; }
.error-num { font-family: var(--fh); font-size: clamp(6rem, 20vw, 14rem); font-weight: 800; color: transparent; -webkit-text-stroke: 2px rgba(240,165,0,.2); line-height: 1; margin-bottom: 24px; display: block; }
.error-title { font-size: clamp(1.4rem, 3vw, 2.2rem); margin-bottom: 16px; }
.error-desc { color: var(--text2); max-width: 440px; margin: 0 auto 32px; }
.error-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

#site-footer { background: var(--bg2); border-top: 1px solid var(--border); padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { display: block; margin-bottom: 16px; }
.footer-logo img { width: 150px; height: 42px; object-fit: contain; background: transparent; }
.footer-desc { color: var(--text2); font-size: .875rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r-sm); color: var(--text2); font-size: .9rem; text-decoration: none; transition: all var(--tr); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #0d1520; transform: translateY(-2px); }
.footer-col-title { font-family: var(--fh); font-weight: 700; font-size: .875rem; color: var(--white); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; display: block; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text2); font-size: .875rem; text-decoration: none; transition: color var(--tr); display: flex; align-items: center; gap: 7px; }
.footer-links a:hover { color: var(--gold); }
.footer-links a i { color: var(--gold); font-size: .7rem; width: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .875rem; color: var(--text2); }
.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; width: 16px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: .8rem; color: var(--text3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .8rem; color: var(--text3); text-decoration: none; transition: color var(--tr); }
.footer-bottom-links a:hover { color: var(--gold); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; text-align: center; transition: all var(--tr); }
.team-card:hover { border-color: rgba(240,165,0,.35); transform: translateY(-4px); box-shadow: var(--sh-md); }
.team-avatar { width: 96px; height: 96px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; border: 3px solid var(--gold); background: var(--bg3); }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 1.1rem; margin-bottom: 4px; }
.team-role { font-size: .78rem; color: var(--gold); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; font-family: var(--fh); font-weight: 600; display: block; }
.team-bio { font-size: .85rem; color: var(--text2); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; transition: all var(--tr); }
.value-card:hover { border-color: rgba(240,165,0,.3); transform: translateY(-3px); }
.value-icon { width: 56px; height: 56px; background: rgba(240,165,0,.1); border: 1px solid rgba(240,165,0,.2); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.4rem; margin-bottom: 18px; }
.value-card h4 { margin-bottom: 10px; }
.value-card p { color: var(--text2); font-size: .875rem; margin: 0; }

.info-box { background: rgba(62,184,240,.06); border: 1px solid rgba(62,184,240,.2); border-radius: var(--r-md); padding: 16px 20px; margin: 20px 0; }
.info-box p { margin: 0; font-size: .9rem; color: var(--blue); }
.info-box i { margin-right: 8px; }

.games-filter-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.step-list { display: flex; flex-direction: column; gap: 0; }
.step-item { display: flex; gap: 20px; position: relative; padding-bottom: 32px; }
.step-item:last-child { padding-bottom: 0; }
.step-item:last-child .step-line { display: none; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: rgba(240,165,0,.12); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--fh); font-weight: 800; color: var(--gold); font-size: 1rem; flex-shrink: 0; position: relative; z-index: 1; }
.step-line { position: absolute; left: 21px; top: 44px; bottom: 0; width: 2px; background: var(--border); }
.step-content { padding-top: 8px; }
.step-content h4 { margin-bottom: 6px; color: var(--white); }
.step-content p { color: var(--text2); font-size: .9rem; margin: 0; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.anim-1 { animation: fadeInUp .5s ease both; }
.anim-2 { animation: fadeInUp .5s .12s ease both; }
.anim-3 { animation: fadeInUp .5s .24s ease both; }

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .games-filter-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  :root { --hh: 64px; }
  .section { padding: 60px 0; }
  .section-lg { padding: 80px 0; }
  .hero { min-height: 75vh; }
  .hero-body { padding: 90px 0 60px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-bottom: none; }
  .stat-item:last-child { border-bottom: none; }
  .feature-grid { grid-template-columns: 1fr; gap: 36px; }
  .feature-grid.reverse .feature-img { order: 0; }
  .feature-grid.reverse .feature-content { order: 0; }
  .feature-img img { height: 300px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-content p { max-width: 100%; }
  .blog-layout { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .main-nav { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .section-lg { padding: 60px 0; }
  .hero h1 { font-size: 1.9rem; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 1.6rem; }
  .hero-actions { flex-direction: column; }
  .grid-2, .grid-3, .grid-4, .games-filter-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-access-inner { flex-direction: column; text-align: center; }
  .quick-access-actions { justify-content: center; }
  .review-stats-box { flex-direction: column; text-align: center; }
  .section-head { margin-bottom: 36px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .error-num { font-size: 6rem; }
  .review-card-head { flex-wrap: wrap; }
  .page-banner { padding: 40px 0 32px; }
  .stat-item { padding: 28px 16px; }
  .stat-num { font-size: 2rem; }
  .author-box { flex-direction: column; }
}
