:root {
  --field: #082a20;
  --field-2: #0f4f36;
  --field-3: #0a3a2b;
  --chalk: #f7fff8;
  --chalk-soft: rgba(247, 255, 248, .78);
  --surface: #ffffff;
  --surface-2: #f5faf6;
  --surface-3: #edf5ef;
  --ink: #101713;
  --muted: #64736a;
  --line: rgba(16, 23, 19, .12);
  --line-strong: rgba(16, 23, 19, .22);
  --green: #11884f;
  --lime: #b8f15f;
  --gold: #f1c24b;
  --red: #d94336;
  --black: #111613;
  --teal: #1c9f92;
  --blue: #2b6fbd;
  --radius: 8px;
  --shadow: 0 20px 50px rgba(4, 23, 15, .18);
  --shadow-soft: 0 12px 30px rgba(4, 23, 15, .10);
  --font-display: "Georgia", "Times New Roman", "Noto Serif SC", serif;
  --font-body: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--field);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(8, 42, 32, .96), rgba(8, 42, 32, .74) 330px, #eef5f0 331px, #eef5f0),
    var(--field);
  font-family: var(--font-body);
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.site-front::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .72;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, .20) calc(50% - 1px), rgba(255, 255, 255, .20) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 118px);
  background-size: 100% 100%, 72px 72px, 72px 72px, 100% 100%;
}

body.site-front::after {
  content: "";
  position: fixed;
  top: 118px;
  left: 50%;
  z-index: 0;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  letter-spacing: 0;
}

:focus-visible {
  outline: 3px solid rgba(184, 241, 95, .72);
  outline-offset: 3px;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  background: rgba(6, 29, 22, .88);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
}

.topbar,
.nav-topline {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
}

.main-nav a,
.btn,
.mobile-menu,
.back-link,
.attachment {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 9px 15px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.main-nav a {
  position: relative;
  min-height: 36px;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  color: var(--chalk);
  font-size: 14px;
  font-weight: 800;
}

.main-nav a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nav-color, var(--lime));
  box-shadow: 0 0 0 4px rgba(184, 241, 95, .16);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .28);
  transform: translateY(-1px);
}

.btn,
.mobile-menu,
.back-link,
.attachment {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(4, 23, 15, .08);
}

.btn:hover,
.mobile-menu:hover,
.back-link:hover,
.attachment:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 136, 79, .36);
  box-shadow: 0 13px 24px rgba(4, 23, 15, .12);
}

.btn-primary {
  border-color: rgba(184, 241, 95, .55);
  background: linear-gradient(135deg, var(--lime), #e7ff9a);
  color: #0b261b;
  box-shadow: 0 14px 28px rgba(184, 241, 95, .22);
}

.btn-small {
  min-height: 32px;
  padding: 6px 11px;
  font-size: 12px;
}

.mobile-menu {
  display: none;
  background: rgba(255, 255, 255, .12);
  color: var(--chalk);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
}

.eyebrow,
.section-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(12px);
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(184, 241, 95, .16);
}

.section-kicker {
  color: var(--green);
}

.article-hero,
.analysis-hero {
  padding: 46px 0 28px;
}

.analysis-hero {
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, .16) calc(50% - 1px), rgba(255, 255, 255, .16) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 42, 32, .96), rgba(8, 42, 32, .90));
  background-size: 100% 100%, 72px 72px, 72px 72px, 100% 100%;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .10);
}

.home-hero {
  padding-top: 36px;
}

.article-hero-grid,
.analysis-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, .82fr);
  gap: 28px;
  align-items: center;
}

.article-hero .home-title,
.analysis-copy h1 {
  max-width: 720px;
  margin: 18px 0 16px;
  color: var(--chalk);
  font-size: 70px;
  line-height: .92;
  text-shadow: 0 20px 42px rgba(0, 0, 0, .24);
}

.home-hero .home-title {
  font-size: 58px;
}

.article-hero p,
.analysis-copy p {
  max-width: 710px;
  margin: 0;
  color: var(--chalk-soft);
  font-size: 16px;
  line-height: 1.9;
}

.site-notice {
  max-width: 760px;
  margin-top: 16px;
  position: relative;
  border: 1px solid rgba(241, 194, 75, .72);
  border-left: 6px solid var(--gold);
  border-radius: var(--radius);
  padding: 13px 16px 13px 46px;
  background:
    linear-gradient(135deg, rgba(255, 250, 222, .98), rgba(255, 255, 255, .94)),
    #fff8d8;
  color: #243018;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.75;
  box-shadow: 0 14px 30px rgba(25, 34, 16, .16);
}

.site-notice::before {
  content: "!";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #163321;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.lead-panel,
.analysis-panel,
.home-photo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .28);
}

.home-photo-card {
  display: block;
  height: 390px;
  min-height: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .13) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .11) 1px, transparent 1px),
    #0e4a35;
  background-size: 40px 40px;
  isolation: isolate;
}

.home-photo-card img,
.home-photo-fallback {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.home-photo-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 6px;
  pointer-events: none;
}

.home-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 29, 22, .02) 20%, rgba(6, 29, 22, .78) 100%),
    linear-gradient(90deg, rgba(184, 241, 95, .18), transparent 32%, transparent 70%, rgba(241, 194, 75, .18));
  pointer-events: none;
}

.home-photo-link {
  cursor: pointer;
}

.home-photo-fallback {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: var(--chalk);
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, .36) calc(50% - 1px), rgba(255, 255, 255, .36) calc(50% + 1px), transparent calc(50% + 1px)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 74px),
    linear-gradient(135deg, #0d6b45, #082a20);
}

.home-photo-fallback span {
  font-family: var(--font-display);
  font-size: 74px;
  line-height: .86;
}

.home-photo-fallback strong {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-photo-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  color: var(--chalk);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .48);
}

.home-photo-caption span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-photo-caption strong {
  max-width: 270px;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  padding: 20px 0 60px;
}

.article-list {
  display: grid;
  gap: 13px;
}

.article-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 188px;
  min-height: 158px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.article-card:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 136, 79, .34);
  box-shadow: var(--shadow);
}

.note-card::before {
  content: "";
  position: absolute;
  left: 82px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: var(--line);
}

.note-date {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  padding: 14px 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .18)),
    var(--accent, var(--green));
}

.note-date strong {
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1;
}

.note-date span {
  font-size: 12px;
  font-weight: 800;
  opacity: .82;
}

