:root {
  --ink: #0f172a;
  --text: #334155;
  --muted: #64748b;
  --line: #e5e7eb;
  --soft: #f8fafc;
  --surface: #ffffff;
  --dark: #111827;
  --dark-2: #1f2937;
  --orange: #f97316;
  --orange-700: #ea580c;
  --red: #dc2626;
  --yellow: #facc15;
  --blue: #2563eb;
  --shadow: 0 18px 45px rgba(15, 23, 42, .12);
  --radius: 14px;
  --font: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: var(--font);
  line-height: 1.68;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(100% - 32px, 1240px); margin: 0 auto; }
.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 200;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 90;
  color: #fff;
  transition: background .18s ease, box-shadow .18s ease, backdrop-filter .18s ease;
}
.site-header.is-scrolled,
.type-article .site-header,
.type-page .site-header,
.type-category .site-header,
.type-tag .site-header,
.type-search .site-header {
  background: rgba(15, 23, 42, .94);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .22);
  backdrop-filter: blur(14px);
}
.nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #fff;
  font-weight: 900;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  object-fit: contain;
}
.brand span {
  max-width: 210px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links li { list-style: none; }
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links .on a {
  background: rgba(249, 115, 22, .18);
  color: #fff;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-search {
  display: flex;
  width: 220px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
}
.nav-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 9px 12px;
  background: transparent;
  color: #fff;
}
.nav-search input::placeholder { color: rgba(255, 255, 255, .68); }
.nav-search button,
.tip-button,
.big-search button,
.comment-form button,
.primary-link,
.hero-action {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--red));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}
.nav-search button { width: 42px; padding: 8px 0; }
.tip-button { padding: 9px 15px; font-size: 13px; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 620px;
  padding: 106px 0 44px;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 20%, rgba(249, 115, 22, .34), transparent 30%),
    linear-gradient(90deg, rgba(15, 23, 42, .94) 0, rgba(15, 23, 42, .72) 46%, rgba(15, 23, 42, .35) 100%),
    linear-gradient(180deg, rgba(15, 23, 42, .20), rgba(15, 23, 42, .92));
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
}
.hero-wrap { position: relative; z-index: 2; }
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: end;
}
.hero-copy {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.hero-kicker span,
.hero-kicker b,
.feature-cover span,
.card-cover span,
.rank-card span,
.hero-thumb span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.hero-kicker span,
.feature-cover span,
.card-cover span,
.rank-card span { background: var(--orange); }
.hero-kicker b,
.hero-thumb span { background: rgba(255, 255, 255, .18); }
.hero-copy h1 {
  margin: 0;
  max-width: 780px;
  color: #fff;
  font-size: 42px;
  line-height: 1.18;
  font-weight: 900;
}
.hero-copy p {
  margin: 14px 0 0;
  max-width: 680px;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}
.hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin-top: 24px;
  padding: 11px 22px;
}
.hero-stack {
  display: grid;
  gap: 12px;
}
.hero-thumb {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 7px 12px;
  min-height: 106px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  background: rgba(15, 23, 42, .58);
  color: #fff;
  backdrop-filter: blur(12px);
  transition: transform .18s ease, border-color .18s ease;
}
.hero-thumb:hover {
  transform: translateX(-4px);
  border-color: rgba(249, 115, 22, .72);
}
.hero-thumb img {
  grid-row: 1 / 3;
  width: 112px;
  height: 86px;
  border-radius: 9px;
  object-fit: cover;
}
.hero-thumb strong {
  align-self: start;
  min-width: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.42;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.hero-dots {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}
.hero-dots i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .45);
}
.hero-dots i:first-child { width: 26px; background: var(--orange); }

