:root {
  --space-dark: #0d0d14;
  --space-blue: #161622;
  --star-white: #f1f5f9;
  --nebula-pink: #8b7cf8;
  --comet-cyan: #5eead4;
  --sun-gold: #fb923c;
  --ink-muted: #94a3b8;
  --ink-on-light: #1e293b;
  --line-soft: rgba(148, 163, 184, 0.15);
  --g26-font: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --g26-header-h: 76px;
  --g26-header-h-mobile: 64px;
  --g26-star-full: #fbbf24;
  --g26-star-empty: rgba(148, 163, 184, 0.45);
  --g26-accent: #8b7cf8;
  --g26-accent-2: #5eead4;
  --g26-surface: rgba(22, 22, 34, 0.85);
  --g26-radius: 14px;
  --g26-radius-sm: 10px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--space-dark); }
body, .g26-body {
  background: var(--space-dark);
  color: var(--star-white);
  font-family: var(--g26-font);
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--g26-header-h);
  line-height: 1.55;
}
a { text-decoration: none; color: inherit; }
h1, h2, h3 { margin-top: 0; font-weight: 700; }

body.g26-body:has(.g26-ad-slot--top) .anchorAdContent { display: none !important; }

.g26-page-wrap {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  min-width: 0;
}

/* CMS / 基座布局覆写：避免 special-grid、portholes 横向裁切 */
.g26-body .daily-special,
.g26-body .g26-spotlight {
  overflow-x: visible;
  white-space: normal;
}
.g26-body .special-grid.g26-card-grid,
.g26-body .special-grid.g26-pick-bento,
.g26-body .special-grid.g26-zigzag {
  display: grid !important;
  white-space: normal !important;
  overflow-x: visible !important;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.g26-body .g26-page-wrap.game-detail-container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  min-width: 0;
  box-sizing: border-box;
}