.article-content {
  min-width: 0;
  padding: 18px 18px 16px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  border-radius: 999px;
  padding: 3px 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.pill.gold {
  background: var(--gold);
  color: #182116;
}

.pill.red {
  background: var(--red);
}

.article-content h2 {
  margin: 9px 0 7px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.36;
}

.article-content h2 a:hover {
  color: var(--green);
}

.article-content p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.read-more {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  margin-top: 11px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.read-more::after {
  content: "";
  width: 26px;
  height: 2px;
  margin-left: 8px;
  background: var(--accent, var(--green));
}

.article-cover {
  min-height: 158px;
  overflow: hidden;
  background: var(--accent, var(--green));
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .22s ease;
}

.article-card:hover .article-cover img {
  transform: scale(1.035);
}

.article-pattern {
  width: 100%;
  height: 100%;
  min-height: 158px;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, .34) calc(50% - 1px), rgba(255, 255, 255, .34) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(180deg, rgba(255, 255, 255, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .14) 1px, transparent 1px),
    var(--accent, var(--green));
  background-size: 100% 100%, 28px 28px, 28px 28px, 100% 100%;
}

.sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
}

.side-card,
.ad-card,
.article-detail,
.analyst-card,
.analyst-profile-card,
.analyst-scoreboard,
.day-card,
.empty,
.install-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-soft);
}

.side-card {
  padding: 18px;
}

.side-card .section-kicker {
  color: var(--green);
}

.side-card strong {
  display: block;
  margin: 7px 0 8px;
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1;
}

.side-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.ad-stack,
.ad-wide {
  display: grid;
  gap: 12px;
  margin: 14px 0;
}

.ad-wide {
  margin: 18px 0;
}

.ad-card {
  position: relative;
  overflow: hidden;
  padding: 14px;
  background:
    linear-gradient(90deg, rgba(184, 241, 95, .12), transparent 42%),
    rgba(255, 255, 255, .96);
}

.ad-wide .ad-card {
  border-left: 6px solid var(--gold);
}

.ad-card img {
  width: 100%;
  max-height: 220px;
  margin-bottom: 11px;
  border-radius: 6px;
  object-fit: cover;
}

.ad-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 900;
}

.ad-card span,
.ad-copy {
  color: var(--muted);
  line-height: 1.7;
}

.grid-span {
  grid-column: 1 / -1;
}

.article-reader-hero {
  padding: 28px 0 18px;
}

.article-reader-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 20px;
  align-items: stretch;
}

.article-reader-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-top: 6px solid var(--accent, var(--green));
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 26px;
}

.article-reader-title h1 {
  max-width: 780px;
  margin: 12px 0;
  font-size: 36px;
  line-height: 1.12;
}

.article-reader-title p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.article-reader-photo,
.article-reader-photo img,
.article-reader-photo .home-photo-fallback {
  min-height: 280px;
}

.detail-home-hero {
  padding-top: 26px;
}

.detail-home-hero .home-title {
  font-size: 44px;
}

.detail-home-hero .home-photo-card {
  height: 300px;
}

.article-page {
  padding: 20px 0 62px;
}

.reading-panel {
  max-width: 940px;
  margin: 0 auto;
  overflow: hidden;
}

.article-detail {
  background: #fff;
}

.article-detail-head {
  padding: 28px 30px;
}

.article-content-head {
  display: grid;
  gap: 13px;
  border-top: 6px solid var(--accent, var(--green));
  background:
    linear-gradient(180deg, rgba(17, 136, 79, .07), #ffffff 72%);
}

.article-detail h1 {
  max-width: 830px;
  margin: 0;
  color: var(--ink);
  font-size: 31px;
  line-height: 1.22;
}

.article-content-head p {
  max-width: 800px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.article-main-cover {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}

.article-body {
  max-width: 790px;
  margin: 0 auto;
  padding: 34px 30px 38px;
  color: #17211a;
  font-size: 16px;
  line-height: 1.95;
}

.article-body > :first-child {
  margin-top: 0;
}

.article-body h1,
.article-body h2,
.article-body h3 {
  color: var(--ink);
  line-height: 1.25;
}

.article-body h2 {
  margin-top: 32px;
  font-size: 25px;
}

.article-body h3 {
  margin-top: 26px;
  font-size: 21px;
}

.article-body p {
  margin: 0 0 18px;
}

.article-body a {
  color: var(--green);
  font-weight: 900;
  border-bottom: 1px solid rgba(17, 136, 79, .32);
}

.article-body img {
  width: auto;
  max-height: 560px;
  margin: 22px auto;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(4, 23, 15, .14);
}

.article-body blockquote {
  margin: 24px 0;
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: var(--surface-2);
  color: #2d3c34;
}

.article-body ul,
.article-body ol {
  padding-left: 22px;
}

.attachment {
  margin: 0 30px 30px;
  background: #fff9df;
  color: #49370c;
}

.analysis-panel {
  min-height: 360px;
  padding: 24px;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, .28) calc(50% - 1px), rgba(255, 255, 255, .28) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(135deg, rgba(255, 255, 255, .20), rgba(255, 255, 255, .06)),
    #0d4935;
  color: var(--chalk);
}

.analysis-panel .section-kicker {
  color: var(--lime);
}

.analysis-panel h2 {
  max-width: 420px;
  margin: 12px 0 36px;
  color: var(--chalk);
  font-size: 42px;
  line-height: 1.03;
}

.analysis-panel .stat-row,
.summary-row,
.detail-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat-row div,
.summary-row div,
.detail-stats div,
.metric-grid div,
.score-mini-grid div,
.pick-meta-grid div {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, .90);
  padding: 12px;
}

.analysis-panel .stat-row div {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .12);
  color: var(--chalk);
}

.stat-row span,
.summary-row span,
.detail-stats span,
.metric-grid span,
.score-mini-grid span,
.pick-meta-grid div > span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.analysis-panel .stat-row span {
  color: rgba(255, 255, 255, .72);
}

.stat-row strong,
.summary-row strong,
.detail-stats strong,
.metric-grid strong,
.score-mini-grid strong,
.pick-meta-grid strong {
  display: block;
  overflow-wrap: anywhere;
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1;
}

.recommend-strip {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(184, 241, 95, .56);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(184, 241, 95, .92), rgba(241, 194, 75, .86)),
    var(--lime);
  box-shadow: 0 18px 42px rgba(71, 106, 10, .18);
  padding: 18px;
}

.recommend-strip .section-kicker {
  color: #17331e;
}

.recommend-strip h2,
.section-head h2,
.timeline-head h2 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.05;
}

.recommend-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.recommend-list a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 18px;
  background: #082a20;
  color: var(--chalk);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(8, 42, 32, .24);
}

.summary-row {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
}

.summary-row div {
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-soft);
}

