/* ============================================================
   The Choicer Voicer — brand design system
   "Where your voice becomes the game."
   Dark stage + neon waveform identity.
   ============================================================ */

:root {
  --bg: #0d0a1e;
  --bg-2: #14102b;
  --surface: #1b1536;
  --surface-2: #241d47;
  --surface-3: #2d2457;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f0edfb;
  --text-soft: #c8c2e2;
  --muted: #9d96c0;
  --violet: #8b5cf6;
  --pink: #ec4899;
  --cyan: #22d3ee;
  --gold: #fbbf24;
  --green: #34d399;
  --grad: linear-gradient(120deg, #8b5cf6 0%, #ec4899 48%, #22d3ee 100%);
  --grad-soft: linear-gradient(120deg, rgba(139, 92, 246, 0.28), rgba(236, 72, 153, 0.22) 50%, rgba(34, 211, 238, 0.22));
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --glow-violet: 0 0 34px rgba(139, 92, 246, 0.35);
  --font-display: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(139, 92, 246, 0.18), transparent 60%),
    radial-gradient(900px 480px at -10% 18%, rgba(34, 211, 238, 0.10), transparent 55%),
    radial-gradient(1000px 600px at 50% 115%, rgba(236, 72, 153, 0.12), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

.container { width: min(1200px, 92vw); margin: 0 auto; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section { padding: 64px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 28px; }
.section-head h2 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 34px); font-weight: 700; letter-spacing: -0.02em; }
.section-head .sub { color: var(--muted); font-size: 15px; max-width: 560px; }
.section-head a.more { color: var(--cyan); font-weight: 600; font-size: 15px; white-space: nowrap; }
.section-head a.more:hover { text-decoration: underline; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13, 10, 30, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo-mark { width: 40px; height: 40px; border-radius: 13px; background: var(--grad); display: grid; place-items: center; box-shadow: var(--glow-violet); }
.logo-mark svg { width: 24px; height: 24px; }
.logo-name { font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; white-space: nowrap; }
.logo-name .dot { color: var(--cyan); }
.nav { display: flex; align-items: center; gap: 4px; }
.nav > a, .nav .has-sub > button {
  padding: 9px 13px; border-radius: 10px; font-weight: 600; font-size: 15px; color: var(--text-soft);
  transition: background 0.18s, color 0.18s;
}
.nav > a:hover, .nav .has-sub > button:hover { background: rgba(255,255,255,0.07); color: #fff; }
.nav .has-sub { position: relative; }
.nav .has-sub > button::after { content: "▾"; margin-left: 5px; font-size: 11px; opacity: 0.7; }
.nav .has-sub::before {
  content: ""; position: absolute; top: 100%; left: 0; width: 100%; height: 10px;
}
.nav .sub {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 220px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 8px; box-shadow: var(--shadow); display: none; z-index: 50;
}
.nav .has-sub:hover .sub, .nav .has-sub:focus-within .sub { display: block; }
.nav .sub a { display: block; padding: 9px 12px; border-radius: 9px; font-size: 14.5px; color: var(--text-soft); }
.nav .sub a:hover { background: rgba(139, 92, 246, 0.18); color: #fff; }
.header-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.search-box { display: flex; align-items: center; background: rgba(255,255,255,0.06); border: 1px solid var(--line); border-radius: 999px; padding: 0 6px 0 14px; height: 42px; width: 240px; transition: border-color 0.2s, width 0.25s; }
.search-box:focus-within { border-color: var(--violet); width: 280px; }
.search-box input { background: none; border: 0; outline: none; color: var(--text); flex: 1; font-size: 14.5px; }
.search-box button { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--grad); color: #fff; }
.search-box svg { width: 16px; height: 16px; }
.btn-menu { display: none; }
.mobile-menu { display: none; flex-direction: column; padding: 8px 0 16px; gap: 4px; border-top: 1px solid var(--line); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 70px 0 90px; }
.hero-single { padding: 20px 0 42px; text-align: center; }
.hero-single .eyebrow { margin-bottom: 12px; }
.hero-single h1 { font-family: var(--font-display); font-size: clamp(22px, 3vw, 36px); font-weight: 800; letter-spacing: -0.03em; margin: 0 auto 18px; max-width: 760px; line-height: 1.15; }
.hero-single .hero-player { max-width: 880px; margin: 0 auto; text-align: left; }
.hero-single .hero-cta { margin-top: 18px; justify-content: center; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, transparent, rgba(13,10,30,0.75)),
    repeating-linear-gradient(90deg, transparent 0 78px, rgba(255,255,255,0.025) 78px 79px),
    repeating-linear-gradient(0deg, transparent 0 78px, rgba(255,255,255,0.025) 78px 79px);
  -webkit-mask-image: radial-gradient(720px 420px at 30% 40%, #000, transparent 75%);
          mask-image: radial-gradient(720px 420px at 30% 40%, #000, transparent 75%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; border: 1px solid var(--line-strong); background: rgba(255,255,255,0.05); font-size: 13px; font-weight: 600; color: var(--text-soft); margin-bottom: 22px; }
.eyebrow .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(52,211,153,0.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(52,211,153,0); } 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); } }
.hero h1 { font-family: var(--font-display); font-size: clamp(36px, 5.4vw, 62px); line-height: 1.06; font-weight: 800; letter-spacing: -0.03em; }
.hero .lead { margin-top: 20px; font-size: 18px; color: var(--text-soft); max-width: 540px; }
.hero-cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 16px; transition: transform 0.18s, box-shadow 0.18s, filter 0.18s; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px rgba(139, 92, 246, 0.35); }
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 14px 38px rgba(236, 72, 153, 0.4); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--text); background: rgba(255,255,255,0.04); }
.btn-ghost:hover { background: rgba(255,255,255,0.09); transform: translateY(-2px); }
.btn .mic { width: 18px; height: 18px; }