/* ── List essentials ── */
.article-list .special-card-content,
.article-list .carousel-card-content { padding: 12px 14px 16px; }
.article-list .game-title,
.special-card .game-title,
.game-card .card-title,
.carousel-card .game-title,
.g26-featured-body .game-title,
.g26-flash-body .game-title,
.g26-zigzag-copy .game-title,
.g26-ranked-body .game-title,
.g26-tag-body .game-title,
.g26-pick-copy .game-title {
  display: block;
  max-width: 100%;
  min-width: 0;
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--star-white);
}
.article-list .game-title + .game-star,
.special-card .game-title + .game-star,
.game-card .card-title + .game-star {
  margin-top: 0;
  margin-bottom: 6px;
}
.special-card-content, .carousel-card-content, .g26-featured-body,
.g26-zigzag-copy, .g26-ranked-body, .g26-tag-body, .g26-pick-copy, .g26-flash-body { min-width: 0; }
.article-list a:hover .game-title,
.article-list a:hover .card-title { color: var(--comet-cyan); }
.brief-comment-game {
  margin: 0;
  font-size: 0.86rem;
  color: var(--ink-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.module-description { color: var(--ink-muted); margin: 0 0 1rem; font-size: 0.95rem; }
.game-star, .star-rating { display: inline-flex; gap: 2px; align-items: center; }
.game-star .star-full::before { content: "★"; color: var(--g26-star-full); }
.game-star .star-empty::before { content: "☆"; color: var(--g26-star-empty); }
.game-star.game-star--detail-hero { margin: 0 0 10px; }

/* ── Header (floating dock) ── */
.g26-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 10px 16px 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(13, 13, 20, 0.92) 0%, rgba(13, 13, 20, 0.55) 70%, transparent 100%);
  overflow: visible;
}
.g26-header-shell {
  max-width: 1160px;
  margin: 0 auto;
  pointer-events: auto;
  overflow: visible;
}
.g26-header-dock {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 8px 10px 8px 14px;
  border-radius: 999px;
  background: rgba(22, 22, 34, 0.82);
  border: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: visible;
}
.g26-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.g26-logo .logo-text {
  font-weight: 700;
  font-size: 0.92rem;
  background: linear-gradient(135deg, var(--comet-cyan), var(--g26-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}
.logo-img {
  display: block;
  height: 32px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

/* Center nav track */
.g26-nav-track {
  display: none;
  align-items: center;
  gap: 6px;
  min-width: 0;
  max-width: 100%;
  overflow: visible;
}
@media (min-width: 768px) { .g26-nav-track { display: flex; } }
.g26-nav-scroll {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 0 1 auto;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  padding: 4px;
  border-radius: 999px;
  background: rgba(13, 13, 20, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.1);
  overflow: hidden;
}
@media (min-width: 769px) {
  .g26-header-dock {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .g26-logo { flex-shrink: 0; }
  .g26-nav-track {
    flex: 0 1 auto;
    min-width: 0;
    max-width: calc(100% - 17rem);
  }
  .g26-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
  }
}
.g26-nav-more {
  position: relative;
  flex-shrink: 0;
  padding: 4px;
  border-radius: 999px;
  background: rgba(13, 13, 20, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.1);
}
.g26-nav .nav-link,
.g26-nav .nav-more-toggle { white-space: nowrap; flex: 0 0 auto; }
.g26-nav .nav-item--primary.is-overflow-hidden { display: none !important; }
.g26-nav-more[hidden] { display: none !important; }
.g26-nav-more.nav-more { margin-left: 0; }
.g26-nav .nav-more-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  font: inherit;
  background: rgba(139, 124, 248, 0.15);
  color: var(--comet-cyan);
  box-shadow: none;
  font-weight: 600;
}
.g26-nav .nav-more-toggle:hover {
  background: rgba(139, 124, 248, 0.28);
  color: var(--star-white);
}
.g26-nav .nav-more-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 200px;
  max-height: min(70vh, 360px);
  overflow-y: auto;
  padding: 8px;
  background: var(--space-blue);
  border: 1px solid var(--line-soft);
  border-radius: var(--g26-radius-sm);
  z-index: 1300;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}
.g26-nav-more.active .nav-more-menu { display: flex; flex-direction: column; gap: 2px; }
.g26-nav .nav-more-menu .nav-link {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--star-white);
  font-size: 0.88rem;
}
.g26-nav .nav-more-menu .nav-link:hover,
.g26-nav .nav-more-menu .nav-link.active { background: rgba(139, 124, 248, 0.2); color: var(--comet-cyan); }
.g26-nav-more.active .g26-more-chevron { transform: rotate(180deg); }
.g26-more-chevron { transition: transform 0.15s; flex-shrink: 0; }
.g26-nav .nav-link::after,
.g26-nav .nav-more-toggle::after { display: none !important; }
.g26-nav .nav-link {
  padding: 7px 13px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-muted);
  border-radius: 999px;
  transition: color 0.15s, background 0.15s, box-shadow 0.15s;
}
.g26-nav .nav-link:hover {
  color: var(--star-white);
  background: rgba(139, 124, 248, 0.12);
}
.g26-nav .nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(139, 124, 248, 0.55), rgba(99, 102, 241, 0.45));
  box-shadow: 0 0 16px rgba(139, 124, 248, 0.25);
}