.analyst-section {
  padding: 32px 0 64px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.analyst-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.analyst-card {
  position: relative;
  display: grid;
  grid-template-rows: 66px 36px 34px 48px 44px 1fr;
  min-height: 430px;
  height: 430px;
  overflow: hidden;
  padding: 18px;
  border-top: 6px solid var(--accent, var(--green));
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.analyst-card::after {
  content: "";
  position: absolute;
  inset: auto -34px -44px auto;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(17, 136, 79, .22);
  border-radius: 50%;
  pointer-events: none;
}

.analyst-card:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 136, 79, .36);
  box-shadow: var(--shadow);
}

.pin {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 9px;
  background: var(--gold);
  color: #182116;
  font-size: 12px;
  font-weight: 900;
}

.avatar {
  width: 66px;
  height: 66px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, .88);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .38)),
    var(--accent, var(--green));
  box-shadow: 0 12px 24px rgba(17, 136, 79, .18);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar.large {
  width: 96px;
  height: 96px;
  flex: none;
  font-size: 42px;
}

.analyst-card h3 {
  margin: 0;
  align-self: end;
  overflow: hidden;
  font-size: 29px;
  line-height: 1.03;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.analyst-role {
  display: block;
  align-self: start;
  overflow: hidden;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.42;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.analyst-tags {
  display: flex;
  align-content: flex-start;
  align-items: flex-start;
  gap: 7px;
  flex-wrap: wrap;
  min-height: 48px;
  max-height: 48px;
  margin-top: 0;
  overflow: hidden;
}

.analyst-tags em {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 22px;
  align-items: center;
  border: 1px solid rgba(17, 136, 79, .22);
  border-left: 5px solid var(--accent, var(--green));
  border-radius: 6px;
  padding: 4px 8px;
  background: rgba(17, 136, 79, .07);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
}

.profile-identity {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.profile-identity .analyst-tags {
  margin-top: 0;
}

.analyst-card p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
  align-self: end;
}

.metric-grid div {
  min-height: 58px;
  padding: 9px;
  background: var(--surface-2);
}

.metric-grid strong {
  font-size: 20px;
}

.analyst-detail-page {
  padding-bottom: 72px;
  background:
    linear-gradient(180deg, rgba(8, 42, 32, .98) 0 390px, #eef5f0 391px 100%);
}

.analyst-profile-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 44px 0 28px;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, .22) calc(50% - 1px), rgba(255, 255, 255, .22) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(135deg, #06271d, #0b4a32 58%, #09251c);
  background-size: 100% 100%, 70px 70px, 70px 70px, 100% 100%;
}

.analyst-profile-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 34px;
  z-index: -1;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  transform: translateX(-50%);
}

.analyst-profile-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(8, 42, 32, .52));
}

.analyst-profile-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, .92fr);
  gap: 22px;
  align-items: stretch;
}

.analyst-profile-card {
  position: relative;
  overflow: hidden;
  min-height: 392px;
  padding: 30px;
  border-color: rgba(255, 255, 255, .20);
  border-top: 6px solid var(--accent, var(--lime));
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .05)),
    linear-gradient(180deg, rgba(184, 241, 95, .08), transparent 44%),
    #0a3125;
  color: var(--chalk);
  box-shadow: 0 32px 90px rgba(0, 0, 0, .34);
}

.analyst-profile-card::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -105px;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 50%;
  pointer-events: none;
}

.analyst-profile-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--accent, var(--lime)), var(--gold));
}

.analyst-profile-card > * {
  position: relative;
  z-index: 1;
}

.analyst-profile-card .back-link {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .12);
  color: var(--chalk);
  box-shadow: none;
}

.analyst-profile-card .section-kicker {
  color: var(--lime);
}

.profile-topline {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.profile-avatar {
  width: 112px;
  height: 112px;
  flex: none;
  border: 3px solid rgba(255, 255, 255, .86);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, .28),
    0 0 0 8px rgba(255, 255, 255, .08);
  font-size: 46px;
}

.analyst-profile-card h1 {
  margin: 22px 0 12px;
  color: var(--chalk);
  font-size: 66px;
  line-height: .95;
  text-shadow: 0 18px 46px rgba(0, 0, 0, .26);
}

.analyst-profile-card p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  line-height: 1.9;
}

.analyst-scoreboard {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
  padding: 14px;
  border-color: rgba(255, 255, 255, .22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(242, 249, 244, .96));
  box-shadow: 0 28px 76px rgba(0, 0, 0, .24);
}

.score-main {
  position: relative;
  overflow: hidden;
  min-height: 218px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius);
  padding: 26px;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, .30) calc(50% - 1px), rgba(255, 255, 255, .30) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(180deg, rgba(255, 255, 255, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(135deg, var(--accent, var(--green)), #082a20 74%);
  background-size: 100% 100%, 34px 34px, 34px 34px, 100% 100%;
  color: var(--chalk);
}

.score-main::before {
  content: "";
  position: absolute;
  right: -58px;
  top: 50%;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  transform: translateY(-50%);
}

.score-main span,
.score-main small {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .76);
  font-weight: 900;
}

.score-main strong {
  position: relative;
  z-index: 1;
  margin: 10px 0;
  font-family: var(--font-display);
  font-size: 92px;
  line-height: .84;
}

.score-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.score-mini-grid div {
  background:
    linear-gradient(180deg, #ffffff, var(--surface-2));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .72);
}

.prediction-timeline {
  padding-top: 22px;
}

.timeline-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 10px 0 18px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: var(--radius);
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(17, 136, 79, .10), transparent 45%),
    rgba(255, 255, 255, .78);
  box-shadow: 0 16px 34px rgba(4, 23, 15, .08);
}

.timeline-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.timeline-tools {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.record-tabs,
.history-pager {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.record-tab,
.history-pager a,
.history-pager span,
.history-pager strong {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, .88);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.record-tab.active,
.history-pager a {
  border-color: rgba(17, 136, 79, .42);
  background: linear-gradient(135deg, var(--green), #0b5b3b);
  color: #fff;
  box-shadow: 0 10px 22px rgba(17, 136, 79, .18);
}

.history-pager {
  width: fit-content;
  margin: 18px auto 0;
  border: 1px solid rgba(255, 255, 255, .70);
  border-radius: 999px;
  padding: 8px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 14px 30px rgba(4, 23, 15, .08);
}

.history-pager span {
  color: var(--muted);
  background: rgba(255, 255, 255, .58);
}

.prediction-timeline .section-kicker {
  color: var(--green);
}

.prediction-timeline .timeline-head h2 {
  color: var(--ink);
}

.day-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  border-color: rgba(17, 136, 79, .16);
  background: #fff;
  box-shadow: 0 18px 44px rgba(4, 23, 15, .10);
}

.day-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--green), var(--lime));
}