.tag-rail {
  position: sticky;
  top: 64px;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
}
.tag-rail-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
}
.tag-rail strong {
  color: var(--ink);
  font-size: 14px;
  white-space: nowrap;
}
.tag-scroll {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tag-scroll::-webkit-scrollbar { display: none; }
.tag-scroll a,
.hot-tags a,
.tag-cloud a,
.mini-tags span,
.tags a,
.tags strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 11px;
  border-radius: 999px;
  background: #fff7ed;
  color: var(--orange-700);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.tag-scroll a:nth-child(3n),
.hot-tags a:nth-child(3n) { background: #eff6ff; color: var(--blue); }
.tag-scroll a:nth-child(3n+1),
.hot-tags a:nth-child(3n+1) { background: #fef3c7; color: #92400e; }
.tag-scroll a:nth-child(3n+2),
.hot-tags a:nth-child(3n+2) { background: #fee2e2; color: #b91c1c; }

.search-strip {
  padding: 28px 0 18px;
  background: #fff;
}
.big-search {
  display: flex;
  max-width: 720px;
  margin: 0 auto;
  padding: 6px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(249, 115, 22, .12);
}
.big-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 12px 18px;
  background: transparent;
}
.big-search button {
  min-width: 98px;
  padding: 10px 18px;
}
.hot-tags {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.section { padding: 36px 0; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}
.section-head > a {
  color: var(--orange-700);
  font-size: 14px;
  font-weight: 800;
}
.breaking-section { background: var(--soft); }
.breaking-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: stretch;
}
.feature-card,
.news-card,
.sidebox,
.single-article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
}
.feature-card {
  overflow: hidden;
}
.feature-cover {
  position: relative;
  display: block;
  height: 310px;
  overflow: hidden;
  background: var(--dark);
}
.feature-cover:after,
.card-cover:after,
.rank-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, .02), rgba(15, 23, 42, .70));
  pointer-events: none;
}
.feature-cover img,
.card-cover img,
.rank-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .32s ease;
}
.feature-cover span,
.card-cover span,
.rank-card span {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
}
.feature-body { padding: 18px; }
.feature-body h3,
.card-body h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.42;
}
.feature-body h3 { font-size: 22px; }
.feature-body p,
.card-body p {
  color: var(--muted);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.feature-body p {
  margin: 10px 0 14px;
  -webkit-line-clamp: 2;
}
.story-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.story-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  gap: 4px 12px;
  min-height: 126px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: transform .18s ease, border-color .18s ease;
}
.story-item:hover {
  transform: translateY(-3px);
  border-color: #fdba74;
}
.story-item img {
  grid-row: 1 / 4;
  width: 120px;
  height: 104px;
  border-radius: 9px;
  object-fit: cover;
}
.story-item span {
  color: var(--orange-700);
  font-size: 12px;
  font-weight: 800;
}
.story-item strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.42;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.story-item em {
  color: #94a3b8;
  font-size: 12px;
  font-style: normal;
}