/* soundwave animation */
.wave { display: flex; align-items: center; gap: 5px; height: 46px; margin-top: 34px; }
.wave i { width: 5px; border-radius: 99px; background: var(--grad); animation: wave 1.1s ease-in-out infinite; }
.wave i:nth-child(1) { height: 22%; animation-delay: 0s; }
.wave i:nth-child(2) { height: 68%; animation-delay: 0.12s; }
.wave i:nth-child(3) { height: 42%; animation-delay: 0.24s; }
.wave i:nth-child(4) { height: 88%; animation-delay: 0.36s; }
.wave i:nth-child(5) { height: 34%; animation-delay: 0.48s; }
.wave i:nth-child(6) { height: 74%; animation-delay: 0.6s; }
.wave i:nth-child(7) { height: 26%; animation-delay: 0.72s; }
@keyframes wave { 0%, 100% { transform: scaleY(0.55); } 50% { transform: scaleY(1); } }

/* featured player card */
.player-card { position: relative; border-radius: 24px; border: 1px solid var(--line-strong); background: linear-gradient(180deg, var(--surface-2), var(--surface)); box-shadow: var(--shadow); overflow: hidden; }
.player-card::before { content: ""; position: absolute; inset: -2px; border-radius: 26px; background: var(--grad); opacity: 0.35; filter: blur(22px); z-index: -1; }
.player-screen { position: relative; aspect-ratio: 16 / 10; }
.player-screen img { width: 100%; height: 100%; object-fit: cover; }
.player-screen.hidden { display: none; }
.player-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; background: rgba(10, 7, 24, 0.62); backdrop-filter: blur(3px); }
.player-overlay .play-label { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: 0.02em; }
.play-big { width: 78px; height: 78px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; box-shadow: 0 0 0 10px rgba(139,92,246,0.22), 0 0 60px rgba(236,72,153,0.55); transition: transform 0.2s; }
.play-big svg { width: 28px; height: 28px; fill: #fff; margin-left: 3px; }
.play-big:hover { transform: scale(1.08); }
.player-frame { display: none; position: relative; aspect-ratio: 16 / 10; }
.player-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.player-top { display: flex; justify-content: space-between; align-items: center; padding: 13px 18px; border-bottom: 1px solid var(--line); }
.player-top .views { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 14px; }
.player-top .views svg { width: 16px; height: 16px; }
.player-bottom { display: flex; justify-content: space-between; align-items: center; padding: 13px 18px; border-top: 1px solid var(--line); }
.player-bottom .tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag { padding: 5px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 600; border: 1px solid var(--line-strong); color: var(--text-soft); background: rgba(255,255,255,0.04); }
.tag:hover { border-color: var(--violet); color: #fff; }
.icon-btn { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; border: 1px solid var(--line-strong); background: rgba(255,255,255,0.05); color: var(--text-soft); }
.icon-btn:hover { background: rgba(139,92,246,0.2); color: #fff; }
.icon-btn svg { width: 17px; height: 17px; }
.exit-fullscreen { display: none; }

/* ---------- Stats strip ---------- */
.stats { border-block: 1px solid var(--line); background: rgba(255,255,255,0.02); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 26px 0; }
.stat { text-align: center; }
.stat b { display: block; font-family: var(--font-display); font-size: 28px; font-weight: 800; }
.stat span { color: var(--muted); font-size: 13.5px; }

/* ---------- Category chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line-strong); background: rgba(255,255,255,0.04); font-weight: 600; font-size: 14px; color: var(--text-soft); transition: all 0.18s; }
.chip:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(139,92,246,0.3); }
.chip.active { background: var(--grad); color: #fff; border-color: transparent; }

/* ---------- Game grid & cards ---------- */
.game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(178px, 1fr)); gap: 18px; }
.game-card { position: relative; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); overflow: hidden; transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s; }
.game-card:hover { transform: translateY(-5px); border-color: rgba(139,92,246,0.55); box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 26px rgba(139,92,246,0.2); }
.game-card .thumb { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.game-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.game-card:hover .thumb img { transform: scale(1.07); }
.game-card .thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(10,7,24,0.85)); opacity: 0; transition: opacity 0.25s; }
.game-card:hover .thumb::after { opacity: 1; }
.game-card .quick-play { position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%); display: flex; align-items: center; gap: 7px; padding: 9px 16px; border-radius: 999px; background: var(--grad); color: #fff; font-weight: 700; font-size: 13.5px; opacity: 0; transition: opacity 0.25s, transform 0.25s; pointer-events: none; z-index: 2; }
.game-card:hover .quick-play { opacity: 1; transform: translate(-50%, -50%) translateY(-4px); }
.game-card .name { padding: 12px 14px 14px; font-weight: 600; font-size: 14.5px; line-height: 1.35; }
.game-card .name a:hover { color: var(--cyan); }
.game-card .views { position: absolute; top: 9px; right: 10px; z-index: 3; font-size: 11.5px; color: #fff; background: rgba(10,7,24,0.62); padding: 4px 9px; border-radius: 999px; backdrop-filter: blur(4px); }

/* ---------- Spotlight ---------- */
.spotlight { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.spotlight .art { position: relative; border-radius: 22px; overflow: hidden; border: 1px solid var(--line-strong); box-shadow: var(--shadow); }
.spotlight .art img { width: 100%; }
.spotlight .art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(200deg, rgba(236,72,153,0.18), transparent 45%); }
.spotlight h3 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.spotlight p { color: var(--text-soft); margin-bottom: 12px; }
.spotlight .feature-list { margin: 18px 0 26px; display: grid; gap: 10px; }
.spotlight .feature-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--text-soft); font-size: 15px; }
.spotlight .feature-list svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; }