.day-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(17, 136, 79, .14), transparent 62%),
    var(--surface-2);
  padding: 18px 20px 18px 24px;
}

.day-card-head span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.day-card-head strong {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
}

.day-card-head p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.day-divider {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
  background: var(--surface-2);
}

.day-divider:first-child {
  border-top: 0;
}

.day-divider strong {
  font-family: var(--font-display);
  font-size: 28px;
}

.day-divider span {
  color: var(--muted);
  line-height: 1.6;
}

.pick-list {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.pick-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, .92fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 136, 79, .14);
  border-radius: var(--radius);
  padding: 0;
  background:
    linear-gradient(90deg, rgba(17, 136, 79, .07), transparent 40%),
    #fff;
  box-shadow: 0 14px 30px rgba(4, 23, 15, .08);
}

.pick-card:first-child {
  border-top: 1px solid rgba(17, 136, 79, .14);
}

.pick-ticket::before {
  display: none;
}

.pick-main {
  position: relative;
  min-width: 0;
  border-left: 0;
  border-radius: 0;
  padding: 22px 24px 22px 26px;
}

.pick-main::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 6px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--accent, var(--green)), var(--lime));
}

.pick-main time {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid rgba(17, 136, 79, .18);
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(17, 136, 79, .07);
  color: #315342;
  font-size: 12px;
  font-weight: 900;
}

.pick-main h3 {
  margin: 14px 0 16px;
  font-size: 28px;
  line-height: 1.16;
}

.field-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.direction-cell {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.direction-cell strong {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(17, 136, 79, .18);
  border-radius: 999px;
  padding: 6px 11px;
  background: #f4faf6;
  line-height: 1.4;
}

.chip-btn,
.status {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}

.chip-btn {
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.chip-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(4, 23, 15, .10);
}

.chip-btn.gold {
  border: 1px solid rgba(241, 194, 75, .55);
  background: #fff6d2;
  color: #584209;
}

.chip-btn.teal {
  border: 1px solid rgba(28, 159, 146, .35);
  background: #e8fbf8;
  color: #09665c;
}

.pick-meta-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  align-content: start;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(245, 250, 246, .96), rgba(255, 255, 255, .98));
}

.pick-meta-grid::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: repeating-linear-gradient(180deg, rgba(16, 23, 19, .22) 0 7px, transparent 7px 14px);
}

.pick-meta-grid div {
  min-height: 82px;
  display: grid;
  align-content: center;
  border-color: rgba(17, 136, 79, .13);
  background: rgba(255, 255, 255, .86);
  padding: 11px;
}

.pick-meta-grid strong {
  font-size: 22px;
}

.status-red {
  color: #fff;
  background: var(--red);
}

.status-black {
  color: #fff;
  background: var(--black);
}

.status-half-win {
  color: #fff;
  background: #dd7a21;
}

.status-half-lose {
  color: #fff;
  background: #746053;
}

.status-push {
  color: #1d1808;
  background: var(--gold);
}

.status-new {
  color: #fff;
  background: var(--teal);
}

.money-plus {
  color: var(--green);
  font-weight: 900;
}

.money-minus {
  color: var(--red);
  font-weight: 900;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

th {
  padding: 12px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 12px;
  text-align: left;
}

td {
  border-top: 1px solid var(--line);
  padding: 13px 12px;
  line-height: 1.55;
}

.empty {
  margin: 34px 0;
  padding: 28px;
}

.install-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
}

.install-card {
  width: min(760px, 100%);
  padding: 28px;
}

.install-card h1 {
  margin-bottom: 12px;
  font-size: 38px;
  line-height: 1.1;
}

.install-card p {
  color: var(--muted);
  line-height: 1.75;
}

.install-card label {
  display: grid;
  gap: 7px;
  margin: 12px 0;
  color: var(--muted);
  font-weight: 900;
}

.install-card input,
.install-card select,
.install-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
}

.success,
.danger {
  border-radius: 6px;
  padding: 12px;
  margin: 12px 0;
  line-height: 1.65;
}

.success {
  background: #e8f7ef;
  color: #0f5b3b;
}

.danger {
  background: #fde7e4;
  color: #9d2118;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, .14);
  background: #061d16;
  color: rgba(255, 255, 255, .74);
}

.footer-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.footer-inner strong {
  color: var(--chalk);
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(3, 16, 11, .72);
  backdrop-filter: blur(12px);
}

.modal.open {
  display: flex;
}

.modal-card {
  width: min(700px, 100%);
  max-height: 86vh;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .36);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
  padding: 15px 18px;
}

.modal-head strong {
  font-family: var(--font-display);
  font-size: 23px;
}

.modal-body {
  padding: 22px;
  line-height: 1.85;
}