.rank-section {
  padding: 42px 0 48px;
  background:
    linear-gradient(180deg, rgba(249, 115, 22, .09), transparent 36%),
    var(--dark);
  color: #fff;
}
.dark-head h2 { color: #fff; }
.segmented {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: #f3f4f6;
}
.segmented span {
  padding: 6px 13px;
  border-radius: 999px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 800;
}
.segmented span:first-child {
  background: #fff;
  color: var(--orange-700);
  box-shadow: 0 4px 12px rgba(15, 23, 42, .08);
}
.segmented.dark { background: rgba(255, 255, 255, .10); }
.segmented.dark span { color: rgba(255, 255, 255, .70); }
.segmented.dark span:first-child { color: #fff; background: var(--orange); box-shadow: none; }
.rank-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 260px);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.rank-card {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: #020617;
}
.rank-card strong,
.rank-card em {
  position: absolute;
  left: 14px;
  right: 14px;
  z-index: 2;
}
.rank-card strong {
  bottom: 44px;
  color: #fff;
  font-size: 16px;
  line-height: 1.42;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.rank-card em {
  bottom: 18px;
  color: rgba(255, 255, 255, .70);
  font-size: 12px;
  font-style: normal;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.list-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.news-card {
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.news-card:hover {
  transform: translateY(-5px);
  border-color: #fdba74;
  box-shadow: var(--shadow);
}
.news-card:hover .card-cover img,
.feature-card:hover .feature-cover img,
.rank-card:hover img {
  transform: scale(1.05);
}
.news-card.is-top { border-color: #f97316; }
.card-cover {
  position: relative;
  display: block;
  height: 176px;
  overflow: hidden;
  background: var(--dark);
}
.card-cover em {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .58);
  color: #fff;
  font-size: 12px;
  font-style: normal;
}
.card-body { padding: 16px; }
.card-body h3 {
  margin-bottom: 8px;
  font-size: 16px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.card-body h3 a:hover,
.feature-body h3 a:hover,
.story-item:hover strong,
.sidebox a:hover {
  color: var(--orange-700);
}
.card-body p {
  min-height: 44px;
  margin: 0 0 12px;
  font-size: 13px;
  -webkit-line-clamp: 2;
}
.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.mini-tags span:nth-child(2) { color: #b91c1c; background: #fee2e2; }
.card-meta,
.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #94a3b8;
  font-size: 12px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 24px;
  align-items: start;
}
.single-layout { grid-template-columns: minmax(0, 860px) 310px; justify-content: center; }
.sidebar { display: grid; gap: 16px; }
.sidebox {
  padding: 18px;
}
.sidebox h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 16px;
}
.sidebox ul,
.sidebox ol,
.sidebox-content ul,
.sidebox-content ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebox li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}
.sidebox li:last-child { border-bottom: 0; }

.page-hero {
  padding: 112px 0 52px;
  background:
    radial-gradient(circle at 78% 20%, rgba(250, 204, 21, .18), transparent 28%),
    linear-gradient(135deg, #0f172a, #1f2937 55%, #7c2d12);
  color: #fff;
}
.page-hero h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
}
.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, .78);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
}
.single-main { padding-top: 70px; background: var(--soft); }
.single-article {
  padding: 28px;
}
.article-head h1 {
  margin: 0;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.25;
}
.article-meta {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 14px;
}
.article-cover {
  margin-top: 22px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark);
}
.article-cover img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}
.article-content {
  margin-top: 24px;
  color: #334155;
  font-size: 16px;
}
.article-content img {
  height: auto;
  border-radius: 12px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.article-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.article-nav div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff7ed;
}
.article-nav span {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
}
.article-nav a {
  color: var(--ink);
  font-weight: 800;
}
.comments {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.comment-item {
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}
.comment-item time {
  margin-left: 8px;
  color: #94a3b8;
  font-size: 12px;
}
.comment-form {
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius);
  background: #fff7ed;
}
.comment-form textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid #fdba74;
  border-radius: 12px;
  padding: 12px;
  outline: none;
}
.comment-form button {
  margin-top: 10px;
  padding: 10px 18px;
}
.pagebar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.pagebar a,
.pagebar span {
  display: grid;
  place-items: center;
  min-width: 38px;
  min-height: 38px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--orange-700);
  font-weight: 800;
}
.pagebar .current {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.primary-link {
  display: inline-flex;
  margin-top: 16px;
  padding: 10px 18px;
}

.site-footer {
  margin-top: 0;
  padding: 46px 0 0;
  background: #0b1120;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .8fr 1fr 1fr;
  gap: 28px;
}
.site-footer .brand img { filter: none; }
.footer-brand p,
.site-footer a,
.site-footer span,
.site-footer li {
  color: rgba(255, 255, 255, .72);
}
.site-footer h4 {
  margin: 0 0 14px;
  color: #fff;
}
.site-footer a,
.site-footer span {
  display: block;
  margin: 7px 0;
  font-size: 14px;
}
.site-footer .sidebox {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.site-footer .sidebox h3 { display: none; }
.site-footer .sidebox li {
  border-color: rgba(255, 255, 255, .12);
}
.site-footer .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer-links li {
  margin: 0;
  padding: 0;
}
.fansite-eeat-footer {
  color: rgba(255, 255, 255, .72) !important;
}
.fansite-eeat-footer a { color: #fff !important; }

/* cc-yy.net alignment pass */
.nav-inner {
  height: 64px;
}
.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}
.brand span {
  font-size: 15px;
}
.nav-links {
  gap: 8px;
}
.nav-links a {
  position: relative;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 14px;
}
.nav-links a:hover,
.nav-links .on a {
  background: transparent;
  color: #fff;
}
.nav-links .on a {
  color: var(--orange);
}
.nav-links .on a:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transform: translateX(-50%);
}
.nav-search-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  transition: background .18s ease;
}
.nav-search-icon:before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 999px;
}
.nav-search-icon:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  margin-left: 13px;
  margin-top: 13px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(45deg);
}
.nav-search-icon:hover {
  background: rgba(255, 255, 255, .24);
}
.hero {
  min-height: 620px;
  padding: 82px 0 0;
}
.hero-bg:before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .22), rgba(0, 0, 0, .12) 34%, rgba(0, 0, 0, .82)),
    linear-gradient(90deg, rgba(0, 0, 0, .70), rgba(0, 0, 0, .20) 58%, rgba(0, 0, 0, .58));
}
.hero-bg img {
  filter: saturate(.98) contrast(1.02);
}
.hero-layout {
  min-height: 510px;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 34px;
  align-items: center;
}
.hero-copy {
  min-height: 430px;
  justify-content: flex-end;
  padding-bottom: 44px;
}
.hero-copy h1 {
  max-width: 820px;
  font-size: 36px;
  line-height: 1.18;
}
.hero-copy p {
  max-width: 700px;
  color: rgba(255, 255, 255, .82);
}
.hero-kicker span,
.hero-kicker b {
  min-height: 24px;
  padding: 3px 11px;
}
.hero-action {
  margin-top: 22px;
  padding: 10px 24px;
  background: var(--orange);
}
.hero-stack {
  align-self: center;
  gap: 11px;
}
.hero-thumb {
  grid-template-columns: 64px minmax(0, 1fr);
  grid-template-rows: 1fr;
  align-items: center;
  min-height: 68px;
  padding: 8px;
  border: 0;
  border-radius: 12px;
  background: rgba(0, 0, 0, .32);
  backdrop-filter: blur(10px);
}
.hero-thumb:first-child {
  background: rgba(255, 255, 255, .20);
}
.hero-thumb img {
  grid-row: auto;
  width: 64px;
  height: 48px;
  border-radius: 8px;
}
.hero-thumb span {
  display: none;
}
.hero-thumb strong {
  font-size: 12px;
  line-height: 1.45;
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  justify-content: center;
  transform: translateX(-50%);
}
.tag-rail {
  top: 64px;
  background: #fff;
}
.tag-rail-inner {
  min-height: 56px;
  gap: 10px;
}
.tag-rail strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tag-rail strong:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--orange);
}
.tag-arrow {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: #f3f4f6;
  color: #64748b;
  font-size: 18px;
  line-height: 1;
}
.tag-scroll a,
.hot-tags a {
  min-height: 30px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
}
.tag-scroll a:nth-child(-n+3),
.hot-tags a:nth-child(-n+3) {
  border-color: #fed7aa;
  background: #fff7ed;
  color: var(--orange-700);
}
.search-strip {
  padding: 34px 0 28px;
  background: linear-gradient(180deg, #f8fafc, #fff);
}
.big-search {
  max-width: 640px;
  border: 2px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .12);
}
.big-search button {
  background: var(--orange);
  border-radius: 12px;
}
.breaking-section {
  padding-top: 34px;
  background: #fff;
}
.breaking-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr) minmax(0, .92fr);
  gap: 32px;
  align-items: start;
}
.feed-column {
  min-width: 0;
}
.column-head {
  margin-bottom: 18px;
}
.column-head h2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 20px;
}
.column-head h2:before {
  content: "";
  width: 4px;
  height: 22px;
  border-radius: 999px;
  background: var(--orange);
}
.column-head > a {
  font-size: 12px;
}
.feature-card {
  border: 0;
  border-radius: 16px;
  box-shadow: none;
}
.feature-cover {
  height: 380px;
  border-radius: 16px;
}
.feature-cover:after {
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, .82));
}
.feature-cover strong,
.feature-cover em {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  color: #fff;
}
.feature-cover strong {
  bottom: 48px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
}
.feature-cover em {
  bottom: 22px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-style: normal;
}
.feature-mini-list {
  display: grid;
  gap: 13px;
  margin-top: 18px;
}
.feature-mini {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}
.feature-mini img {
  width: 96px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}
