/* ===== 页面专属：首页 page-home ===== */
.page-home {
  --ph-brand: #1a4a3a;
  --ph-accent: #d4a843;
  --ph-text: #1a1a1a;
  --ph-text-secondary: #4a4a4a;
  --ph-bg-light: #f2f2f2;
  --ph-border: #b3b3b3;
  --ph-dark: #333333;
  --ph-bg: #ffffff;
  --ph-font-mono: 'DM Mono', 'JetBrains Mono', monospace;
  --ph-font-body: 'Noto Sans SC', 'PingFang SC', sans-serif;
  --ph-radius-lg: 16px;
  --ph-radius-capsule: 999px;
  --ph-console-width: 340px;
  --ph-frame-border: 2px;
  display: block;
  width: 100%;
  background: var(--ph-bg);
  color: var(--ph-text);
  font-family: var(--ph-font-body);
  line-height: 1.6;
}

/* ---------- 左右分屏 ---------- */
.page-home__split {
  display: flex;
  flex-direction: column;
  min-height: 80vh;
  max-width: 1440px;
  margin: 0 auto;
}

/* ---------- 左侧控制台 ---------- */
.page-home__console {
  background: var(--ph-dark);
  color: #f0f0f0;
  padding: 2rem 1.5rem;
  position: relative;
}

.page-home__console-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.page-home__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.page-home__brand-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--ph-radius-lg);
  object-fit: cover;
  flex-shrink: 0;
}

.page-home__brand-name {
  font-family: var(--ph-font-mono);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ph-accent);
  letter-spacing: 0.04em;
}

.page-home__trust {
  font-size: 0.9rem;
  color: #c0c0c0;
  border-left: 3px solid var(--ph-accent);
  padding-left: 1rem;
  margin: 0;
}

.page-home__trust p {
  margin: 0;
}

.page-home__section-label {
  font-family: var(--ph-font-mono);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ph-accent);
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.page-home__login-panel {
  background: rgba(255,255,255,0.06);
  border-radius: var(--ph-radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-home__login-desc {
  font-size: 0.9rem;
  color: #c0c0c0;
  margin: 0;
  line-height: 1.5;
}

.page-home__login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ph-brand);
  color: #fff;
  font-family: var(--ph-font-mono);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--ph-radius-capsule);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  position: relative;
}

.page-home__login-btn:hover,
.page-home__login-btn:focus-visible {
  background: var(--ph-accent);
  transform: translateY(-2px);
  outline: none;
}

.page-home__login-btn[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ph-dark);
  color: #fff;
  font-family: var(--ph-font-mono);
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.page-home__login-btn:hover::after,
.page-home__login-btn:focus-visible::after {
  opacity: 1;
}

.page-home__panel-preview {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.page-home__panel-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  object-fit: cover;
}

.page-home__panel-caption {
  font-size: 0.75rem;
  color: #888;
  text-align: center;
  font-family: var(--ph-font-mono);
}

.page-home__quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}

.page-home__quick-link {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  font-family: var(--ph-font-mono);
  transition: color 0.2s ease;
}

.page-home__quick-link:hover,
.page-home__quick-link:focus-visible {
  color: var(--ph-accent);
  outline: none;
}

/* ---------- 右侧主内容（框景首屏） ---------- */
.page-home__main {
  flex: 1;
  padding: 1.5rem;
  background: var(--ph-bg);
}

.page-home__frame {
  position: relative;
  border: var(--ph-frame-border) solid var(--ph-brand);
  border-radius: var(--ph-radius-lg);
  padding: 1.5rem;
  background: var(--ph-bg-light);
  overflow: hidden;
}

/* 刻度装饰 */
.page-home__frame-tick {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--ph-brand);
  border-style: solid;
  border-width: 0;
  opacity: 0.6;
}

.page-home__frame-tick--top-left {
  top: -2px;
  left: -2px;
  border-top-width: 3px;
  border-left-width: 3px;
  border-top-left-radius: 4px;
}

.page-home__frame-tick--top-right {
  top: -2px;
  right: -2px;
  border-top-width: 3px;
  border-right-width: 3px;
  border-top-right-radius: 4px;
}

.page-home__frame-tick--bottom-left {
  bottom: -2px;
  left: -2px;
  border-bottom-width: 3px;
  border-left-width: 3px;
  border-bottom-left-radius: 4px;
}

.page-home__frame-tick--bottom-right {
  bottom: -2px;
  right: -2px;
  border-bottom-width: 3px;
  border-right-width: 3px;
  border-bottom-right-radius: 4px;
}

.page-home__frame-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* ---------- 赛事亮点 ---------- */
.page-home__spotlight {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-home__spotlight-title {
  font-family: var(--ph-font-mono);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--ph-brand);
  margin: 0;
  letter-spacing: 0.02em;
}

