*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html, body { overflow-x: hidden; }
    :root {
      --primary: #2563EB;
      --teal: #10B981;
      --bg: #0B0F1A;
      --surface: #1E293B;
      --border: #334155;
      --text: #FFFFFF;
      --muted: #94A3B8;
      --accent: #5b6bc0;
      --accent-bg: rgba(91,107,192,0.15);
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; -webkit-font-smoothing: antialiased; line-height: 1.6; }

    /* HEADER */
    .page-header { position: sticky; top: 0; z-index: 50; background: rgba(11,15,26,0.85); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
    .header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; max-width: 1100px; margin: 0 auto; padding: 12px 24px; }
    @media (min-width: 768px) { .header-inner { padding: 12px 80px; } }
    .header-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; transition: opacity .2s; flex-shrink: 0; }
    .header-brand:hover { opacity: .85; }
    .brand-logo { width: 32px; height: 32px; border-radius: 8px; background: var(--bg); border: 1.5px solid var(--accent); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: var(--accent); flex-shrink: 0; }
    .brand-name { font-size: 16px; font-weight: 700; color: #fff; white-space: nowrap; }
    .header-actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
    @media (min-width: 900px) { .header-actions { gap: 32px; } }
    .header-nav { display: none; align-items: center; gap: 22px; }
    @media (min-width: 900px) { .header-nav { display: flex; } }
    .nav-link { font-size: 13.5px; font-weight: 500; color: var(--muted); text-decoration: none; transition: color .2s; white-space: nowrap; }
    .nav-link:hover { color: #fff; }
    .nav-link-accent { color: var(--accent); font-weight: 700; }
    .btn-primary { height: 38px; padding: 0 18px; background: var(--primary); color: #fff; border: none; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; flex-shrink: 0; transition: opacity .2s; }
    .btn-primary:hover { opacity: .85; }

    /* HERO */
    .hero { position: relative; overflow: hidden; padding: 56px 24px 52px; }
    @media (min-width: 768px) { .hero { padding: 80px 80px 64px; } }
    .hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 62% 58% at 84% -4%, color-mix(in srgb, var(--accent) 24%, transparent), transparent 68%), var(--bg); }
    .hero-bg::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px); background-size: 22px 22px; opacity: .5; }
    .hero-watermark { position: absolute; top: 0; bottom: 0; right: 2%; display: flex; align-items: center; overflow: hidden; font-size: clamp(5rem, 13vw, 9.5rem); font-weight: 900; color: var(--accent); opacity: .07; letter-spacing: -0.03em; line-height: 1; pointer-events: none; user-select: none; }
    .hero-inner { position: relative; max-width: 1100px; margin: 0 auto; display: flex; gap: 48px; align-items: center; flex-wrap: wrap; }
    .hero-portrait { position: relative; flex-shrink: 0; margin-bottom: 14px; }
    .hero-img { width: 148px; height: 148px; border-radius: 20px; object-fit: cover; display: block; box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 24px 48px -18px color-mix(in srgb, var(--accent) 60%, transparent); }
    .hero-img-placeholder { width: 148px; height: 148px; border-radius: 20px; border: 1px solid var(--border); background: var(--accent-bg); display: flex; align-items: center; justify-content: center; font-size: 46px; font-weight: 900; color: var(--accent); }
    .hero-rarity-badge { position: absolute; left: 50%; bottom: -14px; transform: translateX(-50%); white-space: nowrap; background: var(--surface); border: 1px solid var(--accent); color: var(--accent); font-size: 11.5px; font-weight: 700; padding: 5px 12px; border-radius: 20px; box-shadow: 0 8px 18px -8px rgba(0,0,0,.6); }
    .hero-text { flex: 1; min-width: 260px; }
    .hero-eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
    .hero-title { font-size: 2.75rem; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -0.01em; display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 10px; }
    @media (min-width: 768px) { .hero-title { font-size: 3.75rem; } }
    .hero-title-name { font-size: 1.3rem; font-weight: 700; color: var(--muted); }
    .hero-subtitle { font-size: 1.0625rem; color: rgba(255,255,255,.72); margin-bottom: 26px; max-width: 46ch; line-height: 1.65; }
    .hero-axes { display: grid; grid-template-columns: repeat(4, auto); gap: 20px 28px; }
    @media (max-width: 560px) { .hero-axes { grid-template-columns: repeat(2, auto); } }
    .axis-label { display: block; font-size: 10.5px; color: var(--muted); letter-spacing: .04em; margin-bottom: 6px; }
    .axis-pair { display: inline-flex; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 3px; gap: 2px; }
    .axis-opt { font-size: 12px; font-weight: 700; color: var(--muted); padding: 3px 10px; border-radius: 16px; }
    .axis-opt.axis-active { background: var(--accent); color: #0B0F1A; }

    /* CONTENT */
    .content { max-width: 1100px; margin: 0 auto; padding: 48px 24px; }
    @media (min-width: 768px) { .content { padding: 48px 80px; } }
    .section { margin-bottom: 56px; }
    .section-title { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
    .section-title::before { content: ''; display: inline-block; width: 4px; height: 22px; background: var(--accent); border-radius: 2px; }

    /* CARDS GRID */
    .cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
    .card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px; }
    .card-label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
    .tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
    .tag { display: inline-block; padding: 5px 12px; border-radius: 20px; font-size: 13px; font-weight: 600; }
    .tag-green { background: rgba(16,185,129,.15); color: #10B981; }
    .tag-red { background: rgba(239,68,68,.12); color: #F87171; }
    .tag-accent { background: var(--accent-bg); color: var(--accent); }

    /* CAREER LIST */
    .career-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
    .career-item { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; font-size: 14px; font-weight: 600; color: #fff; display: flex; align-items: center; gap: 8px; }
    .career-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

    /* FAMOUS */
    .famous-grid { display: flex; flex-wrap: wrap; gap: 12px; }
    .famous-item { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 10px 16px; font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
    .famous-item::before { content: '⭐'; font-size: 12px; }

    /* FULL-TEXT SECTION */
    .text-block { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 24px; color: var(--muted); line-height: 1.8; font-size: 15px; }
    .text-block strong { color: #fff; }

    /* HINT */
    .hint-box { background: var(--accent-bg); border: 1px solid var(--accent); border-radius: 14px; padding: 20px 24px; font-size: 15px; font-style: italic; color: var(--accent); line-height: 1.7; }

    /* GROWTH CTA (引流到成长中心 -growth 页) */
    .growth-cta { display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; background: linear-gradient(120deg, var(--accent-bg), transparent); border: 1px solid var(--accent); border-radius: 18px; padding: 26px 28px; }
    .growth-cta-text { flex: 1; min-width: 260px; }
    .growth-cta-badge { display: inline-block; font-size: 12px; font-weight: 700; color: var(--accent); background: var(--accent-bg); border: 1px solid var(--accent); border-radius: 20px; padding: 3px 12px; margin-bottom: 10px; }
    .growth-cta h3 { margin: 0 0 8px; font-size: 20px; }
    .growth-cta p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.7; }
    .growth-cta-btn { flex-shrink: 0; display: inline-flex; align-items: center; height: 50px; padding: 0 28px; border-radius: 12px; background: var(--accent); color: #fff; text-decoration: none; font-weight: 800; font-size: 15px; white-space: nowrap; box-shadow: 0 12px 28px -12px var(--accent); transition: transform .15s; }
    .growth-cta-btn:hover { transform: translateY(-2px); }
    @media (max-width: 600px) { .growth-cta-btn { width: 100%; justify-content: center; } }

    /* FAQ */
    .faq-list { display: flex; flex-direction: column; gap: 16px; }
    .faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px 24px; }
    .faq-q { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 10px; }
    .faq-a { font-size: 14px; color: var(--muted); line-height: 1.75; }

    /* OTHER TYPES */
    .types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
    @media (max-width: 640px) { .types-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; } }
    .type-link { display: block; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 12px 8px; text-align: center; text-decoration: none; transition: border-color .2s, background .2s; }
    .type-link:hover { border-color: var(--primary); background: rgba(37,99,235,.08); }
    .type-link-code { font-size: 14px; font-weight: 800; color: #fff; }
    .type-link-name { font-size: 11px; color: var(--muted); margin-top: 2px; }

    /* CTA */
    .cta-box { background: linear-gradient(135deg, rgba(37,99,235,.2), rgba(16,185,129,.1)); border: 1px solid var(--primary); border-radius: 20px; padding: 40px 32px; text-align: center; }
    .cta-title { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
    .cta-desc { font-size: 15px; color: var(--muted); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
    .cta-btn { display: inline-flex; align-items: center; gap: 8px; height: 48px; padding: 0 32px; background: var(--primary); color: #fff; border-radius: 12px; font-size: 16px; font-weight: 700; text-decoration: none; transition: opacity .2s; }
    .cta-btn:hover { opacity: .9; }

    /* BREADCRUMB */
    .breadcrumb { padding: 18px 24px 0; font-size: 13px; }
    @media (min-width: 768px) { .breadcrumb { padding: 22px 80px 0; } }
    .breadcrumb-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; flex-wrap: wrap; gap: 4px; color: var(--muted); }
    .breadcrumb-inner a { color: var(--muted); text-decoration: none; transition: color .15s; }
    .breadcrumb-inner a:hover { color: #fff; }
    .bc-sep { margin: 0 2px; color: #475569; }
    .bc-current { color: #CBD5E1; font-weight: 600; }

    /* INLINE LINKS & HINTS */
    .inline-link { color: var(--accent); text-decoration: none; font-weight: 600; border-bottom: 1px solid transparent; transition: border-color .15s; }
    .inline-link:hover { border-bottom-color: var(--accent); }
    .section-link-hint { margin-top: 16px; font-size: 13.5px; color: var(--muted); }
    .section-subtitle { font-size: 14px; color: var(--muted); margin-bottom: 20px; line-height: 1.7; }
    .section-subtitle strong { color: #CBD5E1; }

    /* SAME-CATEGORY CARDS */
    .same-cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
    .same-cat-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px 18px; text-decoration: none; transition: border-color .2s, background .2s; }
    .same-cat-card:hover { border-color: var(--accent); background: var(--accent-bg); }
    .same-cat-code { font-size: 18px; font-weight: 900; color: var(--accent); margin-bottom: 4px; }
    .same-cat-name { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 8px; }
    .same-cat-desc { font-size: 12.5px; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 12px; }
    .same-cat-link { font-size: 12px; font-weight: 700; color: var(--accent); }

    /* ── UNIFIED SITE FOOTER ── */
    .site-footer { background: #020617; border-top: 1px solid rgba(255,255,255,0.08); padding: 56px 24px 0; font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif; }
    .site-footer .footer-inner { max-width: 1100px; margin: 0 auto; }
    .site-footer .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
    @media (max-width: 900px) { .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
    @media (max-width: 540px) { .site-footer .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
    .site-footer .footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
    .site-footer .footer-logo { width: 34px; height: 34px; border-radius: 9px; background: #2563EB; color: #fff; font-size: 17px; font-weight: 900; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .site-footer .footer-brand-name { font-size: 17px; font-weight: 700; color: #fff; }
    .site-footer .footer-desc { font-size: 13px; color: #64748B; line-height: 1.7; margin-bottom: 12px; }
    .site-footer .footer-disclaimer { font-size: 12px; color: #475569; line-height: 1.6; margin-bottom: 4px; }
    .site-footer .footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 14px; letter-spacing: 0.04em; text-transform: uppercase; }
    .site-footer .footer-col a { display: block; font-size: 13px; color: #64748B; text-decoration: none; margin-bottom: 9px; transition: color 0.15s; }
    .site-footer .footer-col a:hover { color: #CBD5E1; }
    .site-footer .footer-type-links { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 12px; }
    .site-footer .footer-type-links a { margin-bottom: 0; font-size: 12.5px; }
    .site-footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
    .site-footer .footer-bottom p, .site-footer .footer-bottom a { font-size: 12px; color: #475569; text-decoration: none; }
    .site-footer .footer-bottom a:hover { color: #94A3B8; }