/* ---------- Guide cards ---------- */
.guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 16px; }
.guide-card { padding: 22px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; transition: all 0.2s; }
.guide-card:hover { border-color: rgba(34,211,238,0.5); transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,0,0,0.45); }
.guide-card .gicon { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--line); font-size: 19px; }
.guide-card h3 { font-size: 16.5px; font-weight: 700; font-family: var(--font-display); }
.guide-card p { color: var(--muted); font-size: 13.5px; line-height: 1.55; }
.guide-card .more { margin-top: auto; color: var(--cyan); font-weight: 600; font-size: 13.5px; }

/* ---------- Article / guides ---------- */
.article { max-width: 820px; }
.article h2 { font-family: var(--font-display); font-size: clamp(21px, 2.6vw, 28px); font-weight: 700; letter-spacing: -0.02em; margin: 42px 0 16px; padding-top: 8px; }
.article h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin: 30px 0 12px; color: var(--text); }
.article p { color: var(--text-soft); margin-bottom: 18px; }
.article p:last-child { margin-bottom: 0; }
.article img { border-radius: var(--radius); margin: 22px auto; }
.article iframe { border-radius: var(--radius); margin: 22px 0; width: 100%; aspect-ratio: 16/9; }
.article ul, .article ol { margin: 0 0 18px 22px; }
.article li { color: var(--text-soft); margin-bottom: 8px; list-style: disc; }
.article blockquote, .article .pp-quote {
  border-left: 3px solid transparent; border-image: var(--grad) 1;
  background: rgba(139,92,246,0.10); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px; margin: 26px 0; font-size: 17px; font-weight: 600; color: var(--text);
}
.article .pp-controls { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; margin: 22px 0; }
.article .pp-controls ul { margin: 0; }
.article .pp-controls li { list-style: none; padding: 4px 0; }
.article b, .article strong { color: #fff; }
.article .pp-faq-item { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; margin-bottom: 12px; background: rgba(255,255,255,0.02); }
.article .pp-faq-item h3 { margin: 0 0 8px; font-size: 16.5px; }
.article .pp-faq-item p { margin: 0; }
.page-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 10px; }
.page-sub { color: var(--muted); max-width: 720px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; color: var(--muted); font-size: 13.5px; margin-bottom: 22px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb .sep { opacity: 0.5; }

/* ---------- Game guide block ---------- */
.info-grid { display: grid; grid-template-columns: 1.25fr 0.95fr; gap: 18px; align-items: start; margin-top: 8px; }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 24px; box-shadow: var(--shadow); }
.info-card .info-icon { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--line); font-size: 20px; margin-bottom: 12px; }
.info-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.info-card .info-lead { color: var(--text-soft); font-size: 15px; line-height: 1.6; }
.toc { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.toc b { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.toc ul { display: grid; gap: 4px; }
.toc li { font-size: 14px; color: var(--text-soft); }
.toc li::before { content: "›"; color: var(--cyan); margin-right: 8px; }
.toc a:hover { color: var(--cyan); }
.facts { display: grid; gap: 9px; margin-top: 4px; }
.fact { display: flex; justify-content: space-between; gap: 14px; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.fact:last-child { border-bottom: 0; }
.fact dt { color: var(--muted); flex-shrink: 0; }
.fact dd { color: var(--text-soft); text-align: right; }
.fact dd .tag { font-size: 12px; }
.facts-inline { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 4px 22px; margin-bottom: 14px; }

/* ---------- Tips ---------- */
.tip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 14px; }
.tip-card { display: flex; gap: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; transition: all 0.2s; }
.tip-card:hover { border-color: rgba(139, 92, 246, 0.5); transform: translateY(-3px); }
.tip-num { flex-shrink: 0; width: 30px; height: 30px; border-radius: 10px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 14px; color: #fff; background: var(--grad); }
.tip-card p { color: var(--text-soft); font-size: 14.5px; line-height: 1.6; }
.tip-source { margin-top: 14px; color: var(--muted); font-size: 12.5px; }

/* ---------- Video / community / about ---------- */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }
.video-card { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; transition: all 0.2s; }
.video-card:hover { border-color: rgba(236, 72, 153, 0.55); transform: translateY(-3px); }
.video-thumb { position: relative; aspect-ratio: 16 / 9; background: #000; cursor: pointer; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,7,24,0.05), rgba(10,7,24,0.35)); }
.thumb-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; width: 58px; height: 58px; border-radius: 50%; background: rgba(236, 72, 153, 0.92); display: grid; place-items: center; transition: transform 0.2s, background 0.2s; box-shadow: 0 8px 26px rgba(236, 72, 153, 0.45); }
.thumb-play svg { width: 24px; height: 24px; fill: #fff; margin-left: 3px; }
.video-card:hover .thumb-play { transform: translate(-50%, -50%) scale(1.12); background: #ec4899; }
.video-frame { aspect-ratio: 16 / 9; background: #000; }
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-meta { padding: 13px 16px; display: grid; gap: 3px; }
.video-meta b { font-size: 14.5px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.video-meta span { color: var(--muted); font-size: 12.5px; }
.video-empty { border: 1px dashed var(--line-strong); border-radius: 18px; padding: 40px 24px; text-align: center; color: var(--muted); background: rgba(255,255,255,0.02); }
.video-empty b { display: block; font-family: var(--font-display); color: var(--text); font-size: 16px; margin-bottom: 4px; }
.video-empty span { font-size: 13.5px; }
.video-hub { padding: 26px 22px; gap: 8px; text-align: left; color: var(--text-soft); }
.video-hub b { font-size: 16px; color: var(--text); }
.video-hub span { font-size: 13.5px; color: var(--muted); }
.video-hub:hover b { color: var(--cyan); }
.hub-icon { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--grad); color: #fff; font-size: 20px; margin-bottom: 8px; }
.community-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px; }
.community-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 20px; display: grid; gap: 6px; transition: all 0.2s; }
.community-card:hover { border-color: rgba(34, 211, 238, 0.5); transform: translateY(-3px); }
.community-card .c-icon { font-size: 22px; }
.community-card b { font-size: 15.5px; }
.community-card span { color: var(--muted); font-size: 13.5px; line-height: 1.55; }
.community-post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 14px; }
.community-post { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; display: flex; flex-direction: column; gap: 8px; transition: all 0.2s; }
.community-post:hover { border-color: rgba(251, 191, 36, 0.5); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.4); }
.community-post .cp-top { display: flex; justify-content: space-between; align-items: center; }
.cp-source { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); background: rgba(251, 191, 36, 0.1); border: 1px solid rgba(251, 191, 36, 0.25); padding: 3px 10px; border-radius: 999px; }
.cp-arrow { color: var(--muted); font-size: 15px; }
.community-post .cp-title { font-size: 15.5px; font-weight: 700; font-family: var(--font-display); line-height: 1.4; }
.community-post .cp-title:hover { color: var(--cyan); }
.community-post .cp-snippet { color: var(--muted); font-size: 13.5px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.community-post .cp-read { margin-top: auto; color: var(--cyan); font-weight: 600; font-size: 13.5px; }
.community-post .cp-read:hover { text-decoration: underline; }
.about-card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 26px; box-shadow: var(--shadow); }
.about-card p { color: var(--text-soft); line-height: 1.7; }
.source-links { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; font-size: 13.5px; }
.source-links b { color: var(--muted); font-weight: 600; }
.source-links a { color: var(--cyan); font-weight: 600; }
.source-links a:hover { text-decoration: underline; }

/* ---------- Guide glance / toc ---------- */
.glance { background: linear-gradient(120deg, rgba(139, 92, 246, 0.14), rgba(34, 211, 238, 0.10)); border: 1px solid var(--line-strong); border-radius: 18px; padding: 20px 24px; margin: 0 0 22px; }
.glance b { display: block; font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cyan); margin-bottom: 8px; }
.glance p { color: var(--text-soft); line-height: 1.7; }
.toc-guide { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 18px 22px; margin-bottom: 30px; }
.toc-guide ul { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 7px 24px; }