@media (max-width: 980px) {
  .article-hero-grid,
  .analysis-grid,
  .content-layout,
  .article-reader-grid,
  .analyst-profile-grid,
  .pick-card {
    grid-template-columns: 1fr;
  }

  .article-hero .home-title,
  .analysis-copy h1 {
    font-size: 54px;
  }

  .home-hero .home-title,
  .analyst-profile-card h1 {
    font-size: 46px;
  }

  .home-photo-card {
    height: 320px;
  }

  .analyst-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summary-row,
  .detail-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .pick-meta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pick-ticket::before {
    display: none;
  }

  .pick-meta-grid::before {
    display: none;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 24px, 1180px);
  }

  body.site-front::after {
    width: 250px;
    height: 250px;
    top: 96px;
  }

  .topbar,
  .nav-topline {
    min-height: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .mobile-menu {
    display: inline-flex;
    order: 1;
  }

  .main-nav {
    display: none;
    width: 100%;
    order: 2;
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    flex: 1 1 calc(50% - 8px);
  }

  .article-hero,
  .analysis-hero {
    padding: 30px 0 20px;
  }

  .article-hero .home-title,
  .analysis-copy h1,
  .home-hero .home-title,
  .analyst-profile-card h1 {
    font-size: 38px;
    line-height: 1;
  }

  .article-hero p,
  .analysis-copy p {
    font-size: 15px;
  }

  .home-photo-card,
  .detail-home-hero .home-photo-card {
    height: 238px;
  }

  .home-photo-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .home-photo-caption strong {
    font-size: 26px;
  }

  .article-card {
    grid-template-columns: 1fr;
  }

  .note-card::before {
    display: none;
  }

  .note-date {
    grid-template-columns: auto auto;
    justify-content: start;
    place-items: center start;
    padding: 12px 16px;
  }

  .article-content {
    border-top: 5px solid var(--accent, var(--green));
  }

  .article-cover {
    min-height: 190px;
  }

  .article-content h2 {
    font-size: 16px;
  }

  .recommend-strip,
  .section-head,
  .profile-topline,
  .day-card-head,
  .timeline-head,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline-tools {
    width: 100%;
    justify-items: start;
  }

  .record-tabs,
  .history-pager {
    width: 100%;
  }

  .record-tab,
  .history-pager a,
  .history-pager span,
  .history-pager strong {
    flex: 1 1 auto;
  }

  .analysis-panel {
    min-height: auto;
    padding: 18px;
  }

  .analysis-panel h2 {
    margin-bottom: 20px;
    font-size: 32px;
  }

  .analysis-panel .stat-row,
  .summary-row,
  .analyst-grid,
  .detail-stats,
  .metric-grid,
  .score-mini-grid,
  .pick-meta-grid {
    grid-template-columns: 1fr;
  }

  .analyst-card {
    grid-template-rows: 66px 36px 34px 48px 44px 1fr;
    min-height: 430px;
    height: 430px;
  }

  .analyst-profile-card,
  .analyst-scoreboard {
    padding: 16px;
  }

  .profile-avatar {
    width: 84px;
    height: 84px;
  }

  .score-main strong {
    font-size: 58px;
  }

  .pick-card {
    gap: 14px;
    padding: 14px;
  }

  .pick-main h3 {
    font-size: 21px;
  }

  .article-detail-head,
  .article-body {
    padding: 22px 20px;
  }

  .article-detail h1 {
    font-size: 25px;
  }

  .article-body {
    font-size: 15px;
  }

  .attachment {
    margin: 0 20px 22px;
  }

  .footer-inner {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Premium polish layer: football data journal system */
:root {
  --field: #061f18;
  --field-2: #0d5d3d;
  --chalk: #fbfff9;
  --chalk-soft: rgba(251, 255, 249, .82);
  --surface: #ffffff;
  --surface-2: #f6fbf7;
  --surface-3: #eaf3ee;
  --ink: #0c1510;
  --muted: #5f7168;
  --green: #07864c;
  --lime: #c8f35a;
  --gold: #f4c542;
  --red: #e01f1f;
  --teal: #159c8b;
  --line: rgba(12, 21, 16, .105);
  --line-strong: rgba(12, 21, 16, .18);
  --shadow: 0 28px 70px rgba(3, 23, 14, .18);
  --shadow-soft: 0 16px 38px rgba(3, 23, 14, .10);
}

body {
  background:
    linear-gradient(180deg, rgba(6, 31, 24, .98) 0 322px, rgba(238, 247, 241, .96) 323px 100%),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.04) 1px, transparent 1px),
    #eef7f1;
  background-size: auto, 64px 64px, 64px 64px, auto;
}

body.site-front::before {
  opacity: .58;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255,255,255,.18) calc(50% - 1px), rgba(255,255,255,.18) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 100% 100%, 58px 58px, 58px 58px;
}

.site-header {
  background: rgba(3, 18, 13, .82);
  border-bottom-color: rgba(255, 255, 255, .18);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .26);
}

.topbar,
.nav-topline {
  min-height: 66px;
}

.main-nav {
  gap: 10px;
}

.main-nav a {
  min-height: 40px;
  border-color: rgba(255,255,255,.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.07));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 10px 24px rgba(0,0,0,.16);
}

.btn,
.mobile-menu,
.back-link,
.attachment {
  border-color: rgba(12, 21, 16, .14);
  background:
    linear-gradient(180deg, #ffffff, #f4faf6);
  box-shadow: 0 12px 26px rgba(3, 23, 14, .10);
}

.btn-primary {
  background:
    linear-gradient(135deg, #d9ff75, var(--lime));
  border-color: rgba(200, 243, 90, .72);
  box-shadow: 0 18px 36px rgba(92, 137, 17, .20);
}

.eyebrow {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15);
}

.article-hero,
.analysis-hero {
  padding-top: 52px;
}

.article-hero .home-title,
.analysis-copy h1 {
  margin-bottom: 18px;
  font-size: 76px;
  line-height: .90;
}

.home-hero .home-title {
  font-size: 64px;
}

.article-hero p,
.analysis-copy p {
  color: rgba(251,255,249,.84);
  font-weight: 700;
}

.site-notice {
  max-width: 820px;
  border-color: rgba(244, 197, 66, .82);
  background:
    linear-gradient(135deg, rgba(255, 252, 229, .98), rgba(255,255,255,.96));
  box-shadow: 0 18px 42px rgba(78, 59, 7, .13);
}

.home-photo-card {
  height: 410px;
  border-color: rgba(255,255,255,.26);
  box-shadow: 0 34px 90px rgba(0,0,0,.34);
}

.home-photo-card::before {
  inset: 13px;
  border-color: rgba(255,255,255,.48);
}

.home-photo-caption {
  left: 26px;
  right: 26px;
  bottom: 24px;
}

.content-layout {
  gap: 22px;
  padding-top: 24px;
}

.article-list {
  gap: 16px;
}

.article-card {
  grid-template-columns: 88px minmax(0, 1fr) 196px;
  min-height: 166px;
  border-color: rgba(12, 21, 16, .10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,253,251,.96));
  box-shadow: 0 20px 52px rgba(3, 23, 14, .105);
}

.article-card::after {
  content: "";
  position: absolute;
  left: 88px;
  right: 196px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent, var(--green)), transparent);
  opacity: .46;
}

.note-card::before {
  left: 88px;
}

.article-content {
  padding: 20px 22px 18px;
}

.article-content h2 {
  font-size: 18px;
}

.article-cover {
  min-height: 166px;
}

.side-card,
.ad-card,
.article-detail,
.analyst-card,
.analyst-profile-card,
.analyst-scoreboard,
.day-card,
.empty,
.install-card {
  border-color: rgba(12, 21, 16, .105);
  box-shadow: 0 20px 50px rgba(3, 23, 14, .10);
}

.side-card,
.ad-card {
  background:
    linear-gradient(180deg, #ffffff, #f6fbf7);
}

.analysis-hero {
  padding-bottom: 38px;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255,255,255,.18) calc(50% - 1px), rgba(255,255,255,.18) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(90deg, rgba(255,255,255,.052) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.052) 1px, transparent 1px),
    linear-gradient(135deg, #062419, #0b5035 58%, #061f18);
  background-size: 100% 100%, 58px 58px, 58px 58px, 100% 100%;
}

.analysis-panel {
  min-height: 380px;
  border-color: rgba(255,255,255,.24);
  box-shadow: 0 32px 82px rgba(0,0,0,.30);
}

.analysis-panel h2 {
  font-size: 44px;
}

.stat-row div,
.summary-row div,
.detail-stats div,
.metric-grid div,
.score-mini-grid div,
.pick-meta-grid div {
  border-color: rgba(12, 21, 16, .10);
}