/* Right actions */
.g26-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.g26-dock-search {
  display: flex;
  align-items: stretch;
  flex: 1;
  min-width: 0;
  max-width: 188px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: rgba(13, 13, 20, 0.5);
  overflow: hidden;
  transition: max-width 0.2s, border-color 0.15s;
}
@media (min-width: 900px) {
  .g26-dock-search {
    flex: 0 1 auto;
    width: 148px;
    max-width: 188px;
  }
}
.g26-dock-search:focus-within {
  max-width: 188px;
  border-color: rgba(94, 234, 212, 0.4);
}
@media (min-width: 900px) {
  .g26-dock-search:focus-within { width: 188px; }
}
.g26-dock-search .form-input {
  flex: 1;
  min-width: 0;
  padding: 7px 10px 7px 14px;
  border: none;
  background: transparent;
  color: var(--star-white);
  font-family: inherit;
  font-size: 0.82rem;
}
.g26-dock-search .form-input::placeholder { color: var(--ink-muted); }
.g26-dock-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: none;
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
}
.g26-dock-search-btn:hover { color: var(--comet-cyan); }
.g26-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--comet-cyan), var(--g26-accent));
  color: #0d0d14;
  font-weight: 700;
  font-size: 0.82rem;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 20px rgba(94, 234, 212, 0.2);
}
.g26-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(139, 124, 248, 0.35);
}
.g26-cta-icon { display: none; }
@media (min-width: 900px) {
  .g26-cta-label { display: inline; }
}

/* ── Mobile nav ── */
.g26-mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  background: rgba(13, 13, 20, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-soft);
  padding-bottom: env(safe-area-inset-bottom);
}
@media (min-width: 768px) { .g26-mobile-bar { display: none; } }
.g26-mobile-bar .mobile-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 4px;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--ink-muted);
}
.g26-mobile-bar .mobile-nav-item.active { color: var(--comet-cyan); }
.g26-mob-icon { display: flex; align-items: center; justify-content: center; }

/* ── Hero (site copy only) ── */
.g26-hero-aurora {
  position: relative;
  overflow: hidden;
  padding: 32px 0 28px;
  border-bottom: 1px solid var(--line-soft);
}
.g26-aurora-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 40%, rgba(94, 234, 212, 0.12), transparent),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(139, 124, 248, 0.15), transparent),
    radial-gradient(ellipse 40% 40% at 50% 80%, rgba(251, 146, 60, 0.08), transparent);
  pointer-events: none;
}
.g26-hero-inner {
  position: relative;
  max-width: 40rem;
}
.g26-hero-kicker {
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--comet-cyan);
}
.g26-hero-aurora .hero-title {
  font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  font-weight: 800;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.g26-hero-aurora .hero-subtitle {
  margin-top: 10px;
  color: var(--ink-muted);
  max-width: 36em;
  font-size: 0.95rem;
  line-height: 1.55;
}
.g26-hero-aurora .hero-subtitle p { margin: 0; }
.g26-hero-search {
  display: flex;
  align-items: stretch;
  margin-top: 18px;
  max-width: 420px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: var(--g26-surface);
  overflow: hidden;
}
.g26-top-module { padding-top: 20px; }
.g26-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--g26-accent), #6366f1);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s;
}
.g26-btn-primary:hover { transform: translateY(-2px); }
.g26-hero-search .form-input {
  flex: 1;
  min-width: 0;
  padding: 11px 16px;
  border: none;
  background: transparent;
  color: var(--star-white);
  font-family: inherit;
  font-size: 0.9rem;
}
.g26-hero-search .form-input::placeholder { color: var(--ink-muted); }
.g26-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: none;
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
}
.g26-search-btn:hover { color: var(--comet-cyan); }
.g26-hero-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.g26-cat-pill {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-muted);
  background: rgba(22, 22, 34, 0.6);
  transition: border-color 0.15s, color 0.15s;
}
.g26-cat-pill:hover {
  border-color: var(--g26-accent);
  color: var(--star-white);
}

/* ── Section headers ── */
.g26-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.g26-section-head h2 {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 700;
  margin: 0;
}
.g26-badge {
  display: inline-block;
  margin-right: 8px;
  padding: 3px 10px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--sun-gold), #f97316);
  color: #1e293b;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  vertical-align: middle;
}
.module-link-more {
  font-weight: 600;
  color: var(--comet-cyan);
  font-size: 0.88rem;
  white-space: nowrap;
}
.module-link-more:hover { color: var(--star-white); }
.g26-section-head--rail { align-items: flex-start; }
.g26-section-desc { margin: 6px 0 0; font-size: 0.9rem; }