.feature-mini strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.42;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.feature-mini em {
  color: #94a3b8;
  font-size: 12px;
  font-style: normal;
}
.feed-cards .story-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.feed-cards .story-item {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
}
.feed-cards .story-item img {
  width: 100%;
  height: 150px;
  border-radius: 0;
}
.feed-cards .story-item span,
.feed-cards .story-item strong,
.feed-cards .story-item em {
  margin-left: 14px;
  margin-right: 14px;
}
.feed-cards .story-item span {
  display: inline-flex;
  margin-top: 12px;
}
.feed-cards .story-item strong {
  margin-top: 6px;
  min-height: 42px;
}
.feed-cards .story-item em {
  display: block;
  margin-top: 8px;
  margin-bottom: 14px;
}
.trend-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.trend-item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  padding: 13px 16px;
  border-bottom: 1px solid #eef2f7;
}
.trend-item:last-child {
  border-bottom: 0;
}
.trend-no {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
}
.trend-item:nth-child(-n+3) .trend-no {
  background: var(--orange);
  color: #fff;
}
.trend-item strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.38;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.trend-item em {
  color: #94a3b8;
  font-size: 12px;
  font-style: normal;
}
.rank-section {
  padding: 56px 0 58px;
  background: #050b18;
}
.rank-title {
  margin-bottom: 28px;
  text-align: center;
}
.rank-title h2 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.2;
}
.rank-title p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}
.rank-scroll {
  grid-auto-columns: minmax(240px, 280px);
  gap: 20px;
}
.rank-card {
  min-height: 260px;
  border-radius: 16px;
}

