:root {
      --red-primary: #B91C1C;
      --red-dark: #7F1D1D;
      --red-light: #FEE2E2;
      --blue-primary: #1E3A8A;
      --blue-dark: #0F1D44;
      --blue-light: #DBEAFE;
      --blue-mid: #1D4ED8;
      --gold: #D97706;
      --gold-light: #FEF3C7;
      --text-dark: #111827;
      --text-mid: #374151;
      --text-light: #6B7280;
      --text-faint: #9CA3AF;
      --bg-cream: #FAFAF8;
      --bg-warm: #FEF7ED;
      --card-bg: #ffffff;
      --border: #E5E7EB;
      --border-light: #F3F4F6;
      --font-serif: 'Noto Serif SC', serif;
      --font-sans: 'Noto Sans SC', sans-serif;
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
      --shadow: 0 2px 8px rgba(0,0,0,0.10);
      --shadow-lg: 0 4px 20px rgba(0,0,0,0.14);
      --max-w: 1240px;
    }

/* ===== Website base / header / footer (extracted from live site) ===== */



    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: var(--font-sans);
      background: var(--bg-cream);
      color: var(--text-dark);
      line-height: 1.7;
      overflow-x: hidden;
    }


    /* ===== 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-top .header-date {
      color: rgba(255,255,255,0.7);
      font-size: 12px;
      letter-spacing: 1px;
    }

    .header-top .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-area {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .logo-emblem {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, #fff, rgba(255,255,255,0.9));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid rgba(255,255,255,0.3);
    }

    .logo-emblem svg { width: 26px; height: 26px; }

    .logo-text h1 {
      font-family: var(--font-serif);
      font-size: 22px;
      font-weight: 900;
      color: #fff;
      letter-spacing: 3px;
      line-height: 1.1;
    }

    .logo-text p {
      font-size: 10px;
      color: rgba(255,255,255,0.6);
      letter-spacing: 2px;
    }

    .main-nav { display: flex; gap: 0; }

    .main-nav a {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      padding: 8px 16px;
      display: block;
      transition: all 0.3s;
      border-bottom: 2px solid transparent;
    }

    .main-nav a:hover, .main-nav a.active {
      color: #fff;
      background: rgba(255,255,255,0.1);
      border-bottom-color: var(--red-primary);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .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);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
      color: #fff;
      padding: 10px 20px;
      border-radius: 10px;
      text-decoration: none;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1px;
      transition: all 0.35s;
      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);
      color: var(--red-primary);
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(185,28,28,0.45);
    }

    .nav-cta svg { width: 14px; height: 14px; flex-shrink: 0; }

    .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;
    }


    /* Mobile Nav */
    .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;
    }


    /* ===== FOOTER ===== */
    .site-footer {
      background: var(--blue-dark);
      color: rgba(255,255,255,0.6);
      padding: 48px 0 0;
    }

    .footer-grid {
      max-width: var(--max-w);
      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: var(--font-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);
      transition: all 0.3s; font-size: 14px;
    }

    .footer-social a:hover { background: var(--red-primary); color: #fff; }

    .footer-col h4 {
      font-family: var(--font-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: var(--max-w);
      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; }


    /* ===== BACK TO TOP ===== */
    .back-to-top {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 44px;
      height: 44px;
      background: var(--red-primary);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-lg);
      transition: all 0.3s;
      opacity: 0;
      transform: translateY(16px);
      cursor: pointer;
      z-index: 50;
    }

    .back-to-top.visible { opacity: 1; transform: translateY(0); }

    .back-to-top:hover { background: var(--red-dark); transform: translateY(-2px); }


    @media (max-width: 900px) {
      .header-inner { height: 70px; padding: 0 16px; }
      .logo-emblem { width: 40px; height: 40px; }
      .logo-emblem svg { width: 22px; height: 22px; }
      .logo-text h1 { font-size: 20px; letter-spacing: 2px; }
      .logo-text p { display: none; }
      .main-nav { display: none; }
      .header-actions { gap: 8px; }
      .lang-switch span { display: none; }
      .lang-switch { padding: 8px 10px; }
      .nav-cta { padding: 8px 14px; font-size: 12px; }
      .nav-cta svg { display: none; }
      .mobile-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; padding: 0; border-radius: 8px; }
      .sub-nav-wrap { top: 70px; }
      .channel-hero { min-height: 380px; }
      .channel-hero-content { padding: 40px 16px 36px; }
      .channel-hero h1 { font-size: 26px; }
      .channel-hero-stats { gap: 20px; }
      .channel-hero-stat-num { font-size: 26px; }
      .featured-cover { grid-template-columns: 1fr; }
      .featured-cover-img { min-height: 240px; }
      .featured-cover-body { padding: 28px 24px; }
      .showcase-header { padding: 14px 18px; border-radius: 12px 0 0 0; }
      .showcase-header h2 { font-size: 18px; }
      .showcase-header .label { font-size: 11px; }
      .highlight-grid { grid-template-columns: 1fr; }
      .article-list-section { padding: 20px 16px; }
      .article-list-item { grid-template-columns: 1fr; gap: 14px; }
      .article-list-thumb { width: 100%; height: 180px; }
      .article-list-header { flex-direction: column; align-items: flex-start; gap: 12px; }
      .article-list-filter { flex-wrap: wrap; }
      .sidebar { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .subscribe-form { flex-direction: column; }
      .subscribe-form button { width: 100%; }
    }


    @media (max-width: 600px) {
      .header-top { gap: 12px; flex-wrap: wrap; }
      .header-top .header-date { font-size: 10px; }
      .header-inner { height: 60px; padding: 0 12px; }
      .logo-emblem { width: 34px; height: 34px; }
      .logo-text h1 { font-size: 16px; letter-spacing: 1px; }
      .sub-nav-wrap { top: 60px; }
      .sub-nav a { padding: 12px 14px; font-size: 13px; }
      .channel-hero { min-height: 340px; }
      .channel-hero h1 { font-size: 22px; }
      .channel-hero-desc { font-size: 14px; }
      .main-wrap { padding: 24px 12px; }
      .featured-cover-body h3 { font-size: 18px; }
      .showcase-header { padding: 12px 16px; }
      .showcase-header h2 { font-size: 16px; }
      .showcase-header .label { font-size: 10px; }
      .article-list-body h3 { font-size: 15px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
      .page-btn { min-width: 34px; height: 34px; padding: 0 10px; font-size: 13px; }
      .pagination a, .pagination b { min-width: 34px; height: 34px; padding: 0 10px; font-size: 13px; }
    }