.g26-img-ph { background: #1a1a28; }
.g26-card-thumb img,
.g26-zigzag-thumb img,
.g26-ranked-thumb img,
.g26-tag-thumb img,
.g26-pick-thumb img,
.g26-flash-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Module 0: flash rows ── */
.g26-flash-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.g26-flash-row {
  display: grid;
  grid-template-columns: 44px 200px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: var(--g26-radius);
  background: var(--g26-surface);
  border: 1px solid var(--line-soft);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.g26-flash-row:hover {
  border-color: rgba(94, 234, 212, 0.4);
  transform: translateX(4px);
  box-shadow: -4px 0 0 var(--comet-cyan);
}
.g26-flash-idx {
  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(180deg, var(--comet-cyan), var(--g26-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.g26-flash-thumb {
  aspect-ratio: 16/10;
  border-radius: var(--g26-radius-sm);
  overflow: hidden;
  background: #1a1a28;
}
.g26-flash-body { padding: 4px 0; }
.g26-flash-go {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(139, 124, 248, 0.15);
  color: var(--comet-cyan);
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.g26-flash-row:hover .g26-flash-go {
  background: linear-gradient(135deg, var(--comet-cyan), var(--g26-accent));
  color: #0d0d14;
  transform: scale(1.06);
}

/* ── Module 1: pick bento wall ── */
.g26-pick-bento {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
@media (min-width: 900px) {
  .g26-pick-bento {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(0, auto);
  }
  .g26-pick-tile--hero {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
  }
  .g26-pick-tile--hero .g26-pick-thumb {
    aspect-ratio: auto;
    flex: 1;
    min-height: 200px;
  }
}
.g26-pick-tile {
  border-radius: var(--g26-radius);
  background: var(--g26-surface);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: transform 0.15s, border-color 0.15s;
}
.g26-pick-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 124, 248, 0.45);
}
.g26-pick-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #1a1a28;
}
.g26-pick-tile--hero .g26-pick-thumb { aspect-ratio: 16/11; }
.g26-pick-ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sun-gold), #f97316);
  color: #1e293b;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.g26-pick-tile--hero .brief-comment-game { -webkit-line-clamp: 3; }

/* ── Module even: zigzag rows ── */
.g26-zigzag {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.g26-zigzag-row {
  display: grid;
  grid-template-columns: minmax(120px, 220px) minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.15s;
}
.g26-zigzag-row:last-child { border-bottom: none; }
.g26-zigzag-row:hover { background: rgba(139, 124, 248, 0.06); }
.g26-zigzag-thumb {
  aspect-ratio: 16/10;
  border-radius: var(--g26-radius-sm);
  overflow: hidden;
  background: #1a1a28;
}
.g26-zigzag-idx {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--g26-accent);
  letter-spacing: 0.08em;
}
.g26-zigzag-arrow {
  font-size: 1.2rem;
  color: var(--ink-muted);
  transition: color 0.15s, transform 0.15s;
}
.g26-zigzag-row:hover .g26-zigzag-arrow {
  color: var(--comet-cyan);
  transform: translateX(4px);
}
.g26-section-zigzag { background: rgba(22, 22, 34, 0.4); }

/* ── Module odd: ranked list ── */
.g26-ranked-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: g26-rank;
}
.g26-ranked-row {
  display: grid;
  grid-template-columns: 48px 120px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px 12px;
  border-radius: var(--g26-radius-sm);
  transition: background 0.15s;
}
.g26-ranked-row:hover { background: rgba(94, 234, 212, 0.06); }
.g26-ranked-num {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, var(--comet-cyan), var(--g26-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
}
.g26-ranked-thumb {
  aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a28;
}
.g26-section-ranked .g26-ranked-list { border: 1px solid var(--line-soft); border-radius: var(--g26-radius); overflow: hidden; }
.g26-section-ranked .g26-ranked-list li + li { border-top: 1px solid var(--line-soft); }

/* ── Shared cards (detail / fallback) ── */
.g26-game-card,
.g26-tag-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--g26-radius);
  background: var(--g26-surface);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: transform 0.15s, border-color 0.15s;
}
.g26-game-card:hover,
.g26-tag-card:hover {
  transform: translateY(-2px);
  border-color: rgba(94, 234, 212, 0.35);
}
.g26-card-thumb { aspect-ratio: 16/10; overflow: hidden; background: #1a1a28; }
.g26-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.g26-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin: 6px 0; }
.g26-tag-chip {
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(139, 124, 248, 0.2);
  color: #c4b5fd;
  font-weight: 500;
}

/* ── Category orbit ── */
.g26-cat-orbit { padding: 36px 0 64px; }
.g26-cat-heading {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  margin: 0 0 28px;
  text-align: center;
}
.g26-orbit-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 12px 0;
}
.g26-orbit-cat {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  text-align: center;
  transition: transform 0.15s;
}
.g26-orbit-cat:hover { transform: scale(1.08); }
.g26-orbit-cat-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(135deg, rgba(139, 124, 248, 0.5), rgba(94, 234, 212, 0.5)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.g26-orbit-cat-0 .g26-orbit-cat-ring { background: linear-gradient(135deg, #5eead4, #2dd4bf) border-box; }
.g26-orbit-cat-1 .g26-orbit-cat-ring { background: linear-gradient(135deg, #8b7cf8, #6366f1) border-box; }
.g26-orbit-cat-2 .g26-orbit-cat-ring { background: linear-gradient(135deg, #fb923c, #f97316) border-box; }
.g26-orbit-cat-3 .g26-orbit-cat-ring { background: linear-gradient(135deg, #60a5fa, #3b82f6) border-box; }
.g26-orbit-cat-4 .g26-orbit-cat-ring { background: linear-gradient(135deg, #f472b6, #ec4899) border-box; }
.g26-orbit-cat-5 .g26-orbit-cat-ring { background: linear-gradient(135deg, #34d399, #10b981) border-box; }
.g26-orbit-cat-name {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
  padding: 0 8px;
  max-width: 90px;
}

/* ── Sections ── */
.g26-pick-section {
  background: linear-gradient(180deg, rgba(139, 124, 248, 0.08) 0%, transparent 100%);
  border-top: 1px solid var(--line-soft);
}
.g26-spotlight, .daily-special { padding: 32px 0; content-visibility: auto; contain-intrinsic-size: auto 300px; }

/* ── Tags page ── */
.g26-body--tags .tags-box.g26-tags-page {
  flex: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding-bottom: 80px;
}
.g26-tags-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding-top: 24px;
  padding-bottom: 40px;
  align-items: start;
}
@media (min-width: 900px) {
  .g26-tags-layout {
    grid-template-columns: 232px minmax(0, 1fr);
    gap: 28px;
  }
}
.g26-tags-sidebar { display: none; }
@media (min-width: 900px) {
  .g26-tags-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: calc(var(--g26-header-h) + 16px);
  }
}
.g26-sidebar-panel {
  padding: 18px;
  border-radius: var(--g26-radius);
  background: var(--g26-surface);
  border: 1px solid var(--line-soft);
}
.g26-sidebar-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin: 0 0 12px;
}
.g26-sidebar-cats {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: min(52vh, 420px);
  overflow-y: auto;
}
.g26-sidebar-link {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-muted);
  transition: background 0.15s, color 0.15s;
}
.g26-sidebar-link:hover {
  background: rgba(139, 124, 248, 0.12);
  color: var(--star-white);
}
.g26-sidebar-link.active {
  background: rgba(139, 124, 248, 0.28);
  color: var(--star-white);
  font-weight: 600;
  box-shadow: inset 3px 0 0 var(--g26-accent);
}
.g26-view-panel {
  display: flex;
  gap: 6px;
}
.g26-sidebar-view {
  padding: 4px;
  border-radius: var(--g26-radius-sm);
  background: var(--g26-surface);
  border: 1px solid var(--line-soft);
}
.g26-tags-view-mobile { display: none; }
.g26-view-btn {
  flex: 1;
  padding: 9px 10px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--ink-muted);
  font-weight: 500;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
}
.g26-view-btn.is-active {
  background: rgba(139, 124, 248, 0.25);
  color: var(--star-white);
}
.g26-tags-main {
  min-width: 0;
  width: 100%;
}
.g26-tags-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.g26-tags-intro h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
}
.g26-tags-intro .tag-h2 {
  font-size: 0.95rem;
  color: var(--ink-muted);
  margin: 8px 0 0;
  font-weight: 400;
  line-height: 1.5;
}
.g26-tags-toolbar {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
}
.g26-filter-toggle {
  display: none;
  align-items: center;
  padding: 9px 16px;
  border-radius: var(--g26-radius-sm);
  border: 1px solid var(--line-soft);
  background: var(--g26-surface);
  color: var(--star-white);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
}
.g26-drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
body.g26-drawer-open .g26-drawer-backdrop { display: block; }
.g26-tags-drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
}
body.g26-drawer-open .g26-tags-drawer { pointer-events: none; }
body.g26-drawer-open .g26-drawer-panel { pointer-events: auto; }
.g26-drawer-panel {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(300px, 88vw);
  background: var(--space-blue);
  border-right: 1px solid var(--line-soft);
  padding: calc(var(--g26-header-h) + 20px) 20px 20px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.22s ease;
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.4);
  z-index: 1200;
}
body.g26-drawer-open .g26-drawer-panel { transform: translateX(0); }
.g26-drawer-panel h2 {
  font-size: 0.85rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}
.g26-drawer-tab {
  display: block;
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--line-soft);
  color: var(--star-white);
}
.g26-drawer-tab:hover { color: var(--comet-cyan); }
.g26-drawer-tab.active {
  color: var(--comet-cyan);
  font-weight: 600;
  padding-left: 10px;
  border-left: 3px solid var(--g26-accent);
}

/* Tags grid — override CMS base .games-grid */
.g26-body--tags .g26-tags-grid.games-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  white-space: normal;
  overflow: visible;
}
@media (min-width: 640px) {
  .g26-body--tags .g26-tags-grid.games-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (min-width: 1024px) {
  .g26-body--tags .g26-tags-grid.games-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}
.g26-tag-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #1a1a28;
}
.g26-tag-card .special-card-content {
  padding: 12px 14px 16px;
}
.g26-empty--inline {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
}

/* Tags list view */
.g26-body--tags .g26-tags-grid.games-grid.list-view {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
}
.g26-body--tags .g26-tags-grid.list-view .g26-tag-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--line-soft);
  background: transparent;
  padding: 14px 0;
}
.g26-body--tags .g26-tags-grid.list-view .g26-tag-card:hover {
  transform: none;
  background: rgba(94, 234, 212, 0.05);
}
.g26-body--tags .g26-tags-grid.list-view .g26-tag-thumb {
  border-radius: var(--g26-radius-sm);
}
.g26-body--tags .g26-tags-grid.list-view .g26-tag-body {
  padding: 0;
}

.g26-body--tags .pagination-container {
  margin-top: 28px;
}

/* ── Detail page ── */
.g26-detail-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .g26-detail-split {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
    gap: 28px;
    align-items: start;
  }
}
.g26-detail-meta { order: 1; min-width: 0; }
.g26-detail-cover {
  order: 2;
  border-radius: var(--g26-radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.g26-detail-cover img { width: 100%; height: auto; aspect-ratio: 16/10; object-fit: cover; display: block; }
.g26-detail-crumb { font-size: 0.85rem; color: var(--ink-muted); margin-bottom: 16px; }
.g26-detail-crumb a { color: var(--comet-cyan); }
.g26-detail-crumb a:hover { color: var(--star-white); }
.breadcrumb-list { display: flex; flex-wrap: wrap; gap: 4px; list-style: none; padding: 0; margin: 0; }
#game-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 6px;
}
.g26-detail-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.g26-tag-pill {
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(139, 124, 248, 0.2);
  color: #c4b5fd;
  font-size: 0.8rem;
  font-weight: 500;
}
.g26-btn-play {
  display: inline-flex;
  align-items: center;
  margin: 18px 0;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--g26-accent), #6366f1);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s;
}
.g26-btn-play:hover { transform: translateY(-2px); }
.g26-detail-block {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.g26-detail-block h2 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--comet-cyan);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.g26-detail-block p,
.g26-detail-block .rich-content {
  color: var(--ink-muted);
  line-height: 1.7;
  margin: 0;
}
.g26-detail-page {
  padding-top: 24px;
  padding-bottom: 48px;
}
/* CMS 基座 .detail-split-block 常有负边距拉满宽，只覆写详情正文块 */
.g26-body--detail .g26-detail-block.detail-split-block {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: auto !important;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}
.g26-body--detail .rich-content {
  overflow-x: auto;
  word-break: break-word;
}
.g26-body--detail .rich-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--g26-radius-sm);
}
.g26-related .g26-card-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* ── Game modal ── */
.g26-game-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.88);
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.g26-game-modal.is-open { display: flex; }
.g26-modal-panel {
  width: min(960px, 100%);
  border-radius: var(--g26-radius);
  border: 1px solid var(--line-soft);
  background: var(--space-blue);
  position: relative;
  overflow: hidden;
}
.g26-modal-panel iframe { width: 100%; aspect-ratio: 16/9; border: none; display: block; }
.g26-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--line-soft);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  z-index: 1;
}