.recommend-strip {
  border-color: rgba(200, 243, 90, .74);
  background:
    linear-gradient(135deg, #d7ff6f 0%, #f7d24e 100%);
  box-shadow: 0 24px 52px rgba(104, 126, 14, .18);
}

.summary-row div {
  background:
    linear-gradient(180deg, #ffffff, #f5fbf7);
}

.analyst-grid {
  gap: 18px;
}

.analyst-card {
  grid-template-rows: 70px 38px 34px 48px 44px 1fr;
  height: 448px;
  min-height: 448px;
  padding: 20px;
  border-top-width: 7px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfefc 56%, #f3faf6 100%);
  box-shadow: 0 24px 64px rgba(3, 23, 14, .12);
}

.analyst-card::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(12,21,16,.12), transparent);
}

.analyst-card::after {
  width: 205px;
  height: 205px;
  opacity: .72;
}

.analyst-card .avatar {
  width: 70px;
  height: 70px;
  box-shadow: 0 16px 32px rgba(17, 136, 79, .16);
}

.analyst-card h3 {
  font-size: 30px;
}

.analyst-role {
  color: #53675d;
  font-size: 14px;
}

.analyst-tags em {
  border-color: rgba(7, 134, 76, .18);
  background: rgba(7, 134, 76, .065);
}

.metric-grid {
  gap: 9px;
}

.metric-grid div {
  min-height: 60px;
  background:
    linear-gradient(180deg, #ffffff, #f3faf6);
}

.article-content-head {
  border-top-width: 7px;
  background:
    linear-gradient(180deg, rgba(7,134,76,.08), #fff 58%);
}

.reading-panel {
  box-shadow: 0 28px 70px rgba(3, 23, 14, .11);
}

.article-body {
  color: #18251d;
}

.analyst-profile-hero {
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255,255,255,.20) calc(50% - 1px), rgba(255,255,255,.20) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(135deg, #041e16, #0c5b3b 60%, #061f18);
  background-size: 100% 100%, 58px 58px, 58px 58px, 100% 100%;
}

.analyst-profile-card,
.analyst-scoreboard {
  box-shadow: 0 34px 90px rgba(0,0,0,.26);
}

.score-main {
  min-height: 230px;
}

.score-main strong {
  font-size: 96px;
}

.timeline-head {
  border-color: rgba(255,255,255,.82);
  background:
    linear-gradient(90deg, rgba(7,134,76,.12), transparent 54%),
    rgba(255,255,255,.84);
  box-shadow: 0 22px 48px rgba(3, 23, 14, .09);
}

.record-tab.active,
.history-pager a {
  background: linear-gradient(135deg, #07864c, #06472f);
}

.day-card {
  border-color: rgba(7, 134, 76, .16);
  box-shadow: 0 24px 58px rgba(3, 23, 14, .11);
}

.day-card-head {
  background:
    linear-gradient(90deg, rgba(7, 134, 76, .14), rgba(255,255,255,.60)),
    #f4fbf7;
}

.pick-card {
  border-color: rgba(7, 134, 76, .15);
  box-shadow: 0 18px 40px rgba(3, 23, 14, .08);
}

.chip-btn.gold {
  background: #fff3bd;
}

.chip-btn.teal {
  background: #ddfbf6;
}

.modal-card {
  box-shadow: 0 38px 96px rgba(0,0,0,.38);
}

.site-footer {
  background:
    linear-gradient(180deg, #062119, #03130e);
}

@media (max-width: 980px) {
  .article-hero .home-title,
  .analysis-copy h1 {
    font-size: 56px;
  }

  .analyst-card {
    height: 448px;
    min-height: 448px;
  }
}

@media (max-width: 680px) {
  .topbar,
  .nav-topline {
    min-height: 62px;
  }

  .article-hero .home-title,
  .analysis-copy h1,
  .home-hero .home-title,
  .analyst-profile-card h1 {
    font-size: 40px;
  }

  .home-photo-card,
  .detail-home-hero .home-photo-card {
    height: 250px;
  }

  .analyst-card {
    height: 448px;
    min-height: 448px;
  }

  .analyst-card h3 {
    font-size: 27px;
  }

  .metric-grid div {
    min-height: 58px;
  }
}

/* Product-design final polish layer: matchday control room */
:root {
  --field: #041b14;
  --field-2: #087448;
  --field-3: #0f3f2c;
  --chalk: #fbfff8;
  --surface: #ffffff;
  --surface-2: #f4faf6;
  --surface-3: #e7f0ea;
  --ink: #0a1310;
  --muted: #5d6e66;
  --line: rgba(10, 19, 16, .11);
  --line-strong: rgba(10, 19, 16, .20);
  --green: #067b49;
  --lime: #c9f34e;
  --gold: #f0be37;
  --red: #d92525;
  --teal: #0f9b88;
  --shadow: 0 28px 74px rgba(2, 20, 12, .18);
  --shadow-soft: 0 14px 34px rgba(2, 20, 12, .10);
}

body {
  background:
    linear-gradient(180deg, rgba(4, 27, 20, .98) 0 338px, rgba(235, 244, 238, .98) 339px 100%),
    linear-gradient(90deg, rgba(255, 255, 255, .046) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .040) 1px, transparent 1px),
    #ebf4ee;
  background-size: auto, 56px 56px, 56px 56px, auto;
}

body.site-front::before {
  opacity: .50;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, .22) calc(50% - 1px), rgba(255, 255, 255, .22) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(90deg, rgba(255, 255, 255, .050) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .044) 1px, transparent 1px);
  background-size: 100% 100%, 56px 56px, 56px 56px;
}

body.site-front::after {
  top: 84px;
  width: 440px;
  height: 440px;
  opacity: .34;
  border-color: rgba(255, 255, 255, .30);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.shell {
  width: min(1200px, calc(100% - 44px));
}

.site-header {
  border-bottom-color: rgba(255, 255, 255, .16);
  background: rgba(3, 17, 12, .88);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .28);
}

.topbar,
.nav-topline {
  min-height: 64px;
}

.main-nav {
  gap: 8px;
}

.main-nav a,
.btn,
.mobile-menu,
.back-link,
.attachment,
.record-tab,
.history-pager a,
.history-pager span,
.history-pager strong,
.chip-btn,
.status,
.pill,
.pin {
  border-radius: 8px;
}

.main-nav a {
  min-height: 38px;
  padding: 9px 13px;
  white-space: nowrap;
  border-color: rgba(255, 255, 255, .18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .07));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 10px 24px rgba(0, 0, 0, .16);
}

.main-nav a::before {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  box-shadow: 0 0 0 4px rgba(201, 243, 78, .14);
}

