:root {
  --bg-base: #F8FAFC; --bg-surface: #FFFFFF; --bg-elevated: #F1F5F9; --bg-hover: #EEF2FF;
  --bg-border: #E2E8F0; --bg-border-strong: #CBD5E1;
  --primary: #7C3AED; --primary-hover: #6D28D9; --primary-light: #8B5CF6;
  --primary-pale: #EDE9FE; --primary-glow: rgba(124,58,237,0.15);
  --accent: #0EA5E9; --accent-pale: #E0F2FE;
  --gold: #F59E0B; --gold-pale: #FEF3C7;
  --green: #10B981; --green-pale: #D1FAE5;
  --red: #EF4444; --red-pale: #FEE2E2;
  --pink: #EC4899; --pink-pale: #FCE7F3;
  --text-primary: #0F172A; --text-secondary: #475569; --text-muted: #94A3B8;
  --grad-primary: linear-gradient(135deg,#7C3AED,#5B21B6);
  --grad-accent: linear-gradient(135deg,#0EA5E9,#0284C7);
  --grad-hero: linear-gradient(135deg,#EDE9FE 0%,#E0F2FE 50%,#F8FAFC 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 8px 32px rgba(124,58,237,0.15);
  --radius-sm: 6px; --radius-md: 10px; --radius-lg: 16px; --radius-xl: 24px; --radius-full: 9999px;
  --font-heading: 'Orbitron', sans-serif; --font-sub: 'Nunito', sans-serif; --font-body: 'Inter', sans-serif;
  --sidebar-width: 240px;
}

@media (max-width: 900px) {
  :root { --sidebar-width: 0px; }
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

.ad-strip, .ad-box, .ad-h {
  border: 1.5px dashed var(--bg-border-strong);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
}
.ad-strip-h, .ad-h { height: 90px; margin-bottom: 32px; }
.ad-strip-sq { height: 250px; margin-bottom: 32px; }
.ad-box { flex-direction: column; gap: 4px; border-radius: var(--radius-lg); border: 2px dashed var(--bg-border-strong); }
.ad-lbl { font-size: 10px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }

@keyframes ping { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.7); } }
.ping-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: ping 1.5s infinite; display: inline-block; }
.dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: ping 1.5s infinite; display: inline-block; }

.badge {
  display: inline-flex; align-items: center; gap: 3px; padding: 3px 9px; border-radius: var(--radius-full);
  font-family: var(--font-sub); font-size: 10px; font-weight: 800; text-transform: uppercase;
}
.badge-hot { background: var(--red-pale); color: var(--red); }
.badge-new { background: var(--green-pale); color: var(--green); }
.badge-pick { background: var(--primary-pale); color: var(--primary); }
.badge-top { background: var(--gold-pale); color: var(--gold); }
.badge-trend { background: var(--gold-pale); color: #92400e; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px;
  background: var(--grad-primary); color: #fff; border-radius: var(--radius-full);
  font-family: var(--font-sub); font-size: 14px; font-weight: 800; transition: all .2s;
  box-shadow: 0 4px 14px rgba(124,58,237,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(124,58,237,.4); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; background: #fff;
  color: var(--primary); border: 1.5px solid var(--primary); border-radius: var(--radius-full);
  font-family: var(--font-sub); font-size: 14px; font-weight: 800; transition: all .2s;
}
.btn-outline:hover { background: var(--primary-pale); }

.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--bg-elevated); border-radius: var(--radius-md); overflow: hidden; border: 1.5px solid var(--bg-border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; width: 100%; text-align: left;
  padding: 13px 16px; cursor: pointer; font-family: var(--font-sub); font-size: 14px; font-weight: 800;
  color: var(--text-primary); gap: 14px; transition: background .15s; background: var(--bg-surface); border: none;
}
.faq-q:hover, .faq-item.open .faq-q { background: var(--primary-pale); color: var(--primary); }
.faq-ch { font-size: 11px; color: var(--text-muted); transition: transform .2s; }
.faq-item.open .faq-ch { transform: rotate(180deg); color: var(--primary); }
.faq-a { display: none; padding: 12px 16px 14px; font-size: 14px; color: var(--text-secondary); line-height: 1.7; border-top: 1px solid var(--bg-border); }
.faq-item.open .faq-a { display: block; }

.checklist { background: var(--bg-surface); border: 1.5px solid var(--bg-border); border-radius: var(--radius-lg); padding: 20px 24px; margin: 16px 0; }
.checklist-title { font-family: var(--font-sub); font-size: 14px; font-weight: 900; color: var(--text-primary); margin-bottom: 10px; text-transform: uppercase; }
.checklist-item { display: flex; gap: 8px; margin-bottom: 10px; font-size: 14px; color: var(--text-secondary); }
.checklist-item::before { content: '☐'; font-size: 16px; flex-shrink: 0; color: var(--primary); }
.site-wrapper { display: flex; flex-direction:column; min-height: 100vh; }