/* ---------- Reviews (dark override) ---------- */
.block-review { margin-top: 54px; }
.block-review .review-title { font-family: var(--font-display); font-size: clamp(22px, 2.8vw, 30px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 24px; }
.reviews-layout { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
.reviews-col { min-width: 0; }
.review-form-card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 26px; position: sticky; top: 92px; box-shadow: var(--shadow); }
.review-form-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.review-form-card .review-form-hint { color: var(--muted); font-size: 13.5px; margin-bottom: 18px; }
.review-form-card .glsr-form { row-gap: 14px; }
.review-form-card .glsr-button { width: 100%; }
.review-empty { border: 1px dashed var(--line-strong); border-radius: 20px; padding: 54px 28px; text-align: center; background: rgba(255,255,255,0.02); }
.review-empty .mic-big { width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 50%; background: var(--grad-soft); display: grid; place-items: center; font-size: 24px; }
.review-empty b { display: block; font-family: var(--font-display); font-size: 18px; margin-bottom: 6px; }
.review-empty span { color: var(--muted); font-size: 14px; }
.glsr, .glsr-default { --glsr-white: #fff; --glsr-gray-100: #2d2457; --glsr-gray-200: #2d2457; --glsr-gray-300: #3b3265; --glsr-gray-400: #6f67a0; --glsr-gray-500: #9d96c0; --glsr-gray-600: #c8c2e2; --glsr-gray-700: #e6e2f6; --glsr-gray-800: #f0edfb; --glsr-gray-900: #fff; --glsr-input-bg: #241d47; --glsr-input-color: #f0edfb; --glsr-input-b: 1px solid #4a4180; }
.glsr-form-message { padding: 10px 0; }
.glsr-review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.glsr-review-author span:last-child { color: #fff; font-weight: 600; }
.glsr-review-date { color: var(--muted); }
.glsr-star-rating--stars { display: inline-flex; gap: 2px; }
.glsr-star { background-position: 50%; background-repeat: no-repeat; background-size: contain; }
.glsr-button.wp-block-button__link { background: var(--grad); border-radius: 999px; padding: 13px 26px; font-weight: 700; }
.glsr-button.wp-block-button__link:hover { filter: brightness(1.1); }
select.glsr-select, input.glsr-input, textarea.glsr-textarea { border-radius: 10px !important; }

/* ---------- Footer ---------- */
.footer { margin-top: 80px; border-top: 1px solid var(--line); background: rgba(8, 6, 18, 0.6); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding: 52px 0 30px; }
.footer h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer p { color: var(--muted); font-size: 14px; max-width: 320px; }
.footer a { color: var(--muted); display: inline-block; padding: 5px 0; font-size: 14px; }
.footer a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid var(--line); padding: 18px 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: var(--muted); font-size: 13px; }

/* ---------- Search page ---------- */
.search-result-grid { margin-top: 30px; }
.search-empty { text-align: center; padding: 70px 0; color: var(--muted); }
.search-empty b { display: block; font-family: var(--font-display); font-size: 22px; color: var(--text); margin-bottom: 8px; }


/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid, .spotlight { grid-template-columns: 1fr; gap: 36px; }
  .nav, .search-box { display: none; }
  .btn-menu { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line-strong); background: rgba(255,255,255,0.05); }
  .btn-menu span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; margin: 3px auto; transition: 0.25s; }
  .btn-menu.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .btn-menu.open span:nth-child(2) { opacity: 0; }
  .btn-menu.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { padding: 12px 4px; border-radius: 10px; font-weight: 600; color: var(--text-soft); }
  .mobile-menu a:hover { color: #fff; background: rgba(255,255,255,0.05); }
  .mobile-menu .mm-sub { padding-left: 16px; display: grid; gap: 2px; }
  .mobile-menu .mm-sub a { font-weight: 500; font-size: 14.5px; color: var(--muted); }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .reviews-layout { grid-template-columns: 1fr; }
  .review-form-card { position: static; }
  .info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 44px 0; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .game-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .guide-grid { grid-template-columns: 1fr; }
  .header-inner { height: 64px; }
  .logo-the { display: none; }
}
