:root {
  --bg: #fafbfe; --surface: #fff; --surface-soft: #f0f3f8; --ink: #303844; --muted: #505b69; --line: #dee2e6;
  --accent: #454cab; --accent-hover: #3c438f; --accent-soft: #ececff; --decor-border: #b6bbeb; --decor-owned: #c8caef; --accent-on: #fff; --white: #fff;
  --shadow: 0 12px 34px rgba(44,53,76,.07); --shadow-top: 0 3px 14px rgba(48,56,68,.04); --shadow-card: 0 5px 18px rgba(44,53,76,.035);
  --shadow-drawer: -12px 0 32px rgba(30,37,50,.14); --shadow-owned: 0 8px 22px rgba(84,91,173,.09); --shadow-focus: 0 0 0 3px rgba(96,104,230,.14);
  --scrim: rgba(33,39,51,.35); --shadow-fruit: inset -9px -12px 0 rgba(209,112,31,.1),0 18px 24px rgba(160,112,38,.15);
  --fruit-bg: linear-gradient(145deg,#ffd76e,#f8a843); --notice-bg: #fff8e7; --notice-border: #f1dfb5; --notice-ink: #574a2e;
  --notice-mark-bg: #ffe9b1; --notice-mark-ink: #5b4612; --on-notice: #574a2e; --hero-art-bg: #fff1ca; --fruit-leaf: #5aa775; --fruit-stem: #637743;
  --spark: #ec907c; --spark-alt: #6f75d4; --pink: #9d244f; --violet: #43369f; --orange: #8a451b; --green-avatar: #176444; --on-pink: #fff; --on-violet: #fff; --on-orange: #fff; --on-green: #fff;
  --focus: #888fe1; --focus-ring: #858bec; --owned-border: #c8caef; --gold-ink: #8b5e17; --green-ink: #286b49; --red-ink: #984052; --on-accent: #fff; --on-editorial: #8f601b; --on-visit: #3e468f;
  --blue-ink: #345c84; --violet-ink: #60417f; --muted-icon: #505b69; --breadcrumb: #505b69; --hero-heading: #2d3440;
  --hero-lede: #505b6a; --site-copy: #4b5665; --visit-border: #dbdef8; --visit-bg: #f5f5ff; --visit-ink: #3e468f;
  --visit-hover: #eaeaff; --on-visit: #3e468f; --accent-ink: #fff; --category-icon: #f0f0ff; --radius-card: 7px; --radius-small: 6px; --radius-tiny: 5px; --category-icon-ink: #4149a1; --soft-pink: #fff2dd; --soft-green: #e9f4ef;
  --soft-red: #feeeee; --soft-blue: #eaf2fc; --soft-violet: #f0eafa; --editorial-badge: #fff0cb; --editorial-badge-ink: #8f601b; --on-editorial: #8f601b;
  --footer-ink: #505b69; --header-bg: rgba(255,255,255,.97); --owned-xp-bg: #f5f5ff; --owned-xf-border: #edc9d2; --owned-xf-bg: #fff6f7;
  --owned-dd-border: #c3d6ec; --owned-dd-bg: #f4f8fc; --owned-xd-border: #d7c8e9; --owned-xd-bg: #f8f5fc;
 --text-brand: #313a46; --text-small: #505b69; --font-body: 16px; --page: 1160px; --radius: 8px;
  font-family: Inter,"Noto Sans SC","Microsoft YaHei",system-ui,sans-serif; font-size: 16px; color-scheme: light;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-size: 16px; line-height: 1.65; }
a { color: inherit; text-decoration: none; }
button,input { font: inherit; }
button { color: inherit; }
img { max-width: 100%; height: auto; }
p,h1,h2,h3 { overflow-wrap: anywhere; }
p { margin: .55rem 0 1rem; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.topbar { height: 70px; position: sticky; top: 0; z-index: 20; display: flex; align-items: center; gap: 28px; padding: 0 max(22px,calc((100vw - var(--page))/2)); background: var(--header-bg); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-top); }
.brand { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; color: var(--text-brand); font-size: 20px; font-weight: 800; letter-spacing: .02em; }
.brand img { border-radius: 50%; object-fit: cover; }
.search { position: relative; display: flex; align-items: center; width: min(430px,44vw); height: 42px; color: var(--muted); }
.search>span { position: absolute; left: 14px; font-size: 25px; line-height: 1; }
.search input { width: 100%; height: 42px; border: 1px solid transparent; border-radius: 6px; background: var(--surface-soft); padding: 0 64px 0 42px; outline: none; }
.search input:focus { border-color: var(--focus); box-shadow: var(--shadow-focus); }
.search button { position: absolute; right: 8px; border: 0; background: transparent; color: var(--muted); font-size: 13px; padding: 7px; cursor: pointer; }
.menu-toggle { margin-left: auto; border: 1px solid var(--line); background: var(--surface); width: 44px; height: 44px; border-radius: 7px; font-size: 20px; cursor: pointer; }
.menu-scrim { position: fixed; inset: 0; background: var(--scrim); z-index: 29; }
.drawer { position: fixed; right: 0; top: 0; bottom: 0; width: min(320px,88vw); z-index: 30; background: var(--surface); box-shadow: var(--shadow-drawer); padding: 20px 18px; display: flex; flex-direction: column; gap: 5px; transform: translateX(105%); transition: transform .22s ease; }
.drawer.is-open { transform: translateX(0); }
.drawer[aria-hidden=true] { visibility: hidden; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); padding: 0 4px 15px; margin-bottom: 7px; font-size: 19px; }
.drawer-close { width: 42px; height: 42px; border: 0; background: var(--surface-soft); border-radius: 6px; font-size: 26px; cursor: pointer; }
.drawer>a,.drawer-foot>a { padding: 11px 10px; border-radius: 5px; }
.drawer>a:hover,.drawer-foot>a:hover { background: var(--surface-soft); color: var(--accent); }
.drawer-foot { display: grid; margin-top: auto; border-top: 1px solid var(--line); padding-top: 10px; }
.page-shell { max-width: var(--page); margin: auto; padding: 24px 24px 72px; }
.notice { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; padding: 11px 15px; background: var(--notice-bg); border: 1px solid var(--notice-border); border-radius: 6px; color: var(--on-notice); }
.notice-mark { display: grid; place-items: center; flex: 0 0 34px; height: 34px; border-radius: 50%; background: var(--notice-mark-bg); color: var(--notice-mark-ink); font-size: 16px; font-weight: 800; }
.hero { min-height: 286px; position: relative; overflow: hidden; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 48px; box-shadow: var(--shadow); }
.hero-copy { position: relative; z-index: 1; max-width: 570px; }
.eyebrow { margin: 0 0 8px; color: var(--accent); font-size: 13px; font-weight: 800; letter-spacing: .11em; }
.hero h1 { font-size: clamp(36px,5vw,54px); line-height: 1.17; margin: 0 0 13px; letter-spacing: -.035em; color: var(--hero-heading); }
.hero-lede { font-size: 18px; color: var(--hero-lede); max-width: 555px; margin: 0 0 17px; }
.text-link,.inline-link { font-weight: 750; color: var(--accent); }
.text-link span { margin-left: 7px; }
.hero-art { height: 210px; position: relative; display: grid; place-items: center; }
.hero-art:before { content: ""; position: absolute; width: 245px; height: 245px; border-radius: 50%; background: var(--hero-art-bg); right: 7%; top: -20px; }
.fruit { position: absolute; z-index: 1; width: 128px; height: 115px; border-radius: 51% 49% 48% 52%; background: var(--fruit-bg); box-shadow: var(--shadow-fruit); transform: rotate(-25deg); }
.fruit:before { content: ""; position: absolute; left: 45px; top: -17px; width: 40px; height: 27px; border-radius: 90% 0 90% 0; background: var(--fruit-leaf); transform: rotate(-27deg); }
.fruit:after { content: ""; position: absolute; left: 61px; top: -9px; width: 3px; height: 21px; background: var(--fruit-stem); transform: rotate(28deg); }
.fruit-two { width: 73px; height: 63px; left: 13%; top: 33%; transform: rotate(26deg); opacity: .83; }
.spark { position: absolute; color: var(--spark); font-size: 29px; z-index: 2; }
.spark-one { right: 15%; top: 18%; }
.spark-two { left: 17%; bottom: 17%; color: var(--spark-alt); }
.art-caption { position: absolute; z-index: 3; bottom: 4px; right: 0; background: var(--surface); padding: 8px 15px; border: 1px solid var(--line); border-radius: 4px; font-size: 14px; color: var(--muted); }
.section { margin-top: 48px; }
.directory-columns { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 22px; align-items: start; }
.directory-panel { min-width: 0; padding: 18px; background: var(--surface); border: 1px solid var(--line); border-radius: 7px; box-shadow: var(--shadow-card); }
.directory-panel-heading { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin: 0 0 15px; }
.directory-panel-heading h3 { margin: 0; font-size: 19px; color: var(--ink); }
.directory-panel-heading span { font-size: 13px; color: var(--muted); }
.directory-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.directory-grid .site-card { min-height: 260px; padding: 14px; }
.owned-list { display: grid; gap: 9px; }
.owned-row { display: grid; grid-template-columns: 56px minmax(0,1fr) 20px; align-items: center; gap: 13px; min-height: 78px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 6px; background: var(--surface-soft); transition: transform .18s,border-color .18s; }
.owned-row:hover { transform: translateY(-1px); border-color: var(--owned-border); }
.owned-row img { width: 56px; height: 56px; border-radius: 12px; object-fit: cover; border: 1px solid var(--line); background: var(--surface); }
.owned-row span { min-width: 0; }
.owned-row strong,.owned-row small { display: block; overflow-wrap: anywhere; }
.owned-row strong { font-size: 16px; color: var(--ink); }
.owned-row small { margin-top: 3px; font-size: 14px; color: var(--text-small); line-height: 1.5; }
.owned-row>b { color: var(--muted); font-size: 18px; }
.owned-xpornkit { border-color: var(--owned-border); background: var(--owned-xp-bg); }
.owned-xunfang { border-color: var(--owned-xf-border); background: var(--owned-xf-bg); }
.owned-ddys { border-color: var(--owned-dd-border); background: var(--owned-dd-bg); }
.owned-xdgame { border-color: var(--owned-xd-border); background: var(--owned-xd-bg); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin: 0 0 19px; }
.section-heading h2,.editorial h2 { margin: 0; color: var(--ink); font-size: 29px; line-height: 1.25; }
.section-heading p:not(.eyebrow) { margin: 7px 0 0; color: var(--muted); }
.section-count { font-size: 13px; color: var(--muted); padding: 6px 10px; border: 1px solid var(--line); border-radius: 4px; background: var(--surface); }
.site-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.site-card { display: flex; flex-direction: column; min-width: 0; min-height: 266px; background: var(--surface); border: 1px solid var(--line); border-radius: 7px; padding: 17px 18px; box-shadow: var(--shadow-card); transition: transform .18s,border-color .18s,box-shadow .18s; }
.site-card:hover { transform: translateY(-2px); border-color: var(--decor-owned); box-shadow: var(--shadow); }
.site-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.site-avatar { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; color: var(--white); font-weight: 800; font-size: 19px; }
.avatar-pink { background: var(--pink); color: var(--on-pink); }
.avatar-violet { background: var(--violet); color: var(--on-violet); }
.avatar-orange { background: var(--orange); color: var(--on-orange); }
.avatar-green { background: var(--green-avatar); color: var(--on-green); }
.category-label { color: var(--muted); font-size: 12px; }
.site-card h3 { font-size: 19px; margin: 0 0 4px; color: var(--ink); }
.site-card p { font-size: var(--font-body); line-height: 1.65; color: var(--site-copy); margin: 0 0 14px; }
.visit-button { display: flex; justify-content: space-between; align-items: center; margin-top: auto; min-height: 42px; padding: 8px 12px; border: 1px solid var(--visit-border); border-radius: 5px; background: var(--visit-bg); color: var(--visit-ink); font-weight: 700; text-align: left; cursor: pointer; }
.visit-button:hover { background: var(--visit-hover); }
.visit-button:disabled { opacity: .55; cursor: not-allowed; }
.empty-state { margin: 16px 0; padding: 20px; background: var(--surface); border: 1px dashed var(--line); text-align: center; border-radius: 6px; color: var(--muted); }
.category-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 13px; }
.category-card { display: grid; grid-template-columns: 46px 1fr 22px; align-items: center; gap: 12px; min-height: 86px; padding: 14px 16px; background: var(--surface); border: 1px solid var(--line); border-radius: 6px; transition: border-color .18s,transform .18s; }
.category-card:hover { transform: translateY(-2px); border-color: var(--decor-border); }
.category-symbol { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 7px; background: var(--category-icon); color: var(--category-icon-ink); font-size: 22px; }
.category-card strong,.category-card small { display: block; }
.category-card strong { font-size: 16px; }
.category-card small { font-size: 14px; color: var(--text-small); margin-top: 2px; }
.category-card>b { color: var(--muted); font-size: 19px; }
.category-shop .category-symbol { background: var(--soft-pink); color: var(--gold-ink); }
.category-directory .category-symbol { background: var(--soft-green); color: var(--green-ink); }
.category-social .category-symbol { background: var(--soft-red); color: var(--red-ink); }
.category-tv .category-symbol { background: var(--soft-blue); color: var(--blue-ink); }
.category-game .category-symbol { background: var(--soft-violet); color: var(--violet-ink); }
.editorial { display: grid; grid-template-columns: 65px 1fr; gap: 22px; margin-top: 54px; padding: 27px 30px; background: var(--surface); border: 1px solid var(--line); border-radius: 7px; }
.editorial-mark { display: grid; place-items: center; width: 57px; height: 57px; background: var(--editorial-badge); border-radius: 50%; color: var(--editorial-badge-ink); font-size: 25px; font-weight: 850; }
.editorial h2 { font-size: 24px; }
.editorial p:not(.eyebrow) { color: var(--muted); }
.inline-link { display: inline-block; padding-top: 3px; }
.faq-section { margin: 53px 0 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.faq-grid details { background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: 15px 18px; }
.faq-grid summary { font-weight: 750; cursor: pointer; line-height: 1.5; }
.faq-grid details p { margin: 12px 0 0; color: var(--muted); font-size: 16px; }
.faq-grid details a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.site-footer { background: var(--surface); border-top: 1px solid var(--line); padding: 27px max(24px,calc((100vw - var(--page))/2)) 15px; }
.footer-main { display: grid; grid-template-columns: 160px 1fr auto; align-items: center; gap: 18px; }
.footer-brand { font-size: 18px; font-weight: 800; }
.footer-main p { color: var(--footer-ink); margin: 0; }
.footer-main nav { display: flex; gap: 17px; font-size: 14px; color: var(--muted); }
.footer-main nav a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid var(--line); margin-top: 22px; padding-top: 12px; color: var(--muted); font-size: 13px; }
.subpage { min-height: 60vh; }
.breadcrumb { display: flex; gap: 9px; align-items: center; padding: 0; margin: 0 0 22px; list-style: none; color: var(--muted); font-size: 14px; }
.breadcrumb li+li:before { content: "/"; padding-right: 9px; color: var(--breadcrumb); }
.subpage-title { padding: 14px 0 26px; border-bottom: 1px solid var(--line); }
.subpage-title h1 { margin: 0; font-size: clamp(30px,4vw,42px); line-height: 1.2; }
.subpage-title p { color: var(--muted); max-width: 760px; margin: 11px 0 0; }
.subpage .section { margin-top: 32px; }
.featured-owned { border-color: var(--owned-border); box-shadow: var(--shadow-owned); }
.owned-line { display: flex; align-items: center; gap: 14px; }
.owned-line img { width: 52px; height: 52px; border-radius: 12px; object-fit: cover; background: var(--surface-soft); border: 1px solid var(--line); }
.owned-line div { flex: 1; }
.owned-line strong { font-size: 18px; }
.owned-line p { margin: 3px 0 0; color: var(--muted); font-size: 14px; }
.owned-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding: 8px 12px; border-radius: 5px; background: var(--accent); color: var(--accent-ink); font-weight: 700; min-height: 44px; }
.owned-link:hover { background: var(--accent-hover); }
.plain-panel { padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: 7px; }
.plain-panel h2 { font-size: 21px; margin: 0 0 10px; }
.plain-panel p { color: var(--muted); }
.form-note { color: var(--muted); }
.legal-copy { max-width: 780px; }
.legal-copy h2 { margin-top: 28px; }
.contact-link { display: inline-flex; padding: 11px 16px; background: var(--accent); color: var(--accent-ink); border-radius: 5px; font-weight: 700; }
.site-footer a:focus-visible,.topbar a:focus-visible,button:focus-visible,a:focus-visible,summary:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 3px; }
.sr-only:focus { width: auto; height: auto; clip: auto; padding: 10px; background: var(--surface); z-index: 99; }
.skip-link { position: absolute; left: -999px; top: 5px; background: var(--surface); padding: 10px; z-index: 50; }
.skip-link:focus { left: 10px; }
@media(max-width:980px) {
  .site-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .directory-columns { grid-template-columns: 1fr; }
  .directory-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .hero { padding: 32px 34px; }
  .category-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-main { grid-template-columns: 130px 1fr; }
  .footer-main nav { grid-column: 1/-1; }
  .hero-art { transform: scale(.9); }
}
@media(max-width:650px) {
  .topbar { gap: 13px; padding: 0 14px; }
  .directory-panel { padding: 14px; }
  .directory-grid { grid-template-columns: 1fr; }
  .directory-grid .site-card { min-height: 0; }
  .owned-row { grid-template-columns: 48px minmax(0,1fr) 18px; gap: 10px; padding: 9px; }
  .owned-row img { width: 48px; height: 48px; }
  .brand { font-size: 17px; gap: 7px; }
  .brand img { width: 36px; height: 36px; }
  .search { width: auto; flex: 1; min-width: 0; height: 40px; }
  .search input { height: 40px; padding-right: 48px; font-size: 14px; }
  .search button { font-size: 0; }
  .search button:after { content: "×"; font-size: 19px; }
  .menu-toggle { width: 42px; height: 42px; flex: 0 0 42px; }
  .page-shell { padding: 16px 15px 50px; }
  .notice { align-items: flex-start; font-size: 14px; margin-bottom: 16px; }
  .notice-mark { flex-basis: 30px; height: 30px; }
  .hero { display: block; min-height: 0; padding: 28px 23px 18px; }
  .hero h1 { font-size: 37px; }
  .hero-lede { font-size: 16px; }
  .hero-art { height: 148px; transform: none; margin-top: 7px; }
  .hero-art:before { width: 185px; height: 185px; right: 20%; top: -25px; }
  .fruit { width: 97px; height: 89px; }
  .fruit:before { left: 34px; }
  .fruit:after { left: 47px; }
  .fruit-two { width: 56px; height: 50px; left: 16%; top: 30%; }
  .art-caption { right: 1%; bottom: 0; font-size: 13px; }
  .section { margin-top: 35px; }
  .section-heading { align-items: flex-start; gap: 8px; }
  .section-heading h2 { font-size: 25px; }
  .section-heading p:not(.eyebrow) { font-size: 14px; }
  .section-count { font-size: 12px; white-space: nowrap; }
  .site-grid { grid-template-columns: 1fr; gap: 11px; }
  .site-card { min-height: 0; padding: 16px; }
  .site-card p { font-size: 16px; }
.category-grid { grid-template-columns: 1fr; gap: 10px; }
  .category-card { min-height: 76px; }
  .editorial { grid-template-columns: 1fr; gap: 13px; margin-top: 38px; padding: 20px; }
  .editorial-mark { width: 45px; height: 45px; font-size: 20px; }
  .editorial h2 { font-size: 21px; }
  .editorial p:not(.eyebrow) { font-size: 15px; }
  .faq-section { margin-top: 38px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-grid details { padding: 14px; }
  .site-footer { padding: 23px 16px 14px; }
  .footer-main { grid-template-columns: 1fr; gap: 8px; }
  .footer-main nav { grid-column: auto; flex-wrap: wrap; gap: 9px 17px; margin-top: 5px; }
  .footer-bottom { margin-top: 17px; }
  .subpage-title { padding: 8px 0 20px; }
  .subpage-title h1 { font-size: 31px; }
  .subpage-title p { font-size: 15px; }
  .subpage .section { margin-top: 24px; }
  .owned-line { align-items: flex-start; }
  .owned-line img { width: 47px; height: 47px; }
  .owned-link { margin-top: 13px; }
  .plain-panel { padding: 19px; }
  .breadcrumb { font-size: 13px; flex-wrap: wrap; }
  .legal-copy { font-size: 16px; }
}
@media(max-width:365px) {
  .topbar { gap: 8px; padding: 0 9px; }
  .brand { font-size: 15px; }
  .menu-toggle { width: 40px; height: 40px; flex-basis: 40px; }
  .hero h1 { font-size: 33px; }
  .site-footer { padding-left: 13px; padding-right: 13px; }
}
@media(prefers-reduced-motion:reduce) {
  html { scroll-behavior: auto; }
  *,*:before,*:after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