.sidebar {
  width: var(--sidebar-width); background: var(--bg-surface); border-right: 1px solid var(--bg-border);
  position: fixed; top: 0; left: 0; height: 100vh; overflow-y: auto; overflow-x: hidden; z-index: 200;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm); scrollbar-width: none;
}
.sidebar::-webkit-scrollbar { display: none; }
.sidebar-logo { padding: 20px 20px 16px; border-bottom: 1px solid var(--bg-border); }
.logo-wordmark {
  font-family: var(--font-heading); font-size: 17px; font-weight: 900; background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.logo-sub { font-size: 10px; color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }
.sidebar-search { padding: 12px 14px; border-bottom: 1px solid var(--bg-border); }
.s-wrap { position: relative; }
.s-search {
  width: 100%; background: var(--bg-elevated); border: 1px solid var(--bg-border); border-radius: var(--radius-full);
  padding: 7px 12px 7px 32px; font-size: 13px; outline: none; color: var(--text-primary); transition: border-color .15s;
}
.s-search:focus { border-color: var(--primary); }
.s-icon { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); font-size: 13px; opacity: .5; }
.nav-label { font-size: 10px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; padding: 14px 18px 4px; font-weight: 700; }
.nav-item {
  display: flex; align-items: center; gap: 9px; padding: 8px 18px; color: var(--text-secondary);
  font-family: var(--font-sub); font-size: 14px; font-weight: 700; transition: all .15s;
  border-left: 3px solid transparent; cursor: pointer;
}
.nav-item:hover { color: var(--primary); background: var(--primary-pale); }
.nav-item.active { color: var(--primary); background: var(--primary-pale); border-left-color: var(--primary); }
.nav-badge { margin-left: auto; background: var(--red); color: #fff; font-size: 10px; font-weight: 800; padding: 2px 6px; border-radius: var(--radius-full); }
.sidebar-footer { margin-top: auto; padding: 14px 18px; border-top: 1px solid var(--bg-border); font-size: 11px; color: var(--text-muted); }
.sidebar-footer a { color: var(--text-muted); display: block; margin-bottom: 3px; }
.sidebar-footer a:hover { color: var(--primary); }

.main { margin-left: var(--sidebar-width); flex: 1; display: flex; flex-direction: column; min-width: 0; }

.topbar {
  height: 60px; background: var(--bg-surface); border-bottom: 1px solid var(--bg-border); display: flex;
  align-items: center; justify-content: space-between; padding: 0 24px; position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-sm); gap: 16px;
}
.topbar-bc { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.topbar-bc a { color: var(--text-muted); transition: color .15s; }
.topbar-bc a:hover { color: var(--primary); }
.topbar-search-wrap { position: relative; }
.topbar-search {
  background: var(--bg-elevated); border: 1px solid var(--bg-border); border-radius: var(--radius-full);
  padding: 8px 16px 8px 36px; color: var(--text-primary); font-size: 13px; outline: none; width: 240px; transition: all .2s;
}
.topbar-search:focus { border-color: var(--primary); width: 300px; box-shadow: 0 0 0 3px var(--primary-pale); }
.topbar-search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); font-size: 13px; color: var(--text-muted); }
.topbar-right { display: flex; align-items: center; gap: 10px; }
.t-btn {
  width: 36px; height: 36px; background: var(--bg-elevated); border: 1px solid var(--bg-border);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 15px;
  color: var(--text-secondary); cursor: pointer; transition: all .15s;
}
.t-btn:hover { background: var(--primary-pale); color: var(--primary); border-color: var(--primary); }

.mobile-header { display: none; }
.mobile-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; height: 62px; background: var(--bg-surface); border-top: 1px solid var(--bg-border); z-index: 300; box-shadow: 0 -4px 16px rgba(0,0,0,.06); }
.mobile-nav-inner { display: flex; height: 100%; }
.mn-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; color: var(--text-muted); font-size: 10px; font-family: var(--font-sub); font-weight: 700; text-transform: uppercase; cursor: pointer; }
.mn-item.active { color: var(--primary); }
.mn-icon { font-size: 20px; }

@media (max-width: 900px) {
  .sidebar { display: none; }
  .main { margin-left: 0; }
  .topbar { display: none; }
  .mobile-header {
    display: flex; height: 54px; background: var(--bg-surface); border-bottom: 1px solid var(--bg-border);
    align-items: center; justify-content: space-between; padding: 0 16px; position: sticky; top: 0; z-index: 200; box-shadow: var(--shadow-sm); gap: 10px;
  }
  .mobile-logo { font-family: var(--font-heading); font-size: 15px; font-weight: 900; background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; flex-shrink: 0; }
  .mobile-search { background: var(--bg-elevated); border: 1px solid var(--bg-border); border-radius: var(--radius-full); padding: 6px 14px; font-size: 13px; outline: none; width: 100%; min-width: 0; }
  .mobile-nav { display: block; }
}

.footer { background: var(--bg-surface); border-top: 1px solid var(--bg-border); padding: 44px 28px 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-brand { font-family: var(--font-heading); font-size: 19px; font-weight: 900; background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 8px; }
.footer-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.7; max-width: 240px; }
.footer-col-title { font-family: var(--font-sub); font-size: 13px; font-weight: 800; color: var(--text-primary); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .5px; }
.footer-links { display: flex; flex-direction: column; gap: 7px; }
.footer-link { font-size: 13px; color: var(--text-secondary); cursor: pointer; transition: color .15s; }
.footer-link:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--bg-border); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-legal { display: flex; gap: 14px; }
.footer-legal a { font-size: 12px; color: var(--text-muted); }
.footer-legal a:hover { color: var(--primary); }