/* ── Footer ── */
.g26-footer {
  margin-top: auto;
  border-top: 1px solid var(--line-soft);
  padding-top: 36px;
}
.g26-footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  padding-bottom: 28px;
}
.g26-footer-brand p { color: var(--ink-muted); font-size: 0.88rem; margin: 8px 0 0; }
.g26-footer-name { font-size: 1rem; }
.footer-social-link { color: var(--comet-cyan); font-weight: 500; margin-right: 14px; font-size: 0.85rem; }
.footer-social-link:hover { color: var(--star-white); }
.g26-footer-nav { display: flex; flex-direction: column; gap: 8px; font-size: 0.85rem; font-weight: 500; }
.g26-footer-nav a { color: var(--ink-muted); }
.g26-footer-nav a:hover { color: var(--star-white); }
.g26-footer-copy {
  text-align: center;
  padding: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.8rem;
  color: var(--ink-muted);
}

/* ── Misc ── */
.g26-ad-slot { padding: 16px 0; overflow: hidden; }
.g26-page-wrap > * + .legal-container { margin-top: 24px; }
.legal-container {
  padding: 28px;
  margin-bottom: 48px;
  background: var(--g26-surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--g26-radius);
  line-height: 1.7;
}
.legal-container h1, .legal-container h2 { color: var(--comet-cyan); }
.legal-container a { color: var(--comet-cyan); }
.g26-empty { text-align: center; padding: 48px 20px; color: var(--ink-muted); }
.g26-back-top {
  position: fixed;
  bottom: 80px;
  right: 16px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--g26-surface);
  color: var(--star-white);
  border: 1px solid var(--line-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.15s;
}
.g26-back-top.show { opacity: 1; pointer-events: auto; }
.g26-back-top:hover { transform: translateY(-2px); border-color: var(--g26-accent); }
.pagination-container { margin-top: 24px; }
.g26-related { padding: 32px 0 48px; }

