﻿    :root {
      --red-primary: #B91C1C;
      --red-dark: #7F1D1D;
      --red-light: #FEE2E2;
      --blue-primary: #1E3A8A;
      --blue-dark: #0F1D44;
      --blue-light: #DBEAFE;
      --blue-mid: #1D4ED8;
      --gold: #B45309;
      --gold-light: #FEF3C7;
      --text-dark: #111827;
      --text-mid: #374151;
      --text-light: #6B7280;
      --bg-cream: #FAFAF8;
      --bg-warm: #FEF7ED;
      --border-red: rgba(185,28,28,0.15);
      --border-blue: rgba(30,58,138,0.15);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Noto Sans SC', sans-serif;
      background: var(--bg-cream);
      color: var(--text-dark);
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* Scrollbar */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg-cream); }
    ::-webkit-scrollbar-thumb { background: var(--red-primary); border-radius: 3px; }

    /* ===== HEADER ===== */
    .site-header {
      background: linear-gradient(135deg, var(--red-dark) 0%, var(--blue-dark) 100%);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    }

    .header-top {
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding: 8px 0;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 24px;
    }

    .header-date {
      color: rgba(255,255,255,0.7);
      font-size: 12px;
      letter-spacing: 1px;
    }

    .header-badge {
      background: var(--red-primary);
      color: #fff;
      font-size: 10px;
      padding: 2px 10px;
      border-radius: 20px;
      letter-spacing: 2px;
      font-weight: 700;
    }

    .header-inner {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
    }

    /* Logo link wrapper */
    .logo-link {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      color: inherit;
    }

    /* Header actions: language + CTA + mobile */
    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /* Language switch button */
    .lang-switch {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 14px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 8px;
      color: rgba(255,255,255,0.9);
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1px;
      transition: all 0.3s;
      cursor: pointer;
      white-space: nowrap;
    }

    .lang-switch:hover {
      background: rgba(255,255,255,0.2);
      border-color: rgba(255,255,255,0.4);
      color: #fff;
      transform: translateY(-1px);
    }

    .lang-switch span {
      font-size: 14px;
      font-weight: 700;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .logo-emblem {
      width: 52px;
      height: 52px;
      background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.9) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border: 2px solid rgba(255,255,255,0.3);
    }

    .logo-emblem svg { width: 32px; height: 32px; }

    .logo-text h1 {
      font-family: 'Noto Serif SC', serif;
      font-size: 26px;
      font-weight: 900;
      color: #fff;
      letter-spacing: 4px;
      line-height: 1.1;
    }

    .logo-text p {
      font-size: 10px;
      color: rgba(255,255,255,0.6);
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-top: 2px;
    }

    /* Nav */
    .main-nav { display: flex; align-items: center; gap: 0; }

    .nav-section-label {
      color: rgba(255,255,255,0.5);
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-right: 16px;
      display: none;
    }

    .nav-list {
      display: flex;
      list-style: none;
      gap: 0;
    }

    .nav-list li a {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      padding: 8px 16px;
      display: block;
      transition: all 0.3s;
      border-bottom: 2px solid transparent;
      letter-spacing: 0.5px;
    }

    .nav-list li a:hover, .nav-list li a.active {
      color: #fff;
      background: rgba(255,255,255,0.1);
      border-bottom-color: var(--red-primary);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: linear-gradient(135deg, var(--red-primary), var(--red-dark)) !important;
      color: #fff !important;
      border-radius: 10px;
      font-weight: 700 !important;
      font-size: 13px;
      padding: 10px 20px !important;
      text-decoration: none !important;
      letter-spacing: 1px;
      transition: all 0.35s !important;
      box-shadow: 0 2px 12px rgba(185,28,28,0.3);
      position: relative;
      overflow: hidden;
    }

    .nav-cta::before {
      content: '';
      position: absolute;
      top: 0; left: -100%; width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.5s;
    }

    .nav-cta:hover::before { left: 100%; }

    .nav-cta:hover {
      background: linear-gradient(135deg, #fff, #fef2f2) !important;
      color: var(--red-primary) !important;
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(185,28,28,0.45);
    }

    .nav-cta svg {
      width: 14px; height: 14px;
      transition: transform 0.3s;
    }

    .nav-cta:hover svg {
      transform: rotate(15deg) scale(1.1);
    }

    .mobile-toggle {
      display: none;
      background: none;
      border: 1px solid rgba(255,255,255,0.3);
      color: #fff;
      padding: 8px 12px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 20px;
    }

    /* ===== HERO ===== */
    .hero-section {
      background: linear-gradient(160deg, var(--blue-dark) 0%, var(--red-dark) 60%, var(--blue-primary) 100%);
      padding: 0;
      position: relative;
      overflow: hidden;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .hero-inner {
      max-width: 1320px;
      margin: 0 auto;
      padding: 64px 24px 72px;
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 48px;
      position: relative;
      z-index: 1;
    }

    .hero-main { color: #fff; }

    .hero-tag-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
    }

    .hero-tag {
      background: var(--red-primary);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 14px;
      border-radius: 3px;
      letter-spacing: 2px;
    }

    .hero-tag.blue { background: var(--blue-primary); }

    .hero-vol {
      color: rgba(255,255,255,0.5);
      font-size: 12px;
      letter-spacing: 1px;
    }

    .hero-title {
      font-family: 'Noto Serif SC', serif;
      font-size: clamp(36px, 4vw, 58px);
      font-weight: 900;
      line-height: 1.15;
      margin-bottom: 20px;
      color: #fff;
    }

    .hero-title em {
      color: #FCA5A5;
      font-style: normal;
    }

    .hero-desc {
      font-size: 16px;
      color: rgba(255,255,255,0.75);
      max-width: 580px;
      line-height: 1.8;
      margin-bottom: 32px;
    }

    .hero-stats {
      display: flex;
      gap: 40px;
      margin-bottom: 36px;
    }

    .hero-stat { text-align: center; }
    .hero-stat .num {
      font-family: 'Noto Serif SC', serif;
      font-size: 36px;
      font-weight: 900;
      color: #fff;
    }
    .hero-stat .label {
      font-size: 11px;
      color: rgba(255,255,255,0.5);
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .hero-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      color: var(--blue-dark);
      padding: 14px 32px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 700;
      font-size: 14px;
      transition: all 0.3s;
      letter-spacing: 1px;
    }

    .hero-btn:hover {
      background: var(--red-primary);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    }

    .hero-btn svg { width: 16px; height: 16px; transition: transform 0.3s; }
    .hero-btn:hover svg { transform: translateX(4px); }

    /* Hero Side Panel */
    .hero-side {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .hero-card {
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 12px;
      padding: 20px;
      color: #fff;
      transition: all 0.3s;
    }

    .hero-card:hover {
      background: rgba(255,255,255,0.13);
      border-color: rgba(255,255,255,0.2);
      transform: translateY(-2px);
    }

    .hero-card .card-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .hero-card .card-label .dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--red-primary);
    }

    .hero-card .card-label .dot.blue { background: var(--blue-primary); }

    .hero-card h3 {
      font-family: 'Noto Serif SC', serif;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.5;
      margin-bottom: 8px;
    }
    .hero-card h3 a { color: #fff; text-decoration: none; transition: color 0.3s; }
    .hero-card h3 a:hover { color: #FBBF24; }

    .hero-card p {
      font-size: 12px;
      color: rgba(255,255,255,0.6);
      line-height: 1.6;
    }

    /* ===== SECTION BANNER ===== */
    .section-banner {
      background: linear-gradient(90deg, var(--red-primary), var(--blue-primary));
      padding: 14px 0;
      overflow: hidden;
    }

    .section-banner-inner {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .section-banner-text {
      color: #fff;
      font-family: 'Noto Serif SC', serif;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 3px;
      white-space: nowrap;
    }

    .section-banner-line {
      flex: 1;
      height: 1px;
      background: rgba(255,255,255,0.3);
    }

    /* ===== MAIN CONTENT ===== */
    .main-wrapper {
      max-width: 1320px;
      margin: 0 auto;
      padding: 48px 24px;
    }

    /* Section common */
    .section-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 36px;
      padding-bottom: 16px;
      border-bottom: 2px solid;
    }

    .section-header.red { border-color: var(--red-primary); }
    .section-header.blue { border-color: var(--blue-primary); }

    .section-num {
      font-family: 'Noto Serif SC', serif;
      font-size: 42px;
      font-weight: 900;
      line-height: 1;
    }

    .section-header.red .section-num { color: var(--red-primary); }
    .section-header.blue .section-num { color: var(--blue-primary); }

    .section-title-group { flex: 1; }

    .section-title {
      font-family: 'Noto Serif SC', serif;
      font-size: 24px;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.2;
    }

    .section-subtitle {
      font-size: 13px;
      color: var(--text-light);
      margin-top: 4px;
    }

    .section-arrow {
      font-size: 28px;
      color: var(--text-light);
      text-decoration: none;
      transition: all 0.3s;
    }

    .section-arrow:hover { color: var(--red-primary); transform: translateX(4px); }

    /* 4-col grid */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-bottom: 64px;
    }

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

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

    .article-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      border: 1px solid rgba(0,0,0,0.05);
      transition: all 0.35s;
      display: flex;
      flex-direction: column;
    }

    .article-card:hover {
      box-shadow: 0 12px 40px rgba(0,0,0,0.12);
      transform: translateY(-4px);
    }

    .card-img {
      height: 180px;
      overflow: hidden;
      position: relative;
    }

    .card-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }

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

    .card-img .card-tag {
      position: absolute;
      top: 12px;
      left: 12px;
      font-size: 10px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 4px;
      letter-spacing: 1px;
    }

    .card-tag.red {
      background: var(--red-primary);
      color: #fff;
    }

    .card-tag.blue {
      background: var(--blue-primary);
      color: #fff;
    }

    .card-tag.gold {
      background: var(--gold);
      color: #fff;
    }

    .card-body {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .card-date {
      font-size: 11px;
      color: var(--text-light);
      margin-bottom: 8px;
      letter-spacing: 0.5px;
    }

    .card-title {
      font-family: 'Noto Serif SC', serif;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.5;
      color: var(--text-dark);
      margin-bottom: 10px;
      flex: 1;
      transition: color 0.3s;
    }
  /* Card title links */
  .card-title > a { color: inherit; text-decoration: none; transition: color 0.3s; }
  .card-title > a:hover { color: var(--red-primary, #B91C1C); }

    .article-card:hover .card-title { color: var(--red-primary); }

    .card-excerpt {
      font-size: 13px;
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 14px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 12px;
      border-top: 1px solid rgba(0,0,0,0.05);
    }

    .card-author {
      font-size: 12px;
      color: var(--text-light);
    }

    .card-link {
      font-size: 12px;
      color: var(--blue-primary);
      text-decoration: none;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 4px;
      transition: all 0.3s;
    }

    .card-link:hover { color: var(--red-primary); gap: 8px; }

    /* Two-col feature layout */
    .feature-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-bottom: 64px;
    }

    .feature-main {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      border: 1px solid rgba(0,0,0,0.05);
    }

    .feature-main .card-img { height: 320px; }

    .feature-main .card-body { padding: 28px; }

    .feature-main .card-title {
      font-size: 22px;
      line-height: 1.4;
    }

    .feature-main .card-excerpt {
      font-size: 14px;
      -webkit-line-clamp: 4;
    }

    .feature-side { display: flex; flex-direction: column; gap: 18px; }

    .mini-card {
      background: #fff;
      border-radius: 12px;
      padding: 16px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.06);
      border: 1px solid rgba(0,0,0,0.05);
      display: flex;
      gap: 16px;
      padding: 20px;
      align-items: flex-start;
      transition: all 0.3s;
    }

    .mini-card:hover {
      box-shadow: 0 6px 24px rgba(0,0,0,0.1);
      transform: translateX(4px);
    }

    .mini-card .mini-num {
      font-family: 'Noto Serif SC', serif;
      font-size: 36px;
      font-weight: 900;
      line-height: 1;
      flex-shrink: 0;
      width: 50px;
    }

    .mini-card .mini-num.red { color: var(--red-primary); }
    .mini-card .mini-num.blue { color: var(--blue-primary); }

    .mini-card .mini-body h4 {
      font-family: 'Noto Serif SC', serif;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.5;
      margin-bottom: 6px;
      color: var(--text-dark);
    }

    .mini-card .mini-body h4 a {
      color: inherit;
      text-decoration: none;
      font: inherit;
    }

    .mini-card .mini-body h4 a:hover {
      color: var(--red-primary);
    }

    .mini-card .mini-body p {
      font-size: 12px;
      color: var(--text-light);
      line-height: 1.5;
      margin: 0;
    }

    /* Horizontal scroll list */
    .h-scroll {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      padding-bottom: 16px;
      margin-bottom: 64px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }

    .h-scroll::-webkit-scrollbar { height: 4px; }
    .h-scroll::-webkit-scrollbar-thumb { background: var(--blue-primary); border-radius: 2px; }

    .scroll-card {
      min-width: 300px;
      max-width: 300px;
      scroll-snap-align: start;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      border: 1px solid rgba(0,0,0,0.05);
      flex-shrink: 0;
      transition: all 0.3s;
    }

    .scroll-card:hover {
      box-shadow: 0 8px 30px rgba(0,0,0,0.12);
      transform: translateY(-3px);
    }

    /* ===== FULL-WIDTH COLORED SECTIONS ===== */
    .section-colored {
      padding: 64px 0;
    }

    .section-colored.red-bg {
      background: linear-gradient(135deg, var(--red-dark), var(--red-primary));
      color: #fff;
    }

    .section-colored.blue-bg {
      background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
      color: #fff;
    }

    .section-colored .main-wrapper { padding-top: 0; padding-bottom: 0; }

    .section-colored .section-header { border-color: rgba(255,255,255,0.3); }
    .section-colored .section-title { color: #fff; }
    .section-colored .section-subtitle { color: rgba(255,255,255,0.6); }
    .section-colored .section-num { color: rgba(255,255,255,0.3); }
    .section-colored .section-arrow { color: rgba(255,255,255,0.6); }

    /* Colorful cards on dark bg */
    .colored-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 12px;
      padding: 24px;
      transition: all 0.3s;
    }

    .colored-card:hover {
      background: rgba(255,255,255,0.14);
      border-color: rgba(255,255,255,0.2);
      transform: translateY(-3px);
    }

    .colored-card .cc-tag {
      font-size: 10px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 4px;
      letter-spacing: 1px;
      display: inline-block;
      margin-bottom: 12px;
    }

    .colored-card .cc-tag.red { background: var(--red-primary); }
    .colored-card .cc-tag.blue { background: var(--blue-primary); }
    .colored-card .cc-tag.gold { background: var(--gold); }

    .colored-card h3 {
      font-family: 'Noto Serif SC', serif;
      font-size: 17px;
      font-weight: 700;
      line-height: 1.5;
      margin-bottom: 10px;
    }

    .colored-card h3 > a { color: #fff; text-decoration: none; display: inline-block; transition: color 0.3s; }
    .colored-card h3 > a:hover { color: #FBBF24; }

    .colored-card p {
      font-size: 13px;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
    }

    .colored-card .cc-footer {
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .colored-card .cc-footer span {
      font-size: 11px;
      color: rgba(255,255,255,0.5);
    }

    .colored-card .cc-footer a {
      font-size: 12px;
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    /* ===== DEBATE SECTION ===== */
    .debate-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-bottom: 64px;
    }

    .debate-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.07);
      border: 1px solid rgba(0,0,0,0.05);
    }

    .debate-header {
      padding: 24px 24px 16px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .debate-vs {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Noto Serif SC', serif;
      font-weight: 900;
      font-size: 14px;
      flex-shrink: 0;
    }

    .debate-vs.red { background: var(--red-light); color: var(--red-primary); }
    .debate-vs.blue { background: var(--blue-light); color: var(--blue-primary); }

    .debate-claim h4 {
      font-family: 'Noto Serif SC', serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 4px;
    }

    .debate-claim p {
      font-size: 12px;
      color: var(--text-light);
    }

    .debate-claim.red h4 { color: var(--red-primary); }
    .debate-claim.blue h4 { color: var(--blue-primary); }

    .debate-body {
      padding: 0 24px 20px;
    }

    .debate-body p {
      font-size: 13px;
      color: var(--text-mid);
      line-height: 1.8;
    }

    .debate-opinion {
      background: var(--bg-warm);
      border-left: 3px solid var(--gold);
      padding: 12px 16px;
      border-radius: 0 8px 8px 0;
      margin-top: 12px;
    }

    .debate-opinion p {
      font-size: 13px;
      color: var(--text-mid);
      font-style: italic;
    }

    /* Reader letters */
    .letter-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-bottom: 64px;
    }

    .letter-card {
      background: #fff;
      border-radius: 12px;
      padding: 24px;
      border: 1px solid rgba(0,0,0,0.05);
      box-shadow: 0 2px 10px rgba(0,0,0,0.04);
      position: relative;
      padding-left: 36px;
      transition: all 0.3s;
    }

    .letter-card::before {
      content: '"';
      position: absolute;
      left: 14px;
      top: 12px;
      font-family: 'Noto Serif SC', serif;
      font-size: 40px;
      color: var(--border-red);
      line-height: 1;
    }

    .letter-card:hover {
      box-shadow: 0 6px 24px rgba(0,0,0,0.08);
      transform: translateY(-2px);
    }

    .letter-card p {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 12px;
    }

    .letter-from {
      font-size: 12px;
      color: var(--text-light);
      font-weight: 500;
    }

    /* ===== ABOUT / SUBSCRIBE ===== */
    .subscribe-section {
      background: linear-gradient(135deg, var(--blue-dark) 0%, var(--red-dark) 100%);
      padding: 72px 0;
      position: relative;
      overflow: hidden;
    }

    .subscribe-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    }

    .subscribe-inner {
      max-width: 700px;
      margin: 0 auto;
      padding: 0 24px;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .subscribe-inner h2 {
      font-family: 'Noto Serif SC', serif;
      font-size: 36px;
      font-weight: 900;
      color: #fff;
      margin-bottom: 16px;
    }

    .subscribe-inner p {
      color: rgba(255,255,255,0.7);
      font-size: 16px;
      margin-bottom: 36px;
      line-height: 1.8;
    }

    .subscribe-form {
      display: flex;
      gap: 12px;
      max-width: 500px;
      margin: 0 auto;
    }

    .subscribe-form input {
      flex: 1;
      padding: 14px 20px;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 8px;
      background: rgba(255,255,255,0.1);
      color: #fff;
      font-size: 14px;
      outline: none;
      transition: all 0.3s;
    }

    .subscribe-form input::placeholder { color: rgba(255,255,255,0.4); }
    .subscribe-form input:focus { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.15); }

    .subscribe-form button {
      background: var(--red-primary);
      color: #fff;
      border: none;
      padding: 14px 28px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      letter-spacing: 1px;
      transition: all 0.3s;
      white-space: nowrap;
    }

    .subscribe-form button:hover {
      background: #fff;
      color: var(--red-primary);
      transform: translateY(-2px);
    }

    /* ===== FOOTER ===== */
    .site-footer {
      background: var(--blue-dark);
      color: rgba(255,255,255,0.6);
      padding: 48px 0 0;
    }

    .footer-grid {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 40px;
    }

    .footer-brand h3 {
      font-family: 'Noto Serif SC', serif;
      font-size: 20px;
      font-weight: 900;
      color: #fff;
      margin-bottom: 12px;
      letter-spacing: 3px;
    }

    .footer-brand p {
      font-size: 13px;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .footer-social {
      display: flex;
      gap: 10px;
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: all 0.3s;
      font-size: 14px;
    }

    .footer-social a:hover {
      background: var(--red-primary);
      color: #fff;
    }

    .footer-col h4 {
      font-family: 'Noto Serif SC', serif;
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
      letter-spacing: 1px;
    }

    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 8px; }
    .footer-col ul li a {
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      font-size: 13px;
      transition: color 0.3s;
    }
    .footer-col ul li a:hover { color: #fff; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      max-width: 1320px;
      margin: 0 auto;
      padding: 20px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
    }

    .footer-bottom a {
      color: rgba(255,255,255,0.4);
      text-decoration: none;
    }
    .footer-bottom a:hover { color: #fff; }

    /* ===== DIVIDER ===== */
    .section-divider {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 24px;
      margin-bottom: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--red-primary), var(--blue-primary), transparent);
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .animate-in {
      opacity: 0;
      animation: fadeInUp 0.6s ease forwards;
    }

    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.3s; }
    .delay-4 { animation-delay: 0.4s; }
    .delay-5 { animation-delay: 0.8s; }
    .delay-6 { animation-delay: 1.0s; }

    /* Scroll animations */
    .scroll-reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .scroll-reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1100px) {
      .card-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 900px) {
      /* Logo 移动端适配 */
      .logo-emblem { width: 42px; height: 42px; }
      .logo-emblem svg { width: 24px; height: 24px; }
      .logo-text h1 { font-size: 20px; letter-spacing: 2px; }
      .logo-text p { font-size: 9px; letter-spacing: 2px; }
      .logo-link { gap: 10px; }
      /* 其余 */
      .hero-inner { grid-template-columns: 1fr; gap: 32px; }
      .hero-side { display: none; }
      .feature-layout { grid-template-columns: 1fr; }
      .debate-layout { grid-template-columns: 1fr; }
      .letter-grid { grid-template-columns: 1fr; }
      .card-grid { grid-template-columns: repeat(2, 1fr); }
      .card-grid.three { grid-template-columns: repeat(2, 1fr); }
      .main-nav { display: none; }
      .header-actions { gap: 8px; }
      .lang-switch { padding: 8px 12px; }
      .lang-switch span { display: none; }
      .lang-switch svg { width: 18px; height: 18px; }
      .mobile-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; padding: 0; border-radius: 8px; font-size: 18px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .subscribe-form { flex-direction: column; }
    }

    @media (max-width: 600px) {
      /* Logo 小屏进一步缩小 */
      .logo-emblem { width: 34px; height: 34px; }
      .logo-emblem svg { width: 20px; height: 20px; }
      .logo-text h1 { font-size: 16px; letter-spacing: 1px; }
      .logo-text p { font-size: 8px; letter-spacing: 1px; }
      .logo-link { gap: 8px; }
      /* 其余 */
      .card-grid { grid-template-columns: 1fr; }
      .card-grid.three { grid-template-columns: 1fr; }
      .h-scroll { gap: 16px; }
      .scroll-card { min-width: 260px; }
      .hero-stats { gap: 24px; }
      .hero-stat .num { font-size: 28px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
      .section-title { font-size: 20px; }
      .subscribe-inner h2 { font-size: 28px; }
      .subscribe-form { flex-direction: column; }
      .subscribe-form button { width: 100%; }
    }

    /* Mobile nav overlay */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.95);
      z-index: 200;
      padding: 80px 24px 24px;
      flex-direction: column;
      gap: 4px;
      overflow-y: auto;
    }

    .mobile-nav.open { display: flex; }

    .mobile-nav a {
      color: #fff;
      text-decoration: none;
      font-size: 18px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      font-weight: 500;
      letter-spacing: 1px;
      transition: all 0.3s;
    }

    .mobile-nav a:hover { color: #FCA5A5; padding-left: 8px; }

    .mobile-nav-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: none;
      border: none;
      color: #fff;
      font-size: 28px;
      cursor: pointer;
    }

    /* Scroll top */
    .scroll-top {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 44px;
      height: 44px;
      background: var(--red-primary);
      color: #fff;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      box-shadow: 0 4px 16px rgba(185,28,28,0.4);
      z-index: 90;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.3s;
    }

    .scroll-top.visible { opacity: 1; transform: translateY(0); }
    .scroll-top:hover { background: var(--red-dark); transform: translateY(-3px); }

    /* Country flag style cards */
    .country-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      color: var(--text-light);
      margin-bottom: 6px;
    }

    .country-tag::before {
      content: '';
      width: 14px;
      height: 10px;
      border-radius: 2px;
      background: linear-gradient(135deg, #ccc, #eee);
      display: inline-block;
    }

    /* Reading time */
    .read-time {
      font-size: 11px;
      color: var(--text-light);
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .read-time svg { width: 12px; height: 12px; }

    /* Tag pills */
    .tag-pill {
      display: inline-block;
      padding: 2px 10px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 500;
      margin: 2px;
    }

    .tag-pill.red { background: var(--red-light); color: var(--red-primary); }
    .tag-pill.blue { background: var(--blue-light); color: var(--blue-primary); }
    .tag-pill.gold { background: var(--gold-light); color: var(--gold); }