@media (max-width: 900px) {
  .footer { padding-bottom: 76px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

.simple-footer { background: var(--bg-surface); border-top: 1px solid var(--bg-border); padding: 20px 26px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.simple-footer a { font-size: 12px; color: var(--text-muted); }
.simple-footer a.active-link { color: var(--primary); }
.simple-footer .copy { font-size: 12px; color: var(--text-muted); }
.page { padding: 24px 28px 80px; }
@media (max-width: 900px) { .page { padding: 16px 16px 76px; } }

.hero { background: var(--grad-hero); border: 1px solid var(--bg-border); border-radius: var(--radius-xl); margin-bottom: 36px; overflow: hidden; position: relative; }
.hero-inner { display: grid; grid-template-columns: 1fr 1.1fr; min-height: 380px; }
.hero-content { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--bg-border); border-radius: var(--radius-full); padding: 5px 14px; font-family: var(--font-sub); font-size: 12px; font-weight: 800; color: var(--primary); margin-bottom: 18px; width: fit-content; box-shadow: var(--shadow-sm); }
.hero-title { font-family: var(--font-heading); font-size: 40px; font-weight: 900; line-height: 1.1; margin-bottom: 14px; color: var(--text-primary); }
.hero-title span { background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; max-width: 400px; }
.hero-btns { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 28px; }
.h-stat-num { font-family: var(--font-heading); font-size: 20px; font-weight: 900; color: var(--primary); }
.h-stat-lbl { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.hero-games { padding: 24px 20px; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.hero-games-label { font-size: 11px; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.hero-game-card { background: #fff; border: 1px solid var(--bg-border); border-radius: var(--radius-lg); padding: 12px 14px; display: flex; align-items: center; gap: 12px; cursor: pointer; transition: all .2s; box-shadow: var(--shadow-sm); }
.hero-game-card:hover { border-color: var(--primary); box-shadow: var(--shadow-card-hover); transform: translateX(-3px); }
.hero-game-card.featured { border-color: var(--gold); background: var(--gold-pale); }
.hg-thumb { width: 64px; height: 46px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.hg-info { flex: 1; min-width: 0; }
.hg-title { font-family: var(--font-sub); font-size: 13px; font-weight: 800; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hg-meta { display: flex; gap: 8px; margin-top: 2px; font-size: 11px; color: var(--text-muted); }
.hg-players { color: var(--green); font-weight: 700; }
.play-mini { width: 30px; height: 30px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 11px; flex-shrink: 0; transition: all .15s; }
.hero-game-card:hover .play-mini { background: var(--primary-hover); transform: scale(1.1); }

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-games { display: none; }
  .hero-content { padding: 36px 32px; }
}
@media (max-width: 900px) { .hero-title { font-size: 28px; } }

.sec-hdr { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; gap: 12px; flex-wrap: wrap; }
.sec-title-wrap { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.sec-bar { width: 4px; height: 22px; background: var(--grad-primary); border-radius: 2px; }
.sec-title { font-family: var(--font-sub); font-size: 19px; font-weight: 900; color: var(--text-primary); }
.sec-sub { font-size: 12px; color: var(--text-muted); margin-left: 8px; }
.btn-see-all { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-sub); font-size: 13px; font-weight: 800; color: var(--primary); padding: 6px 14px; border: 1.5px solid var(--primary-pale); border-radius: var(--radius-full); transition: all .15s; background: var(--primary-pale); }
.btn-see-all:hover { background: var(--primary); color: #fff; }

.cat-pills { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.cat-pill { display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px; background: var(--bg-surface); border: 1.5px solid var(--bg-border); border-radius: var(--radius-full); font-family: var(--font-sub); font-size: 13px; font-weight: 700; color: var(--text-secondary); cursor: pointer; transition: all .15s; box-shadow: var(--shadow-sm); }
.cat-pill:hover { color: var(--primary); border-color: var(--primary); background: var(--primary-pale); }
.cat-pill.active { color: #fff; background: var(--primary); border-color: var(--primary); }

.game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); gap: 16px; margin-bottom: 36px; }
.game-grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1200px) { .game-grid-5 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .game-grid-5 { grid-template-columns: repeat(2, 1fr); } }

.game-card { background: var(--bg-surface); border: 1.5px solid var(--bg-border); border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; transition: all .2s; box-shadow: var(--shadow-card); display: block; position: relative; }
.game-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); border-color: var(--primary); }
.gc-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 40px; transition: transform .35s; }
.game-card:hover .gc-thumb { transform: scale(1.05); }
.play-ov { position: absolute; inset: 0; background: rgba(124,58,237,.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s; }
.game-card:hover .play-ov { opacity: 1; }
.play-circ { width: 48px; height: 48px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--primary); transition: transform .15s; }
.game-card:hover .play-circ { transform: scale(1.1); }
.gc-badge { position: absolute; top: 8px; left: 8px; z-index: 2; }
.gc-players { position: absolute; top: 8px; right: 8px; background: rgba(255,255,255,.9); border-radius: var(--radius-full); padding: 3px 7px; display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--green); font-weight: 700; box-shadow: var(--shadow-sm); }
.gc-body { padding: 11px 13px; }
.gc-title { font-family: var(--font-sub); font-weight: 800; font-size: 14px; color: var(--text-primary); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gc-meta { display: flex; align-items: center; justify-content: space-between; }
.gc-cat { font-size: 11px; color: var(--text-muted); }
.gc-rating { font-size: 12px; color: var(--gold); font-weight: 700; }

.h-scroll-wrap { overflow-x: auto; scrollbar-width: none; margin-bottom: 36px; }
.h-scroll-wrap::-webkit-scrollbar { display: none; }
.h-scroll { display: flex; gap: 14px; padding-bottom: 4px; }
.h-scroll .game-card { flex: 0 0 185px; }

.genre-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 36px; }
.genre-card { border-radius: var(--radius-lg); padding: 20px 18px; cursor: pointer; transition: all .2s; border: 1.5px solid transparent; box-shadow: var(--shadow-sm); }
.genre-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.genre-card.action { background: linear-gradient(135deg,#fce7f3,#fbcfe8); border-color: #f9a8d4; }
.genre-card.arcade { background: linear-gradient(135deg,#ede9fe,#ddd6fe); border-color: #c4b5fd; }
.genre-card.sports { background: linear-gradient(135deg,#dcfce7,#bbf7d0); border-color: #86efac; }
.genre-card.puzzle { background: linear-gradient(135deg,#fef3c7,#fde68a); border-color: #fcd34d; }
.genre-card.racing { background: linear-gradient(135deg,#e0f2fe,#bae6fd); border-color: #7dd3fc; }
.genre-card.casual { background: linear-gradient(135deg,#d1fae5,#a7f3d0); border-color: #6ee7b7; }
.genre-card.adventure { background: linear-gradient(135deg,#fee2e2,#fecaca); border-color: #fca5a5; }
.genre-card.shooting { background: linear-gradient(135deg,#fce7f3,#fbcfe8); border-color: #f9a8d4; }
.genre-icon { font-size: 34px; margin-bottom: 8px; }
.genre-name { font-family: var(--font-sub); font-size: 15px; font-weight: 900; color: var(--text-primary); }
.genre-count { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }
@media (max-width: 900px) { .genre-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .genre-grid { grid-template-columns: repeat(2, 1fr); } }

.trending-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 18px; margin-bottom: 36px; }
@media (max-width: 1024px) { .trending-grid { grid-template-columns: 1fr; } }
.trend-main { background: var(--bg-surface); border: 1.5px solid var(--bg-border); border-radius: var(--radius-xl); overflow: hidden; cursor: pointer; transition: all .2s; box-shadow: var(--shadow-card); display: block; }
.trend-main:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(245,158,11,.15); }
.trend-main-thumb { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 72px; position: relative; }
.trend-rank { position: absolute; top: 14px; left: 14px; font-family: var(--font-heading); font-size: 48px; font-weight: 900; color: rgba(0,0,0,.06); }
.trend-crown { position: absolute; top: 14px; right: 14px; background: var(--gold); color: #fff; border-radius: var(--radius-full); padding: 4px 12px; font-family: var(--font-sub); font-size: 12px; font-weight: 800; }
.trend-main-body { padding: 18px 20px; }
.trend-main-title { font-family: var(--font-sub); font-size: 19px; font-weight: 900; color: var(--text-primary); margin-bottom: 6px; }
.trend-main-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }
.trend-main-meta { display: flex; gap: 14px; font-size: 12px; color: var(--text-muted); flex-wrap: wrap; }
.trend-side { display: flex; flex-direction: column; gap: 10px; }
.trend-item { background: var(--bg-surface); border: 1.5px solid var(--bg-border); border-radius: var(--radius-lg); padding: 12px 14px; display: flex; align-items: center; gap: 10px; cursor: pointer; transition: all .15s; box-shadow: var(--shadow-card); }
.trend-item:hover { border-color: var(--primary); background: var(--primary-pale); }
.t-rank { font-family: var(--font-heading); font-size: 18px; font-weight: 900; color: var(--text-muted); width: 26px; flex-shrink: 0; }
.t-rank.gold { color: var(--gold); }
.t-thumb { width: 48px; height: 36px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.t-info { flex: 1; min-width: 0; }
.t-title { font-family: var(--font-sub); font-size: 13px; font-weight: 800; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.t-cat { font-size: 11px; color: var(--text-muted); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 36px; }
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: var(--bg-surface); border: 1.5px solid var(--bg-border); border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; transition: all .2s; box-shadow: var(--shadow-card); display: block; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: var(--primary); }
.blog-thumb { height: 150px; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-body { padding: 16px; }
.blog-tag { display: inline-flex; padding: 3px 10px; background: var(--primary-pale); border-radius: var(--radius-full); font-size: 11px; font-weight: 800; color: var(--primary); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px; }
.blog-title { font-family: var(--font-sub); font-size: 15px; font-weight: 800; color: var(--text-primary); line-height: 1.4; margin-bottom: 6px; }
.blog-excerpt { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 10px; }
.blog-meta { font-size: 12px; color: var(--text-muted); display: flex; justify-content: space-between; }

.newsletter-home { background: linear-gradient(135deg,var(--primary-pale),var(--accent-pale)); border: 1.5px solid #c4b5fd; border-radius: var(--radius-xl); padding: 44px; text-align: center; margin-bottom: 36px; }
.nl-badge { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid #c4b5fd; border-radius: var(--radius-full); padding: 5px 14px; font-family: var(--font-sub); font-size: 11px; font-weight: 800; color: var(--primary); margin-bottom: 14px; letter-spacing: 1px; text-transform: uppercase; }
.nl-title { font-family: var(--font-sub); font-size: 26px; font-weight: 900; color: var(--text-primary); margin-bottom: 8px; }
.nl-sub { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; }
.nl-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
@media (max-width: 600px) { .nl-form { flex-direction: column; } }
.nl-input { flex: 1; background: #fff; border: 1.5px solid var(--bg-border-strong); border-radius: var(--radius-full); padding: 11px 18px; color: var(--text-primary); font-size: 14px; outline: none; transition: border-color .15s; }
.nl-input:focus { border-color: var(--primary); }
.btn-sub { padding: 11px 22px; background: var(--grad-primary); color: #fff; border-radius: var(--radius-full); font-family: var(--font-sub); font-size: 14px; font-weight: 800; transition: all .2s; white-space: nowrap; box-shadow: 0 4px 12px rgba(124,58,237,.3); }
.btn-sub:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(124,58,237,.4); }
.nl-priv { font-size: 11px; color: var(--text-muted); margin-top: 10px; }
.nl-priv a { color: var(--primary); }
.cat-hero { background: var(--grad-primary); padding: 36px 26px 32px; position: relative; overflow: hidden; }
.cat-hero::before { content: '🎯'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 96px; opacity: .12; }
.cat-hero-bc { font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 12px; }
.cat-hero-bc a { color: rgba(255,255,255,.65); }
.cat-hero h1 { font-family: var(--font-heading); font-size: 28px; font-weight: 900; color: #fff; margin-bottom: 8px; }
.cat-hero-desc { font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 16px; }
.cat-stats { display: flex; gap: 20px; flex-wrap: wrap; }
.cat-stat-n { font-family: var(--font-heading); font-size: 22px; font-weight: 900; color: #fff; }
.cat-stat-l { font-size: 11px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: 1px; }

.filter-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 16px 26px; background: var(--bg-surface); border-bottom: 1px solid var(--bg-border); position: sticky; top: 60px; z-index: 90; }
@media (max-width: 900px) { .filter-bar { top: 54px; padding: 14px 16px; } }
.filter-pills { display: flex; gap: 7px; flex-wrap: wrap; }
.pill { padding: 6px 14px; border: 1.5px solid var(--bg-border); border-radius: var(--radius-full); font-family: var(--font-sub); font-size: 13px; font-weight: 700; color: var(--text-secondary); cursor: pointer; transition: all .15s; background: var(--bg-surface); }
.pill:hover { color: var(--primary); border-color: var(--primary); background: var(--primary-pale); }
.pill.active { color: var(--primary); border-color: var(--primary); background: var(--primary-pale); }
.filter-right { display: flex; align-items: center; gap: 10px; }
.sort-select { padding: 6px 12px; background: var(--bg-surface); border: 1.5px solid var(--bg-border); border-radius: var(--radius-md); font-family: var(--font-sub); font-size: 13px; font-weight: 700; color: var(--text-secondary); cursor: pointer; outline: none; }

.content-layout { display: grid; grid-template-columns: 1fr 280px; gap: 0; align-items: start; }
@media (max-width: 1100px) { .content-layout { grid-template-columns: 1fr; } }
.grid-area { padding: 22px 26px; }
@media (max-width: 900px) { .grid-area { padding: 14px 16px; } }
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-bottom: 28px; }
@media (max-width: 900px) { .games-grid { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 11px; } }

.pagination { display: flex; align-items: center; gap: 6px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.page-btn { width: 36px; height: 36px; border: 1.5px solid var(--bg-border); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-family: var(--font-sub); font-size: 13px; font-weight: 700; color: var(--text-secondary); cursor: pointer; transition: all .15s; background: var(--bg-surface); }
.page-btn:hover { color: var(--primary); border-color: var(--primary); background: var(--primary-pale); }
.page-btn.active { background: var(--grad-primary); color: #fff; border-color: transparent; }

.seo-section { background: var(--bg-surface); border-top: 1px solid var(--bg-border); padding: 28px 26px; }
.seo-title { font-family: var(--font-sub); font-size: 20px; font-weight: 900; color: var(--text-primary); margin-bottom: 14px; }
.seo-body { font-size: 14px; color: var(--text-secondary); line-height: 1.8; max-width: 760px; }
.seo-body p { margin-bottom: 12px; }
.seo-body h2 { font-family: var(--font-sub); font-size: 16px; font-weight: 900; color: var(--text-primary); margin: 18px 0 8px; }
.seo-body a { color: var(--primary); }

.cat-sidebar { border-left: 1px solid var(--bg-border); padding: 22px 18px; display: flex; flex-direction: column; gap: 14px; background: var(--bg-surface); }
@media (max-width: 1100px) { .cat-sidebar { border-left: none; border-top: 1px solid var(--bg-border); gap: 14px; padding: 18px 26px; } }
.sw { background: var(--bg-elevated); border: 1.5px solid var(--bg-border); border-radius: var(--radius-lg); overflow: hidden; }
.sw-hdr { padding: 11px 14px; border-bottom: 1px solid var(--bg-border); font-family: var(--font-sub); font-size: 12px; font-weight: 900; color: var(--text-primary); text-transform: uppercase; letter-spacing: .5px; background: var(--bg-surface); }
.genre-list { display: flex; flex-direction: column; gap: 2px; padding: 8px; }
.genre-link { display: flex; align-items: center; justify-content: space-between; padding: 7px 10px; border-radius: var(--radius-md); font-family: var(--font-sub); font-size: 13px; font-weight: 700; color: var(--text-secondary); transition: all .15s; cursor: pointer; }
.genre-link:hover, .genre-link.active { color: var(--primary); background: var(--primary-pale); }
.gl-count { font-size: 11px; color: var(--text-muted); background: var(--bg-border); padding: 1px 7px; border-radius: var(--radius-full); }
.genre-link.active .gl-count { background: var(--primary-pale); color: var(--primary); }
.top-game { display: flex; align-items: center; gap: 8px; padding: 8px 12px; transition: background .15s; cursor: pointer; }
.top-game:hover { background: var(--primary-pale); }
.tg-rank { font-family: var(--font-heading); font-size: 12px; font-weight: 900; color: var(--text-muted); min-width: 18px; }
.tg-thumb { width: 44px; height: 34px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.tg-title { font-family: var(--font-sub); font-size: 13px; font-weight: 800; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tg-rate { font-size: 11px; color: var(--gold); font-weight: 700; }
.newsletter-sidebar { background: var(--primary-pale); border: 1.5px solid var(--primary); border-radius: var(--radius-lg); padding: 14px; }
.nsl-t { font-family: var(--font-sub); font-size: 14px; font-weight: 900; color: var(--primary); margin-bottom: 6px; }
.nsl-d { font-size: 12px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 10px; }
.nsl-input { width: 100%; padding: 8px 11px; border: 1.5px solid var(--primary); border-radius: var(--radius-md); font-size: 13px; background: #fff; color: var(--text-primary); outline: none; margin-bottom: 6px; }
.nsl-btn { width: 100%; padding: 8px; background: var(--grad-primary); color: #fff; border-radius: var(--radius-md); font-family: var(--font-sub); font-size: 13px; font-weight: 800; text-align: center; cursor: pointer; border: none; }
.blog-hero { background: var(--grad-primary); padding: 40px 26px; }
.blog-hero h1 { font-family: var(--font-heading); font-size: 26px; font-weight: 900; color: #fff; margin-bottom: 8px; }
.blog-hero p { font-size: 14px; color: rgba(255,255,255,.82); max-width: 620px; line-height: 1.7; }

.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 24px; padding: 26px; align-items: start; }
@media (max-width: 1100px) { .blog-layout { grid-template-columns: 1fr; } }
.cat-bar { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }

.featured-post { display: block; background: var(--bg-surface); border: 1.5px solid var(--bg-border); border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 24px; cursor: pointer; transition: all .2s; box-shadow: var(--shadow-card); }
.featured-post:hover { box-shadow: var(--shadow-card-hover); border-color: var(--primary); }
.fp-thumb { height: 220px; display: flex; align-items: center; justify-content: center; font-size: 80px; position: relative; background: var(--primary-pale); }
.fp-label { position: absolute; top: 14px; left: 14px; background: var(--gold); color: #fff; padding: 5px 14px; border-radius: var(--radius-full); font-family: var(--font-sub); font-size: 12px; font-weight: 800; }
.fp-body { padding: 24px; }
.fp-meta { display: flex; gap: 8px; font-size: 12px; color: var(--text-muted); margin-bottom: 10px; flex-wrap: wrap; }
.fp-cat { color: var(--primary); font-weight: 800; }
.fp-title { font-family: var(--font-sub); font-size: 22px; font-weight: 900; color: var(--text-primary); margin-bottom: 10px; line-height: 1.3; }
.fp-excerpt { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.fp-footer { display: flex; align-items: center; justify-content: space-between; }
.fp-author { display: flex; align-items: center; gap: 10px; }
.author-av { width: 34px; height: 34px; border-radius: 50%; background: var(--primary-pale); display: flex; align-items: center; justify-content: center; font-size: 15px; }
.author-name { font-family: var(--font-sub); font-size: 13px; font-weight: 800; color: var(--text-primary); }
.read-more { font-family: var(--font-sub); font-size: 13px; font-weight: 800; color: var(--primary); }

.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
@media (max-width: 1024px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .posts-grid { grid-template-columns: 1fr; } }
.post-card { display: block; background: var(--bg-surface); border: 1.5px solid var(--bg-border); border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; transition: all .2s; box-shadow: var(--shadow-card); }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); border-color: var(--primary); }
.pc-thumb { height: 130px; display: flex; align-items: center; justify-content: center; font-size: 42px; }
.pc-body { padding: 14px; }
.pc-cat { display: inline-block; font-size: 11px; font-weight: 800; color: var(--primary); text-transform: uppercase; margin-bottom: 6px; }
.pc-title { font-family: var(--font-sub); font-size: 14px; font-weight: 800; color: var(--text-primary); line-height: 1.4; margin-bottom: 6px; }
.pc-meta { font-size: 11px; color: var(--text-muted); }

.more-articles { background: var(--bg-surface); border: 1.5px solid var(--bg-border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.more-articles-hdr { padding: 14px 18px; border-bottom: 1px solid var(--bg-border); font-family: var(--font-sub); font-size: 13px; font-weight: 900; color: var(--text-primary); text-transform: uppercase; letter-spacing: .5px; }
.more-item { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-bottom: 1px solid var(--bg-border); transition: background .15s; cursor: pointer; }
.more-item:last-child { border-bottom: none; }
.more-item:hover { background: var(--primary-pale); }
.more-thumb { width: 60px; height: 44px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.more-title { font-family: var(--font-sub); font-size: 14px; font-weight: 800; color: var(--text-primary); margin-bottom: 3px; }
.more-meta { font-size: 12px; color: var(--text-muted); }

.blog-sidebar { display: flex; flex-direction: column; gap: 16px; }
.bsw { background: var(--bg-surface); border: 1.5px solid var(--bg-border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.bsw-hdr { padding: 12px 14px; border-bottom: 1px solid var(--bg-border); font-family: var(--font-sub); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .5px; color: var(--text-primary); }
.pop-post { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-bottom: 1px solid var(--bg-border); cursor: pointer; transition: background .15s; }
.pop-post:last-child { border-bottom: none; }
.pop-post:hover { background: var(--primary-pale); }
.pp-rank { font-family: var(--font-heading); font-size: 14px; font-weight: 900; color: var(--primary); min-width: 22px; }
.pp-title { font-family: var(--font-sub); font-size: 13px; font-weight: 800; color: var(--text-primary); margin-bottom: 2px; }
.pp-views { font-size: 11px; color: var(--text-muted); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 7px; padding: 12px; }

.article-layout { display: grid; grid-template-columns: 1fr 280px; gap: 24px; padding: 26px; align-items: start; }
@media (max-width: 1100px) { .article-layout { grid-template-columns: 1fr; padding: 16px; } }
.article-main { background: var(--bg-surface); border: 1.5px solid var(--bg-border); border-radius: var(--radius-xl); overflow: hidden; }
.article-hero { padding: 32px 32px 24px; border-bottom: 1px solid var(--bg-border); }
.ah-cat { display: inline-block; font-size: 12px; font-weight: 800; color: var(--primary); background: var(--primary-pale); padding: 4px 12px; border-radius: var(--radius-full); text-transform: uppercase; margin-bottom: 12px; }
.ah-title { font-family: var(--font-sub); font-size: 26px; font-weight: 900; color: var(--text-primary); line-height: 1.3; margin-bottom: 14px; }
.ah-meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; }
.author-chip { display: flex; align-items: center; gap: 6px; }
.article-body { padding: 28px 32px 36px; font-size: 15px; color: var(--text-secondary); line-height: 1.8; }
.article-body h2 { font-family: var(--font-sub); font-size: 19px; font-weight: 900; color: var(--text-primary); margin: 26px 0 12px; }
.article-body p { margin-bottom: 14px; }
.article-body strong { color: var(--text-primary); }
.article-body a { color: var(--primary); }

.ge { background: var(--bg-elevated); border-radius: var(--radius-lg); padding: 16px 18px; margin-bottom: 14px; }
.ge-h { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.ge-rank { font-family: var(--font-heading); font-size: 18px; font-weight: 900; color: var(--primary); min-width: 30px; }
.ge-emoji { font-size: 26px; }
.ge-title { font-family: var(--font-sub); font-weight: 900; color: var(--text-primary); font-size: 15px; }
.ge-genre { font-size: 12px; color: var(--text-muted); }
.ge-stars { margin-left: auto; font-size: 13px; color: var(--gold); font-weight: 700; }
.ge-cta, .cta-btn { display: inline-flex; margin-top: 6px; padding: 8px 18px; background: var(--grad-primary); color: #fff; border-radius: var(--radius-full); font-family: var(--font-sub); font-size: 13px; font-weight: 800; cursor: pointer; }
.pros { display: flex; gap: 10px; flex-wrap: wrap; font-size: 12px; color: var(--green); font-weight: 700; margin: 10px 0; }

.verdict-box, .cta-box { background: var(--primary-pale); border: 1.5px solid var(--primary); border-radius: var(--radius-lg); padding: 20px; margin: 24px 0; }
.verdict-box h3, .cta-box h3 { font-family: var(--font-sub); font-size: 16px; font-weight: 900; color: var(--primary); margin-bottom: 8px; }

.tip-card { background: var(--bg-elevated); border-radius: var(--radius-md); padding: 14px 16px; border-left: 3px solid var(--primary); margin-bottom: 12px; }
.tip-card h3 { font-family: var(--font-sub); font-size: 14px; font-weight: 800; color: var(--text-primary); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.tip-num { font-family: var(--font-heading); font-size: 12px; color: var(--primary); background: var(--primary-pale); width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.milestone { background: var(--bg-elevated); border-radius: var(--radius-md); padding: 12px 16px; margin-bottom: 8px; font-size: 14px; }

.asw { background: var(--bg-surface); border: 1.5px solid var(--bg-border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 14px; box-shadow: var(--shadow-card); }
.asw-hdr { padding: 10px 14px; border-bottom: 1px solid var(--bg-border); font-family: var(--font-sub); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .5px; color: var(--text-primary); }
.asw-item { display: flex; align-items: center; gap: 8px; padding: 7px; border-radius: 8px; cursor: pointer; transition: background .15s; }
.asw-item:hover { background: var(--primary-pale); }
.asw-emoji { width: 24px; height: 24px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.asw-name { font-family: var(--font-sub); font-size: 13px; font-weight: 800; color: var(--text-primary); }
.related-box { background: var(--bg-elevated); border: 1.5px solid var(--bg-border); border-radius: var(--radius-lg); padding: 14px; margin-bottom: 14px; }
.related-box-title { font-family: var(--font-sub); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .5px; color: var(--text-primary); margin-bottom: 10px; }
.related-link { display: block; padding: 8px; border-radius: 8px; border: 1.5px solid var(--bg-border); margin-bottom: 7px; cursor: pointer; transition: border-color .15s; }
.related-link:hover { border-color: var(--primary); }
.related-link:last-child { margin-bottom: 0; }
.related-link-title { font-size: 13px; font-weight: 700; color: var(--text-primary); line-height: 1.4; margin-bottom: 2px; }
.related-link-date { font-size: 11px; color: var(--text-muted); }
.legal-content { max-width: 800px; margin: 0 auto; padding: 40px 30px 80px; }
@media (max-width: 900px) { .legal-content { padding: 20px 16px 60px; } }
.page-hero { background: var(--grad-primary); border-radius: var(--radius-lg); padding: 32px 36px; margin-bottom: 36px; position: relative; overflow: hidden; }
.page-hero.privacy::before { content: '🔒'; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 72px; opacity: .12; }
.page-hero.terms::before { content: '📄'; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 72px; opacity: .12; }
.page-hero.dmca::before { content: '⚖️'; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 72px; opacity: .12; }
.page-hero h1 { font-family: var(--font-heading); font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 6px; }
.page-hero-meta { font-size: 13px; color: rgba(255,255,255,.7); }

.toc { background: var(--bg-surface); border: 1.5px solid var(--bg-border); border-radius: var(--radius-lg); padding: 18px 22px; margin-bottom: 32px; }
.toc-title { font-family: var(--font-sub); font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .5px; color: var(--text-primary); margin-bottom: 10px; }
.toc ol { margin-left: 18px; }
.toc li { margin-bottom: 6px; font-size: 14px; }
.toc a { color: var(--primary); }

.doc-section { margin-bottom: 32px; }
.doc-section h2 { font-family: var(--font-sub); font-size: 18px; font-weight: 900; color: var(--text-primary); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--bg-border); }
.doc-section h3 { font-family: var(--font-sub); font-size: 15px; font-weight: 800; color: var(--text-primary); margin: 16px 0 8px; }
.doc-section p { color: var(--text-secondary); margin-bottom: 12px; line-height: 1.8; }
.doc-section p:last-child { margin-bottom: 0; }
.doc-section ul, .doc-section ol { margin: 8px 0 12px 20px; color: var(--text-secondary); }
.doc-section li { margin-bottom: 6px; line-height: 1.7; }
.doc-section a { color: var(--primary); }
.warn-box { background: #FEE2E2; border-left: 4px solid #EF4444; border-radius: var(--radius-md); padding: 14px 18px; margin: 16px 0; }
.warn-box p { color: #991B1B; font-size: 14px; margin: 0; }
.info-box { background: var(--primary-pale); border-left: 4px solid var(--primary); border-radius: var(--radius-md); padding: 14px 18px; margin: 16px 0; }
.info-box p { color: var(--text-primary); font-size: 14px; margin: 0; }
.contact-dmca { background: var(--bg-elevated); border: 2px solid var(--bg-border); border-radius: var(--radius-lg); padding: 24px; margin-top: 20px; text-align: center; }
.contact-dmca h3 { font-family: var(--font-sub); font-size: 18px; font-weight: 900; color: var(--text-primary); margin-bottom: 8px; }
.contact-dmca p { font-size: 14px; color: var(--text-secondary); margin-bottom: 12px; }
.dmca-email { display: inline-block; padding: 10px 24px; background: var(--grad-primary); color: #fff; border-radius: 40px; font-family: var(--font-sub); font-size: 14px; font-weight: 800; box-shadow: 0 4px 14px rgba(124,58,237,.3); }

/* About */
.about-hero { background: var(--grad-primary); padding: 60px 30px; text-align: center; }
.about-hero-inner { max-width: 830px; margin: 0 auto; }
.about-hero h1 { font-family: var(--font-heading); font-size: 30px; font-weight: 900; color: #fff; margin-bottom: 14px; line-height: 1.2; }
.about-hero p { font-size: 15px; color: rgba(255,255,255,.85); margin-bottom: 24px; line-height: 1.7; }
.hero-cta { display: inline-flex; padding: 12px 26px; background: #fff; color: var(--primary); border-radius: var(--radius-full); font-family: var(--font-sub); font-size: 14px; font-weight: 800; }
.stats-bar { background: var(--bg-surface); border-bottom: 1px solid var(--bg-border); padding: 24px; }
.stats-inner { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-n { font-family: var(--font-heading); font-size: 24px; font-weight: 900; color: var(--primary); }
.stat-l { font-size: 12px; color: var(--text-muted); }
.about-content { max-width: 900px; margin: 0 auto; padding: 40px 30px 80px; }
.about-section { margin-bottom: 40px; }
.about-section h2 { font-family: var(--font-sub); font-size: 20px; font-weight: 900; color: var(--text-primary); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.about-section p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 12px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { background: var(--bg-surface); border: 1.5px solid var(--bg-border); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow-card); }
.value-icon { font-size: 28px; margin-bottom: 10px; }
.value-title { font-family: var(--font-sub); font-size: 15px; font-weight: 900; color: var(--text-primary); margin-bottom: 6px; }
.value-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.review-steps { display: flex; flex-direction: column; gap: 14px; margin-top: 14px; }
.review-step { display: flex; gap: 16px; }
.step-num { width: 34px; height: 34px; border-radius: 50%; background: var(--grad-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 900; flex-shrink: 0; }
.step-body h3 { font-family: var(--font-sub); font-size: 15px; font-weight: 800; color: var(--text-primary); margin-bottom: 4px; }
.step-body p { font-size: 13px; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 12px; }
@media (max-width: 700px) { .contact-cards { grid-template-columns: 1fr; } }
.contact-card { background: var(--bg-surface); border: 1.5px solid var(--bg-border); border-radius: var(--radius-lg); padding: 18px; text-align: center; box-shadow: var(--shadow-card); }
.contact-card .ci { font-size: 26px; margin-bottom: 8px; }
.contact-card h3 { font-family: var(--font-sub); font-size: 14px; font-weight: 800; color: var(--text-primary); margin-bottom: 6px; }
.contact-card a { color: var(--primary); font-size: 13px; }
.gp-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 24px;
}
.gp-genre-line {
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.gp-title-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.gp-title {
  font-family: var(--font-sub);
  font-size: 28px;
  font-weight: 900;
  color: var(--text-primary);
  flex: 1;
}
@media (max-width: 600px) {
  .gp-title {
    font-size: 20px;
  }
}
.gp-badge {
  padding: 5px 14px;
  background: var(--primary);
  color: #fff;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 800;
}
.gp-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.gp-stars {
  color: var(--gold);
  font-size: 14px;
}
.gp-rating-score {
  font-family: var(--font-sub);
  font-size: 16px;
  font-weight: 900;
  color: var(--gold);
}
.gp-rating-ct {
  font-size: 12px;
  color: var(--text-muted);
}
.gp-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--green);
  font-weight: 700;
}

.gp-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: start;
}
@media (max-width: 1100px) {
  .gp-layout {
    grid-template-columns: 1fr;
  }
}

.gp-player {
  background: linear-gradient(135deg, #1a0533, #0c0024);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  cursor: pointer;
}
.gp-player-content {
  text-align: center;
  line-height: 1;
}
.gp-player-emoji {
  font-size: 64px;
  margin-bottom: 12px;
}
.gp-player-title {
  font-family: var(--font-sub);
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
}
.gp-play-btn {
  padding: 12px 32px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 9999px;
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}
.gp-iframe-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  margin-top: 14px;
  max-width: 320px;
}

.gp-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--bg-border);
  margin-bottom: 20px;
  overflow-x: auto;
}
.gp-tab {
  padding: 10px 18px;
  border: none;
  background: none;
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  color: var(--text-secondary);
  white-space: nowrap;
}
.gp-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.gp-tab-panel p {
  margin-bottom: 12px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.gp-tab-panel strong {
  color: var(--text-primary);
}

.ctrl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 600px) {
  .ctrl-grid {
    grid-template-columns: 1fr;
  }
}
.ctrl-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: 9px 12px;
}
.key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 26px;
  background: var(--bg-surface);
  border: 1px solid var(--bg-border-strong);
  border-bottom: 3px solid var(--bg-border-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 800;
  color: var(--text-primary);
  padding: 0 7px;
}
.key-act {
  font-size: 13px;
  color: var(--text-secondary);
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tip {
  display: flex;
  gap: 10px;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: 12px;
  border-left: 3px solid var(--primary);
}
.tip-n {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 900;
  color: var(--primary);
  min-width: 22px;
}
.tip-t {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.tip-t strong {
  color: var(--text-primary);
}

.gp-similar-title {
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.gp-similar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
@media (max-width: 700px) {
  .gp-similar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gp-similar-card {
  text-align: center;
  text-decoration: none;
  display: block;
}
.gp-similar-card-inner {
  background: var(--bg-elevated);
  border-radius: 12px;
  padding: 18px 10px;
  border: 1.5px solid var(--bg-border);
  transition: all 0.2s;
}
.gp-similar-card:hover .gp-similar-card-inner {
  border-color: var(--primary);
}
.gp-similar-emoji {
  font-size: 28px;
  margin-bottom: 6px;
}
.gp-similar-name {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 800;
  color: var(--text-primary);
}

.gp-widget {
  background: var(--bg-surface);
  border: 1.5px solid var(--bg-border);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 16px;
}
.gp-widget-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.gp-widget-big {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-primary);
}
.gp-widget-count {
  font-size: 12px;
  color: var(--text-muted);
}
.gp-widget-title {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 700;
}
.gp-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 13px;
}
.gp-details-key {
  color: var(--text-muted);
}
.gp-details-val {
  color: var(--text-primary);
  font-weight: 600;
}

/* consent widget for the rewarded ad  */
.reward-consent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.reward-consent-box {
  width: 300px;
  max-width: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: #0a144e;
  color: #fff;
  border-radius: 20px;
  padding: 40px 24px;
  border: 2px solid #fff;
  text-align: center;
}

.reward-consent-icon {
  width: 90px;
  height: 90px;
}

.reward-consent-text {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}
.reward-consent-text span {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.85;
}

.reward-consent-widget {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.reward-consent-adlabel {
  align-self: flex-end;
  font-size: 11px;
  color: #ffdb00;
}

.reward-consent-btn {
  padding: 14px 30px;
  background-image: linear-gradient(#ffdb00, #ffdb00, #776c18 103%);
  border-radius: 50px;
  color: #255d9c;
  font-size: 18px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: 2px 4px 10px 2px rgba(0, 0, 0, 0.35);
}
.reward-consent-btn:disabled {
  opacity: 0.7;
  cursor: default;
}

.reward-consent-close {
  text-decoration: underline;
  color: #8592ff;
  cursor: pointer;
  font-size: 14px;
}

@media (max-width: 459px) {
  .reward-consent-box {
    width: 100%;
  }
}
.contact-form { display: flex; flex-direction: column; gap: 16px; max-width: 560px; }
.contact-field { display: flex; flex-direction: column; gap: 6px; }
.contact-field label { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.contact-field input,
.contact-field textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--bg-border);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  background: var(--bg-surface);
  color: var(--text-primary);
}
.contact-field input:focus,
.contact-field textarea:focus { border-color: var(--primary); }

.contact-error { font-size: 13px; color: var(--red); margin: 0; }
.contact-success { text-align: center; padding: 32px; background: var(--bg-elevated); border-radius: var(--radius-lg); }
.contact-success h3 { font-family: var(--font-sub); font-size: 18px; margin-bottom: 8px; }


.contact-company-box {
  background: var(--bg-elevated);
  border: 1.5px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin: 16px 0;
}
.contact-company-name { font-weight: 800; font-family: var(--font-sub); margin-bottom: 4px; }
.contact-company-line { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.contact-company-line a { color: var(--primary); }
.page-fill {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
}
.page-fill-grow {
  flex: 1;
}