.page-home__spotlight-banner {
  position: relative;
  border-radius: var(--ph-radius-lg);
  overflow: hidden;
  background: #e0e0e0;
  aspect-ratio: 800 / 400;
  max-height: 400px;
  width: 100%;
}

.page-home__spotlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home__spotlight-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.page-home__spotlight-label {
  font-family: var(--ph-font-mono);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ph-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-home__spotlight-clock {
  font-family: var(--ph-font-mono);
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.page-home__spotlight-status {
  font-family: var(--ph-font-mono);
  font-size: 0.8rem;
  color: #a0e0a0;
  background: rgba(0,0,0,0.4);
  padding: 0.3rem 0.8rem;
  border-radius: var(--ph-radius-capsule);
  border: 1px solid rgba(255,255,255,0.15);
}

.page-home__spotlight-note {
  font-size: 0.9rem;
  color: var(--ph-text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* ---------- 战报专栏 ---------- */
.page-home__reports {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-home__reports-header {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.page-home__reports .page-home__section-label {
  color: var(--ph-brand);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.page-home__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-home__filter-btn {
  background: transparent;
  color: var(--ph-text-secondary);
  border: 1.5px solid var(--ph-border);
  font-family: var(--ph-font-mono);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--ph-radius-capsule);
  cursor: pointer;
  transition: all 0.2s ease;
}

.page-home__filter-btn:hover,
.page-home__filter-btn:focus-visible {
  border-color: var(--ph-accent);
  color: var(--ph-accent);
  outline: none;
}

.page-home__filter-btn.is-active {
  background: var(--ph-brand);
  color: #fff;
  border-color: var(--ph-brand);
}

.page-home__filter-btn.is-active:hover {
  background: var(--ph-accent);
  border-color: var(--ph-accent);
}

.page-home__reports-intro {
  font-size: 0.9rem;
  color: var(--ph-text-secondary);
  margin: 0;
  line-height: 1.5;
}

.page-home__reports-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* ---------- 战报卡片 ---------- */
.page-home__report-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  background: var(--ph-bg);
  border-radius: var(--ph-radius-lg);
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid transparent;
}

.page-home__report-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: var(--ph-brand);
}

.page-home__report-card.is-hidden {
  display: none;
}

.page-home__report-thumb {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--ph-bg-light);
}

.page-home__report-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.page-home__report-title {
  font-family: var(--ph-font-mono);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ph-text);
  margin: 0;
  line-height: 1.3;
}

.page-home__report-summary {
  font-size: 0.85rem;
  color: var(--ph-text-secondary);
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-home__report-meta {
  font-size: 0.75rem;
  color: #888;
  font-family: var(--ph-font-mono);
}

.page-home__report-link {
  font-family: var(--ph-font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ph-brand);
  text-decoration: none;
  transition: color 0.2s ease;
  align-self: flex-start;
}

.page-home__report-link:hover,
.page-home__report-link:focus-visible {
  color: var(--ph-accent);
  outline: none;
}

/* ===== 响应式：桌面端 ===== */
@media (min-width: 768px) {
  .page-home__split {
    flex-direction: row;
    align-items: stretch;
  }

  .page-home__console {
    width: var(--ph-console-width);
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    padding: 2.5rem 1.5rem;
  }

  .page-home__main {
    flex: 1;
    min-width: 0;
    padding: 2rem;
    overflow-y: auto;
  }

  .page-home__frame {
    padding: 2rem;
    min-height: calc(100vh - 4rem);
  }

  .page-home__reports-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home__report-thumb {
    width: 100px;
    height: 100px;
  }

  .page-home__brand-icon {
    width: 56px;
    height: 56px;
  }

  .page-home__brand-name {
    font-size: 1.6rem;
  }
}

@media (min-width: 1024px) {
  .page-home__console {
    width: 380px;
    padding: 3rem 2rem;
  }

  .page-home__main {
    padding: 2.5rem;
  }

  .page-home__frame {
    padding: 2.5rem;
  }

  .page-home__reports-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home__report-card {
    flex-direction: column;
    padding: 1.2rem;
  }

  .page-home__report-thumb {
    width: 100%;
    height: 140px;
    border-radius: 12px;
  }
}

/* ===== 桌面大屏 ===== */
@media (min-width: 1280px) {
  .page-home__split {
    max-width: 1440px;
    margin: 0 auto;
  }

  .page-home__console {
    width: 420px;
  }

  .page-home__reports-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== 确保所有图片响应式 ===== */
.page-home img {
  max-width: 100%;
  height: auto;
}
<<<PAGE_CSs>>>