@media (max-width: 768px) {
  :root { --g26-header-h-mobile: 96px; }
  body, .g26-body { padding-top: var(--g26-header-h-mobile); }
  .g26-header { padding: 8px 12px 0; }
  .g26-header-dock {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "logo cta"
      "search search";
    gap: 8px 10px;
    align-items: center;
    border-radius: var(--g26-radius);
    padding: 8px 10px;
  }
  .g26-nav-track { display: none !important; }
  .g26-logo {
    grid-area: logo;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }
  .g26-logo .logo-text {
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }
  .g26-header-actions { display: contents; }
  .g26-dock-search {
    grid-area: search;
    width: 100%;
    max-width: none;
    flex: none;
  }
  .g26-dock-search:focus-within { max-width: none; }
  .g26-header-cta {
    grid-area: cta;
    flex-shrink: 0;
  }
  .g26-logo .logo-img { height: 30px; max-width: 120px; }
  .g26-header-cta {
    padding: 8px 12px;
    background: linear-gradient(135deg, var(--g26-accent), #6366f1);
    color: #fff;
    box-shadow: none;
  }
  .g26-cta-label { display: none; }
  .g26-cta-icon { display: block; }
  .g26-page-wrap { padding-left: max(16px, env(safe-area-inset-left)); padding-right: max(16px, env(safe-area-inset-right)); }
  .g26-hero-aurora { padding: 20px 0 22px; }
  .g26-hero-search { max-width: none; }
  .g26-top-module { padding-top: 14px; }
  .g26-flash-row {
    grid-template-columns: 36px 110px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px 12px;
  }
  .g26-flash-go { width: 34px; height: 34px; }
  .g26-pick-bento,
  .g26-body .special-grid.g26-pick-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }
  .g26-pick-tile--hero {
    grid-column: auto;
    grid-row: auto;
    display: block;
  }
  .g26-pick-tile--hero .g26-pick-thumb {
    aspect-ratio: 16/10;
    flex: none;
    min-height: 0;
  }
  .g26-pick-tile--hero .brief-comment-game { -webkit-line-clamp: 2; }
  .g26-pick-section .g26-pick-copy { padding: 10px 10px 12px; }
  .g26-pick-section .g26-pick-copy .game-title { font-size: 0.85rem; }
  .g26-pick-section .g26-pick-copy .brief-comment-game { font-size: 0.75rem; }
  .g26-pick-ribbon { top: 8px; left: 8px; font-size: 0.65rem; padding: 3px 8px; }
  .g26-zigzag-row {
    grid-template-columns: minmax(100px, 130px) minmax(0, 1fr);
  }
  .g26-zigzag-arrow { display: none; }
  .g26-ranked-row { grid-template-columns: 36px 100px minmax(0, 1fr); gap: 10px; }
  .g26-orbit-cat { width: 92px; height: 92px; }
  .g26-tags-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .g26-filter-toggle,
  .g26-tags-view-mobile { display: flex; }
  .g26-body--tags .g26-tags-grid.games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .g26-body--tags .g26-tags-grid.list-view .g26-tag-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 0;
  }
  .g26-body--tags .g26-tags-grid.list-view .g26-tag-thumb {
    width: 100%;
  }
  .g26-detail-split { grid-template-columns: 1fr; }
  .g26-detail-cover { order: -1; }
  .g26-detail-page { padding-top: 16px; padding-bottom: 32px; }
  .g26-related .g26-card-grid,
  .g26-related .special-grid.g26-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }
  .g26-related .g26-game-card .special-card-content {
    padding: 10px 10px 12px;
  }
  .g26-related .g26-game-card .game-title {
    font-size: 0.85rem;
  }
  .g26-related .g26-game-card .brief-comment-game {
    font-size: 0.75rem;
    -webkit-line-clamp: 2;
  }
  .g26-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .g26-footer-inner { grid-template-columns: 1fr; }
}