@media (max-width: 1080px) {
  .nav-search { display: none; }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 74px;
    display: grid;
    justify-content: stretch;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, .96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }
  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .nav-links a { width: 100%; justify-content: center; }
  .hero-layout,
  .breaking-layout,
  .content-layout,
  .single-layout {
    grid-template-columns: 1fr;
  }
  .hero-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .card-grid,
  .list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .container { width: min(100% - 24px, 1240px); }
  .hero {
    min-height: auto;
    padding-top: 86px;
  }
  .hero-copy { min-height: 370px; }
  .hero-copy h1,
  .article-head h1,
  .page-hero h1 {
    font-size: 26px;
  }
  .hero-copy p { font-size: 14px; }
  .hero-stack,
  .story-list,
  .card-grid,
  .list-grid,
  .sidebar,
  .footer-grid,
  .article-nav {
    grid-template-columns: 1fr;
  }
  .story-item,
  .hero-thumb {
    grid-template-columns: 104px minmax(0, 1fr);
  }
  .story-item img,
  .hero-thumb img {
    width: 104px;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .tag-rail { top: 64px; }
  .tag-rail-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
  }
  .tag-scroll { width: 100%; }
  .big-search { border-radius: 14px; }
  .big-search input { padding-left: 12px; }
  .feature-cover { height: 230px; }
  .rank-scroll { grid-auto-columns: minmax(210px, 78vw); }
  .single-article { padding: 20px; }
  .tip-button { display: none; }
}