.article-hero,
.analysis-hero,
.analyst-profile-hero {
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.article-hero,
.analysis-hero {
  padding-top: 48px;
  padding-bottom: 46px;
}

.article-hero .home-title,
.analysis-copy h1,
.home-hero .home-title {
  text-shadow: 0 18px 44px rgba(0, 0, 0, .24);
}

.article-hero .home-title,
.analysis-copy h1 {
  font-size: 72px;
  line-height: .92;
}

.home-hero .home-title {
  font-size: 60px;
  line-height: .96;
}

.article-hero p,
.analysis-copy p {
  max-width: 690px;
  color: rgba(251, 255, 248, .86);
}

.site-notice {
  max-width: 860px;
  color: #3f2f08;
  border-color: rgba(240, 190, 55, .78);
  background:
    linear-gradient(135deg, #fff7cf 0%, #fffefa 100%);
  box-shadow: 0 18px 44px rgba(84, 64, 8, .16);
  font-weight: 900;
}

.site-notice::before {
  background: linear-gradient(180deg, var(--gold), #d9891c);
}

.hero-actions {
  gap: 10px;
}

.home-photo-card {
  height: 404px;
  border-radius: 8px;
  border-color: rgba(255, 255, 255, .24);
  box-shadow: 0 32px 88px rgba(0, 0, 0, .34);
}

.home-photo-card img,
.article-cover img,
.article-main-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-photo-card::before {
  inset: 12px;
  border-radius: 6px;
}

.home-photo-caption {
  left: 22px;
  right: 22px;
  bottom: 20px;
  border-radius: 8px;
}

.content-layout {
  grid-template-columns: minmax(0, 1fr) 318px;
  gap: 24px;
  padding-top: 26px;
}

.article-list {
  gap: 14px;
}

.article-card {
  grid-template-columns: 76px minmax(0, 1fr) 180px;
  min-height: 148px;
  border-radius: 8px;
  border-color: rgba(10, 19, 16, .105);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .99), rgba(248, 252, 249, .98));
  box-shadow: 0 20px 52px rgba(2, 20, 12, .10);
}

.article-card::after {
  left: 76px;
  right: 180px;
  height: 2px;
  opacity: .55;
}

.note-date {
  background:
    linear-gradient(180deg, #08251b, #0d4e34);
  color: var(--chalk);
}

.note-date strong {
  font-size: 23px;
}

.article-content {
  padding: 16px 18px 14px;
}

.article-content h2 {
  margin-bottom: 7px;
  font-size: 16px;
  line-height: 1.34;
}

.article-content p {
  margin: 0 0 11px;
  color: #55675e;
  font-size: 13px;
  line-height: 1.62;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.article-meta {
  gap: 6px;
}

.pill,
.read-more {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 900;
}

.read-more {
  width: fit-content;
  border: 1px solid rgba(6, 123, 73, .20);
  background: rgba(6, 123, 73, .07);
  color: #075f3b;
}

.article-cover {
  min-height: 148px;
  border-radius: 0;
}

.article-pattern {
  min-height: 100%;
}

.side-card,
.ad-card {
  border-radius: 8px;
  border-color: rgba(10, 19, 16, .10);
  box-shadow: 0 20px 48px rgba(2, 20, 12, .09);
}

.analysis-grid {
  align-items: stretch;
}

.analysis-panel {
  min-height: 360px;
  border-radius: 8px;
  border-color: rgba(255, 255, 255, .24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .08));
  box-shadow: 0 30px 82px rgba(0, 0, 0, .30);
}

.analysis-panel h2 {
  font-size: 42px;
  line-height: 1.02;
}

.recommend-strip {
  border-radius: 8px;
  border-color: rgba(201, 243, 78, .82);
  background:
    linear-gradient(135deg, #d8ff63 0%, #f0be37 100%);
  box-shadow: 0 24px 58px rgba(86, 113, 9, .20);
}

.recommend-list a {
  border-radius: 8px;
  background: rgba(4, 27, 20, .92);
  color: var(--chalk);
}

.summary-row {
  gap: 12px;
}

.summary-row div,
.analysis-panel .stat-row div,
.metric-grid div,
.score-mini-grid div,
.pick-meta-grid div,
.detail-stats div {
  border-radius: 8px;
  border-color: rgba(10, 19, 16, .10);
  background:
    linear-gradient(180deg, #ffffff, #f3faf6);
}

.analyst-grid {
  gap: 18px;
}

.analyst-card {
  grid-template-rows: 68px 34px 30px 42px 34px 1fr;
  height: 424px;
  min-height: 424px;
  max-height: 424px;
  padding: 18px;
  border-radius: 8px;
  border-top-width: 6px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdfb 56%, #f0f8f3 100%);
  box-shadow: 0 22px 58px rgba(2, 20, 12, .12);
}

.analyst-card::before {
  left: 18px;
  right: 18px;
  bottom: 112px;
}

.analyst-card::after {
  width: 178px;
  height: 178px;
  opacity: .62;
}

.analyst-card .avatar {
  width: 68px;
  height: 68px;
}

.analyst-card h3 {
  font-size: 27px;
  line-height: 1;
}

.analyst-role {
  font-size: 13px;
  line-height: 1.32;
}

.analyst-tags {
  gap: 5px;
  min-height: 42px;
  max-height: 42px;
  overflow: hidden;
}

.analyst-tags em {
  min-height: 19px;
  padding: 3px 7px;
  border-left-width: 4px;
  font-size: 11px;
  line-height: 1.1;
}

.analyst-card p {
  font-size: 13px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
}

.metric-grid {
  gap: 7px;
  margin-top: 8px;
}

.metric-grid div {
  min-height: 52px;
  padding: 7px;
}

.metric-grid span {
  font-size: 11px;
}

.metric-grid strong {
  font-size: 18px;
}

.analyst-profile-hero {
  padding-top: 42px;
  padding-bottom: 34px;
}

.analyst-profile-card,
.analyst-scoreboard {
  border-radius: 8px;
  border-color: rgba(255, 255, 255, .24);
  box-shadow: 0 34px 88px rgba(0, 0, 0, .27);
}

.profile-identity .analyst-tags {
  min-height: 0;
  max-height: none;
}

.analyst-profile-card h1 {
  font-size: 56px;
  line-height: .98;
}

.score-main {
  min-height: 218px;
  border-radius: 8px;
}

.score-main strong {
  font-size: 88px;
  line-height: .92;
}

.score-mini-grid {
  gap: 8px;
}

.prediction-timeline {
  padding-top: 22px;
}

.timeline-head {
  border-radius: 8px;
  border-color: rgba(255, 255, 255, .82);
  background:
    linear-gradient(90deg, rgba(6, 123, 73, .12), transparent 54%),
    rgba(255, 255, 255, .88);
  box-shadow: 0 22px 52px rgba(2, 20, 12, .09);
}

.record-tabs,
.history-pager {
  border-radius: 8px;
}

.record-tab.active,
.history-pager a {
  background: linear-gradient(135deg, #067b49, #053522);
}

.day-card {
  border-radius: 8px;
  border-color: rgba(6, 123, 73, .16);
  box-shadow: 0 22px 58px rgba(2, 20, 12, .11);
}

.day-card-head {
  background:
    linear-gradient(90deg, rgba(6, 123, 73, .15), rgba(255, 255, 255, .72)),
    #f3faf6;
}

.pick-list {
  gap: 14px;
}

.pick-card {
  grid-template-columns: minmax(0, .92fr) minmax(450px, 1fr);
  border-radius: 8px;
  border-color: rgba(6, 123, 73, .15);
  background:
    linear-gradient(90deg, rgba(6, 123, 73, .065), transparent 42%),
    #ffffff;
  box-shadow: 0 18px 42px rgba(2, 20, 12, .09);
}

.pick-main {
  padding: 20px 22px 20px 26px;
}

.pick-main::before {
  width: 5px;
}

.pick-main h3 {
  font-size: 25px;
  line-height: 1.18;
}

.direction-cell strong {
  border-radius: 8px;
  background: #f2faf5;
}

.pick-meta-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
  padding: 16px;
}

.pick-meta-grid div {
  min-height: 72px;
  padding: 9px;
}

.pick-meta-grid strong {
  font-size: 19px;
}

.article-page {
  padding: 28px 0 62px;
}

.reading-panel {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 28px 76px rgba(2, 20, 12, .12);
}

.article-detail-head {
  padding: 26px 28px 24px;
}

.article-detail h1 {
  max-width: 850px;
  font-size: 32px;
  line-height: 1.22;
}

.article-detail-head p {
  max-width: 760px;
  font-size: 15px;
}

.article-main-cover {
  max-height: 420px;
}

.article-body {
  padding: 28px;
  color: #17231d;
  font-size: 16px;
  line-height: 1.92;
}

.article-body h1,
.article-body h2,
.article-body h3 {
  line-height: 1.28;
}

.modal-card {
  border-radius: 8px;
  box-shadow: 0 38px 96px rgba(0, 0, 0, .38);
}

.modal-head {
  border-radius: 8px 8px 0 0;
}

.site-footer {
  background:
    linear-gradient(180deg, #061e16, #020e0a);
}

@media (max-width: 980px) {
  .shell {
    width: min(100% - 32px, 1200px);
  }

  .article-hero .home-title,
  .analysis-copy h1 {
    font-size: 52px;
  }

  .home-hero .home-title {
    font-size: 48px;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .article-card {
    grid-template-columns: 72px minmax(0, 1fr) 156px;
  }

  .article-card::after {
    left: 72px;
    right: 156px;
  }

  .analyst-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .analyst-card {
    height: 424px;
    min-height: 424px;
    max-height: 424px;
  }

  .pick-card {
    grid-template-columns: 1fr;
  }

  .pick-meta-grid::before {
    display: none;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 24px, 1200px);
  }

  .topbar,
  .nav-topline {
    min-height: 58px;
  }

  .main-nav {
    gap: 7px;
  }

  .main-nav a {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .article-hero,
  .analysis-hero {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .article-hero .home-title,
  .analysis-copy h1,
  .home-hero .home-title,
  .analyst-profile-card h1 {
    font-size: 38px;
    line-height: 1;
  }

  .home-photo-card,
  .detail-home-hero .home-photo-card {
    height: 238px;
  }

  .article-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .article-card::after {
    left: 0;
    right: 0;
  }

  .note-date {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
  }

  .article-cover {
    min-height: 180px;
  }

  .analyst-grid {
    grid-template-columns: 1fr;
  }

  .analyst-card {
    height: 424px;
    min-height: 424px;
    max-height: 424px;
  }

  .analyst-card h3 {
    font-size: 25px;
  }

  .metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .metric-grid div {
    min-height: 50px;
  }

  .timeline-head,
  .day-card-head {
    padding: 16px;
  }

  .record-tabs,
  .history-pager {
    width: 100%;
  }

  .pick-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pick-meta-grid div:last-child {
    grid-column: 1 / -1;
  }

  .article-detail-head,
  .article-body {
    padding: 20px;
  }

  .article-detail h1 {
    font-size: 24px;
  }
}

/* Visual QA fixes after desktop and mobile preview */
.article-hero,
.analysis-hero {
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, .20) calc(50% - 1px), rgba(255, 255, 255, .20) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(90deg, rgba(255, 255, 255, .048) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .042) 1px, transparent 1px),
    linear-gradient(135deg, #041b14 0%, #0a4d32 62%, #041b14 100%);
  background-size: 100% 100%, 56px 56px, 56px 56px, 100% 100%;
}

.analyst-profile-hero {
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, .20) calc(50% - 1px), rgba(255, 255, 255, .20) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(90deg, rgba(255, 255, 255, .048) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .042) 1px, transparent 1px),
    linear-gradient(135deg, #041b14 0%, #0b5a39 60%, #041b14 100%);
  background-size: 100% 100%, 56px 56px, 56px 56px, 100% 100%;
}

.analysis-panel .stat-row div {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(243, 250, 246, .96));
}

.analysis-panel .stat-row span,
.analysis-panel .stat-row strong {
  color: var(--ink);
}

.mobile-menu {
  border-color: rgba(255, 255, 255, .22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(241, 248, 244, .96));
  color: var(--ink);
}

/* Prediction emphasis labels */
.pick-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 -2px;
}

.pick-flag {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(2, 20, 12, .12);
}

.pick-flag.focus {
  border: 1px solid rgba(240, 190, 55, .72);
  background: linear-gradient(135deg, #fff0a8, #f0be37);
  color: #3d2a05;
}

.pick-flag.core {
  border: 1px solid rgba(217, 37, 37, .62);
  background: linear-gradient(135deg, #ef3b3b, #a90f0f);
  color: #fff;
}

/* Prediction card fixed sizing and flag position near result */
.pick-meta-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.pick-flag-cell strong {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}

@media (min-width: 981px) {
  .pick-card {
    height: 190px;
    min-height: 190px;
    max-height: 190px;
  }

  .pick-main,
  .pick-meta-grid {
    min-height: 190px;
  }
}

@media (max-width: 980px) {
  .pick-card {
    min-height: 0;
    max-height: none;
  }

  .pick-meta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .pick-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
