  :root {
      --primary: #d6336c;
      --bg: #f6f7fb;
      --card: #ffffff;
      --soft-hot: #a61e4d;
      --ink: #1f2633;
      --muted: #667085;
      --border: #e5e7eb;
  }

  * {
      box-sizing: border-box;
  }

  body {
      margin: 0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      background: #f6f7fb;
      color: #1f2633;
      line-height: 1.65;
  }

  .container {
      max-width: 1100px;
      margin: 0 auto;
      padding-left: 20px;
      padding-right: 20px;
  }

  a {
      text-decoration: none;
      color: inherit;
  }

  /* ================= Header ================= */
  .header {
      padding-top: 5px;
      top: 0;
      z-index: 10;

      background: #f6f7fb;
      box-shadow: 0 0px 5px rgba(0, 0, 0, .2);
      border-radius: 0 0 5px 5px;
  }

  /* PC：三列 Grid，确保 |logo| nav(居中) |language|*/
  .header .wrap {
      max-width: 1100px;
      margin: 0 auto;
      padding: 14px 20px 10px 20px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      column-gap: 20px;
  }

  .header-row {
      display: contents;
  }

  /* 让 logo 明确在第1列 */
  .brand {
      grid-column: 1;
      display: flex;
      align-items: center;
      gap: 12px;
      color: #3a2f2a;
      min-width: max-content;
  }

  .brand-mark {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: linear-gradient(135deg, #c8955f, #f06292);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 22px;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .45);
      box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
  }

  .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
  }

  .brand-name {
      font-size: 18px;
      font-weight: 545;
  }

  .brand-tagline {
      font-size: 12px;
      font-weight: 545;
  }

  .header-right {
      grid-column: 2;
      display: flex;
      justify-content: center;
      min-width: 0;
  }

  .nav {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      padding-top: 15px;
      margin-bottom: 10px;
  }

  .nav a {
      padding: 2px 8px 2px 8px;
      border-radius: 5px;
      font-size: 16px;
      /* font-weight: 600; */
      color: #3a2f2a;
  }

  .nav a:hover,
  .nav a.active {
      background: rgba(230, 230, 230, .3);
      color: #000;
      box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, .2);
      font-weight: 500;
  }

  /* 右侧：language 明确在第3列，并靠右 */
  .lang-switcher {
      grid-column: 3;
      justify-self: end;
      position: relative;
      min-width: max-content;

  }

  .lang-btn {
      padding: 5px 8px;
      border-radius: 6px;
      border: 1px solid rgba(150, 150, 150, .45);
      background: rgba(255, 255, 255, .08);
      font-size: 13px;
      cursor: pointer;
      text-align: left;
      width: 90px;
      color: var(--muted);
  }

  .lang-btn:hover {
      border: 1px solid #000;
      color: #000;
  }

  .lang-menu {
      position: absolute;
      top: calc(100% + 1px);
      right: 0;
      list-style: none;
      margin: 0;
      padding: 5px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 12px 28px rgba(16, 24, 40, .12);
      display: none;
      z-index: 20;
      border: 1px solid rgba(150, 150, 150, .45);
  }

  .lang-menu li {
      width: 80px;
      padding: 4px 6px;
      border-radius: 4px;
      cursor: pointer;
      font-size: 13px;
      color: #000;
  }

  .lang-menu li:hover {
      background: #e9e7e8;
  }

  /* ================= Footer ================= */
  .footer {
      border-top: 1px solid #e5e7eb;
      color: #6b7280;
      text-align: center;
      padding: 24px 16px;
  }

  .footer-brand,
  .footer-nav {
      padding-bottom: 10px;
  }

  .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 4px 16px 8px;
      display: flex;
      flex-direction: column;
      gap: 10px;
  }

  .footer-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 6px;
      line-height: 1.6;
  }

  .footer-note,
  .footer-disclosure {
      margin: 0;
      font-size: 13px;
      line-height: 1.6;
      color: #6b7280;
  }

  .footer-copy {
      margin: 4px 0 0;
      font-size: 12px;
      color: #6b7280;
  }

  .footer a {
      color: #c0265a;
      margin: 0 10px;
  }

  .footer a:hover {
      text-decoration: underline;
      color: #F0265a;
  }

  .footer-nav a {
      font-size: 14px;
      margin-left: 15px;
      margin-right: 15px;
  }

  /* ================= Mobile ================= */
  @media (max-width: 768px) {
      /* .header {
          position: sticky;
          box-shadow: 0 5px 5px rgba(0, 0, 0, .2);
      } */

      .header .wrap {
          display: flex;
          flex-direction: column;
          gap: 10px;
          padding-bottom: 0px;
      }

      .header-row {
          display: flex;
          width: 100%;
          align-items: center;
          justify-content: space-between;
      }

      .brand {
          grid-column: auto;
          min-width: 0;
      }

      .lang-switcher {
          grid-column: auto;
          justify-self: auto;
      }

      .lang-btn {
          padding: 3px 5px;
          border-radius: 4px;
          font-size: 12px;
          width: 80px;
      }

      .lang-menu li {
          width: 70px;
          padding: 3px 5px;
          border-radius: 3px;
          font-size: 12px;
      }

      .header-right {
          width: 100%;
          justify-content: center;
      }

      .nav {
          width: 100%;
          justify-content: center;
          flex-wrap: nowrap;
          overflow-x: auto;
          -webkit-overflow-scrolling: touch;
          scrollbar-width: thin;
          padding-top: 12px;
          padding-bottom: 10px;
          gap: 4px;
      }

      .nav::-webkit-scrollbar {
          height: 4px;
      }

      .nav::-webkit-scrollbar-thumb {
          background: rgba(58, 47, 42, .28);
          border-radius: 999px;
      }

      .nav a {
          white-space: nowrap;
          font-size: 14px;
          padding: 2px 6px;
          /* margin: 0 3px; */
      }

      .brand-mark {
          width: 35px;
          height: 35px;
          font-size: 18px;
          border-radius: 8px;
      }

      .brand-name {
          font-size: 16px;
      }

      .brand-tagline {
          font-size: 11px;
      }

      .footer {
          font-size: 13px;
          padding: 15px 20px 15px 20px;
      }

      .footer-inner {
          gap: 8px;
          padding: 4px 0;
      }

      .footer-links a {
          margin: 0 5px;
          color: #ab7280;
      }

      .footer-note,
      .footer-disclosure {
          font-size: 12px;
      }

      .footer-nav a {
          font-size: 13px;
          margin-left: 6px;
          margin-right: 6px;
      }
  }
