/* roulang page: index */
:root {
      --wine: #5b1836;
      --wine-deep: #351122;
      --wine-soft: #7f3154;
      --coral: #e26d52;
      --lime: #d7e96b;
      --cream: #f8f4ed;
      --paper: #fffdf9;
      --ink: #251d22;
      --muted: #776b70;
      --line: #e5dbd7;
      --white: #fff;
      --shadow: 0 16px 42px rgba(62, 25, 42, .10);
      --shadow-deep: 0 22px 60px rgba(38, 12, 27, .22);
      --radius: 14px;
      --radius-sm: 9px;
      --container: 1220px;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--cream);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
      font-size: 16px;
      line-height: 1.8;
    }
    img, video { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }
    button { cursor: pointer; }
    .container { max-width: var(--container); }
    .eyebrow {
      color: var(--coral);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .section-space { padding: 100px 0; }
    .section-heading { max-width: 650px; margin-bottom: 42px; }
    .section-heading h2 {
      margin: 8px 0 14px;
      color: var(--wine-deep);
      font-size: clamp(30px, 4vw, 52px);
      font-weight: 800;
      line-height: 1.18;
    }
    .section-heading p { color: var(--muted); margin: 0; }
    .btn {
      min-height: 46px;
      padding: 10px 20px;
      border-radius: 8px;
      font-weight: 700;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    }
    .btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible {
      outline: 3px solid rgba(226, 109, 82, .45);
      outline-offset: 3px;
    }
    .btn-primary {
      color: var(--white);
      background: var(--coral);
      border: 1px solid var(--coral);
      box-shadow: 0 9px 18px rgba(226, 109, 82, .22);
    }
    .btn-primary:hover { color: var(--white); background: #c9523e; border-color: #c9523e; transform: translateY(-2px); box-shadow: 0 13px 24px rgba(226, 109, 82, .30); }
    .btn-outline-light { border: 1px solid rgba(255,255,255,.55); color: var(--white); }
    .btn-outline-light:hover { color: var(--wine-deep); background: var(--white); border-color: var(--white); transform: translateY(-2px); }
    .btn-outline-wine { color: var(--wine); border: 1px solid var(--wine); background: transparent; }
    .btn-outline-wine:hover { color: var(--white); background: var(--wine); transform: translateY(-2px); }
    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 3px 10px;
      border: 1px solid rgba(91,24,54,.18);
      border-radius: 30px;
      color: var(--wine);
      background: rgba(255,255,255,.68);
      font-size: 12px;
      font-weight: 700;
      line-height: 1.3;
    }
    .tag-dark { color: var(--lime); border-color: rgba(215,233,107,.32); background: rgba(255,255,255,.08); }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255,253,249,.97);
      border-bottom: 1px solid var(--line);
    }
    .notice-bar {
      color: var(--white);
      background: var(--wine-deep);
      font-size: 12px;
      line-height: 1.4;
      padding: 8px 0;
    }
    .notice-inner { display: flex; justify-content: space-between; gap: 20px; }
    .notice-status { color: var(--lime); font-weight: 700; }
    .masthead { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 15px;
      color: var(--wine-deep);
      font-weight: 900;
      font-size: 22px;
      letter-spacing: 0;
      white-space: nowrap;
    }
    .brand-mark {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      color: var(--wine-deep);
      background: var(--lime);
      border-radius: 9px;
      font-size: 18px;
      font-weight: 900;
    }
    .brand-divider { width: 1px; height: 30px; background: var(--line); }
    .channel-nav { display: flex; align-items: center; gap: 6px; }
    .channel-nav a {
      position: relative;
      padding: 12px 15px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
      transition: color .2s ease, background .2s ease;
    }
    .channel-nav a::after {
      position: absolute;
      right: 15px;
      bottom: 4px;
      left: 15px;
      height: 2px;
      background: var(--coral);
      content: "";
      transform: scaleX(0);
      transition: transform .2s ease;
    }
    .channel-nav a:hover, .channel-nav a.active { color: var(--wine); background: #f7eee9; }
    .channel-nav a:hover::after, .channel-nav a.active::after { transform: scaleX(1); }
    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 8px;
      color: var(--wine);
      background: var(--paper);
      font-size: 20px;
    }
    .mobile-channel-strip { display: none; }

    .hero {
      position: relative;
      min-height: 650px;
      display: flex;
      align-items: center;
      overflow: hidden;
      color: var(--white);
      background: var(--wine-deep);
    }
    .hero-media { position: absolute; inset: 0; z-index: 0; }
    .hero-media video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .42;
    }
    .hero-media::after {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(35,9,23,.96) 8%, rgba(53,17,34,.78) 52%, rgba(53,17,34,.48) 100%);
      content: "";
    }
    .hero-content { position: relative; z-index: 1; padding: 90px 0 82px; }
    .hero-copy { max-width: 760px; }
    .hero h1 {
      max-width: 800px;
      margin: 18px 0 22px;
      font-size: clamp(42px, 6.4vw, 86px);
      font-weight: 900;
      line-height: 1.08;
    }
    .hero-intro { max-width: 680px; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.9; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
    .hero-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(130px, 1fr));
      max-width: 680px;
      margin-top: 62px;
      border-top: 1px solid rgba(255,255,255,.25);
      border-bottom: 1px solid rgba(255,255,255,.25);
    }
    .hero-stat { padding: 18px 20px 18px 0; border-right: 1px solid rgba(255,255,255,.2); }
    .hero-stat:last-child { border-right: 0; padding-left: 20px; }
    .hero-stat:not(:first-child) { padding-left: 20px; }
    .hero-stat strong { display: block; color: var(--lime); font-size: 25px; line-height: 1.2; }
    .hero-stat span { color: rgba(255,255,255,.7); font-size: 13px; }

    .topic-band { background: var(--paper); }
    .topic-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 22px; }
    .topic-feature, .topic-list { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); }
    .topic-feature { padding: 36px; background: var(--wine); color: var(--white); }
    .topic-feature h3 { margin: 18px 0 12px; font-size: 32px; line-height: 1.25; }
    .topic-feature p { color: rgba(255,255,255,.75); }
    .topic-list { padding: 14px 26px; }
    .topic-item { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
    .topic-item:last-child { border-bottom: 0; }
    .topic-item strong { display: block; color: var(--wine-deep); font-size: 17px; }
    .topic-item span { color: var(--muted); font-size: 13px; }

    .resource-section { background: #f1ebe4; }
    .resource-toolbar { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 28px; }
    .search-box { position: relative; width: min(100%, 310px); }
    .search-box label { display: block; margin-bottom: 5px; color: var(--wine); font-size: 12px; font-weight: 800; }
    .search-box input { width: 100%; min-height: 45px; padding: 9px 14px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); color: var(--ink); }
    .resource-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 24px; }
    .resource-list { display: grid; gap: 12px; }
    .resource-row {
      display: grid;
      grid-template-columns: 66px 1fr auto;
      align-items: center;
      gap: 18px;
      padding: 18px 20px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: var(--paper);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .resource-row:hover { border-color: var(--coral); transform: translateX(4px); box-shadow: var(--shadow); }
    .resource-number { color: var(--coral); font-size: 20px; font-weight: 900; }
    .resource-row h3 { margin: 0 0 4px; color: var(--wine-deep); font-size: 18px; }
    .resource-row p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
    .resource-side { padding: 28px; border-radius: var(--radius); color: var(--white); background: var(--wine-deep); box-shadow: var(--shadow-deep); }
    .resource-side h3 { margin: 12px 0; font-size: 26px; }
    .resource-side p { color: rgba(255,255,255,.72); font-size: 14px; }
    .side-line { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-size: 13px; }
    .side-line strong { color: var(--lime); }

    .path-section { background: var(--paper); }
    .path-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .path-step { min-height: 210px; padding: 28px 24px; border-right: 1px solid var(--line); }
    .path-step:last-child { border-right: 0; }
    .path-step .step-no { color: var(--coral); font-size: 13px; font-weight: 900; }
    .path-step h3 { margin: 24px 0 9px; color: var(--wine-deep); font-size: 20px; }
    .path-step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

    .featured-section { background: var(--wine); color: var(--white); }
    .featured-section .section-heading h2 { color: var(--white); }
    .featured-section .section-heading p { color: rgba(255,255,255,.72); }
    .feature-rail { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 14px; }
    .feature-card { position: relative; min-height: 250px; overflow: hidden; padding: 24px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); background: #702344; }
    .feature-card:first-child { min-height: 340px; background: linear-gradient(145deg, #8d3c5d, #50152f); }
    .feature-card::before { position: absolute; right: -25px; bottom: -50px; width: 150px; height: 150px; border: 1px solid rgba(215,233,107,.4); border-radius: 50%; content: ""; }
    .feature-card h3 { position: relative; max-width: 260px; margin: 36px 0 10px; font-size: 24px; line-height: 1.3; }
    .feature-card p { position: relative; color: rgba(255,255,255,.72); font-size: 14px; }
    .feature-index { color: var(--lime); font-size: 12px; font-weight: 900; letter-spacing: .12em; }

    .access-section { background: #f1ebe4; }
    .access-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .access-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
    .access-card.is-highlight { color: var(--white); background: var(--wine-deep); border-color: var(--wine-deep); }
    .access-card h3 { margin: 16px 0 10px; color: var(--wine-deep); font-size: 23px; }
    .access-card.is-highlight h3 { color: var(--white); }
    .access-card p { min-height: 78px; margin: 0 0 22px; color: var(--muted); font-size: 14px; }
    .access-card.is-highlight p { color: rgba(255,255,255,.72); }
    .access-list { padding: 0; margin: 0 0 24px; list-style: none; }
    .access-list li { padding: 8px 0; border-top: 1px solid var(--line); font-size: 14px; }
    .is-highlight .access-list li { border-color: rgba(255,255,255,.16); }

    .news-section { background: var(--paper); }
    .news-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; }
    .news-list { border-top: 2px solid var(--wine); }
    .news-item { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
    .news-item a { color: var(--wine-deep); font-weight: 800; }
    .news-item a:hover { color: var(--coral); }
    .news-item time { flex: 0 0 auto; color: var(--muted); font-size: 12px; }
    .news-note { padding: 30px; border-left: 4px solid var(--lime); background: #f4f0e9; }
    .news-note h3 { margin: 0 0 12px; color: var(--wine-deep); font-size: 23px; }
    .news-note p { margin: 0; color: var(--muted); font-size: 14px; }

    .faq-section { background: #f1ebe4; }
    .faq-wrap { max-width: 900px; }
    .accordion-item { border: 0; border-bottom: 1px solid var(--line); border-radius: 0 !important; background: transparent; }
    .accordion-button { padding: 22px 0; color: var(--wine-deep); background: transparent; box-shadow: none !important; font-weight: 800; }
    .accordion-button::after { width: 18px; height: 18px; background-size: 18px; }
    .accordion-button:not(.collapsed) { color: var(--coral); background: transparent; }
    .accordion-body { padding: 0 40px 22px 0; color: var(--muted); font-size: 14px; line-height: 1.85; }

    .cta-section { padding: 80px 0; color: var(--white); background: var(--wine-deep); }
    .cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
    .cta-inner h2 { max-width: 650px; margin: 0 0 12px; font-size: clamp(30px, 4vw, 50px); line-height: 1.2; }
    .cta-inner p { max-width: 610px; margin: 0; color: rgba(255,255,255,.72); }
    .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

    .site-footer { padding: 48px 0 22px; color: rgba(255,255,255,.7); background: #241019; }
    .footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 40px; padding-bottom: 35px; }
    .footer-brand { color: var(--white); font-size: 21px; font-weight: 900; }
    .footer-copy { max-width: 360px; margin: 14px 0 0; font-size: 13px; line-height: 1.8; }
    .footer-title { margin-bottom: 12px; color: var(--lime); font-size: 13px; font-weight: 800; }
    .footer-links { display: grid; gap: 7px; font-size: 13px; }
    .footer-links a:hover { color: var(--white); }
    .footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); font-size: 12px; }

    @media (max-width: 991.98px) {
      .masthead { min-height: 72px; }
      .brand { font-size: 18px; }
      .channel-nav { display: none; }
      .menu-toggle { display: block; }
      .channel-nav.show { position: absolute; top: 73px; right: 20px; left: 20px; display: grid; padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); box-shadow: var(--shadow); }
      .channel-nav.show a::after { right: 12px; left: 12px; }
      .hero { min-height: 600px; }
      .topic-grid, .resource-layout, .news-layout { grid-template-columns: 1fr; }
      .path-grid { grid-template-columns: repeat(2, 1fr); }
      .path-step:nth-child(2) { border-right: 0; }
      .path-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
      .feature-rail { grid-template-columns: 1fr 1fr; }
      .feature-card:first-child { grid-column: span 2; }
      .cta-inner { align-items: flex-start; flex-direction: column; }
    }
    @media (max-width: 767.98px) {
      .section-space { padding: 70px 0; }
      .notice-inner { align-items: flex-start; flex-direction: column; gap: 3px; }
      .brand-divider { display: none; }
      .mobile-channel-strip { display: flex; overflow-x: auto; gap: 8px; padding: 10px 0 12px; border-top: 1px solid var(--line); scrollbar-width: none; }
      .mobile-channel-strip::-webkit-scrollbar { display: none; }
      .mobile-channel-strip a { flex: 0 0 auto; padding: 4px 12px; border: 1px solid var(--line); border-radius: 20px; color: var(--muted); font-size: 12px; white-space: nowrap; }
      .mobile-channel-strip a.active { color: var(--white); background: var(--wine); border-color: var(--wine); }
      .hero-content { padding: 70px 0; }
      .hero h1 { font-size: clamp(39px, 12vw, 62px); }
      .hero-intro { font-size: 16px; }
      .hero-strip { margin-top: 42px; }
      .hero-stat { padding-right: 10px; }
      .hero-stat:not(:first-child), .hero-stat:last-child { padding-left: 10px; }
      .hero-stat strong { font-size: 20px; }
      .resource-toolbar { align-items: flex-start; flex-direction: column; }
      .search-box { width: 100%; }
      .resource-row { grid-template-columns: 42px 1fr; gap: 12px; }
      .resource-row .btn { grid-column: 2; justify-self: start; }
      .path-grid, .access-grid { grid-template-columns: 1fr; }
      .path-step { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
      .path-step:last-child { border-bottom: 0; }
      .feature-rail { grid-template-columns: 1fr; }
      .feature-card:first-child { grid-column: auto; min-height: 280px; }
      .feature-card { min-height: 210px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
      .footer-grid > div:first-child { grid-column: span 2; }
      .footer-bottom { align-items: flex-start; flex-direction: column; gap: 5px; }
    }
    @media (max-width: 420px) {
      .brand { font-size: 16px; gap: 9px; }
      .brand-mark { width: 34px; height: 34px; }
      .hero-actions .btn, .cta-actions .btn { width: 100%; }
      .hero-strip { grid-template-columns: 1fr; }
      .hero-stat, .hero-stat:not(:first-child), .hero-stat:last-child { padding: 12px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
      .hero-stat:last-child { border-bottom: 0; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-grid > div:first-child { grid-column: auto; }
    }

/* roulang page: category1 */
:root {
      --wine: #5b1836;
      --wine-deep: #351122;
      --wine-soft: #7f3154;
      --coral: #e26d52;
      --lime: #d7e96b;
      --cream: #f8f4ed;
      --paper: #fffdf9;
      --ink: #251d22;
      --muted: #776b70;
      --line: #e5dbd7;
      --white: #fff;
      --shadow: 0 16px 42px rgba(62, 25, 42, .10);
      --shadow-deep: 0 22px 60px rgba(38, 12, 27, .22);
      --radius: 14px;
      --radius-sm: 9px;
      --container: 1220px;
    }

    *,
    *::before,
    *::after { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--cream);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
      font-size: 16px;
      line-height: 1.8;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }
    button { cursor: pointer; }
    .container { max-width: var(--container); }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 253, 249, .98);
      border-bottom: 1px solid var(--line);
    }

    .header-inner {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 15px;
      color: var(--wine-deep);
      font-weight: 900;
      font-size: 22px;
      white-space: nowrap;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      color: var(--wine-deep);
      background: var(--lime);
      border-radius: 9px;
      font-size: 18px;
      font-weight: 900;
    }

    .brand-divider {
      width: 1px;
      height: 30px;
      background: var(--line);
    }

    .channel-nav {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .channel-nav a {
      position: relative;
      padding: 12px 15px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
      transition: color .2s ease, background .2s ease;
    }

    .channel-nav a::after {
      position: absolute;
      right: 15px;
      bottom: 4px;
      left: 15px;
      height: 2px;
      background: var(--coral);
      content: "";
      transform: scaleX(0);
      transition: transform .2s ease;
    }

    .channel-nav a:hover,
    .channel-nav a.active {
      color: var(--wine);
      background: #f7eee9;
    }

    .channel-nav a:hover::after,
    .channel-nav a.active::after { transform: scaleX(1); }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 8px;
      color: var(--wine);
      background: var(--paper);
      font-size: 20px;
    }

    .channel-status {
      border-bottom: 1px solid var(--line);
      color: var(--muted);
      background: #f4ece7;
      font-size: 12px;
    }

    .status-inner {
      min-height: 34px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .status-live {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--wine);
      font-weight: 800;
    }

    .status-live::before {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--coral);
      content: "";
    }

    .eyebrow {
      color: var(--coral);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .12em;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 3px 10px;
      border: 1px solid rgba(91, 24, 54, .18);
      border-radius: 30px;
      color: var(--wine);
      background: rgba(255, 255, 255, .68);
      font-size: 12px;
      font-weight: 700;
      line-height: 1.3;
    }

    .tag-dark {
      color: var(--lime);
      border-color: rgba(215, 233, 107, .32);
      background: rgba(255, 255, 255, .08);
    }

    .btn {
      min-height: 46px;
      padding: 10px 20px;
      border-radius: 8px;
      font-weight: 700;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    }

    .btn:focus-visible,
    a:focus-visible,
    button:focus-visible,
    input:focus-visible {
      outline: 3px solid rgba(226, 109, 82, .45);
      outline-offset: 3px;
    }

    .btn-primary {
      color: var(--white);
      background: var(--coral);
      border: 1px solid var(--coral);
      box-shadow: 0 9px 18px rgba(226, 109, 82, .22);
    }

    .btn-primary:hover {
      color: var(--white);
      background: #c9523e;
      border-color: #c9523e;
      transform: translateY(-2px);
      box-shadow: 0 13px 24px rgba(226, 109, 82, .30);
    }

    .btn-outline-light {
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, .55);
    }

    .btn-outline-light:hover {
      color: var(--wine-deep);
      background: var(--white);
      border-color: var(--white);
      transform: translateY(-2px);
    }

    .btn-outline-wine {
      color: var(--wine);
      border: 1px solid var(--wine);
      background: transparent;
    }

    .btn-outline-wine:hover {
      color: var(--white);
      background: var(--wine);
      transform: translateY(-2px);
    }

    .category-hero {
      position: relative;
      overflow: hidden;
      color: var(--white);
      background: var(--wine-deep);
    }

    .category-hero::before {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 42%;
      background:
        linear-gradient(135deg, transparent 0 48%, rgba(215, 233, 107, .16) 48% 49%, transparent 49% 62%, rgba(226, 109, 82, .22) 62% 63%, transparent 63%),
        repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, .06) 42px 43px);
      content: "";
      opacity: .9;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      padding: 74px 0 64px;
    }

    .breadcrumb-line {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 34px;
      color: rgba(255, 255, 255, .62);
      font-size: 13px;
    }

    .breadcrumb-line a:hover { color: var(--lime); }
    .breadcrumb-separator { color: var(--coral); }

    .category-hero h1 {
      max-width: 820px;
      margin: 0 0 20px;
      font-size: clamp(40px, 6vw, 78px);
      font-weight: 900;
      line-height: 1.1;
    }

    .hero-summary {
      max-width: 730px;
      margin: 0;
      color: rgba(255, 255, 255, .78);
      font-size: 18px;
      line-height: 1.9;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .hero-info-bar {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      max-width: 860px;
      margin-top: 58px;
      border-top: 1px solid rgba(255, 255, 255, .25);
      border-bottom: 1px solid rgba(255, 255, 255, .25);
    }

    .hero-info {
      padding: 17px 22px 17px 0;
      border-right: 1px solid rgba(255, 255, 255, .18);
    }

    .hero-info:not(:first-child) { padding-left: 22px; }
    .hero-info:last-child { border-right: 0; }
    .hero-info strong {
      display: block;
      color: var(--lime);
      font-size: 23px;
      line-height: 1.3;
    }

    .hero-info span {
      color: rgba(255, 255, 255, .67);
      font-size: 13px;
    }

    .section-space { padding: 94px 0; }

    .section-heading {
      max-width: 680px;
      margin-bottom: 38px;
    }

    .section-heading h2 {
      margin: 8px 0 14px;
      color: var(--wine-deep);
      font-size: clamp(30px, 4vw, 50px);
      font-weight: 800;
      line-height: 1.2;
    }

    .section-heading p {
      margin: 0;
      color: var(--muted);
    }

    .browse-layout {
      display: grid;
      grid-template-columns: 290px 1fr;
      gap: 38px;
      align-items: start;
    }

    .filter-panel {
      position: sticky;
      top: 118px;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: var(--shadow);
    }

    .filter-title {
      margin-bottom: 18px;
      color: var(--wine-deep);
      font-size: 18px;
      font-weight: 800;
    }

    .filter-list {
      display: grid;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .filter-list a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 44px;
      padding: 8px 12px;
      border-left: 3px solid transparent;
      color: var(--muted);
      border-radius: 5px;
      font-size: 14px;
      font-weight: 700;
      transition: color .2s ease, background .2s ease, border-color .2s ease;
    }

    .filter-list a:hover,
    .filter-list a.active {
      color: var(--wine);
      background: #f6ece8;
      border-left-color: var(--coral);
    }

    .filter-count {
      color: var(--coral);
      font-size: 12px;
    }

    .filter-note {
      margin: 26px 0 0;
      padding-top: 18px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 13px;
      line-height: 1.7;
    }

    .channel-tools {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 20px;
      padding: 13px 16px;
      border: 1px solid var(--line);
      background: var(--paper);
    }

    .channel-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .channel-tags a {
      padding: 6px 12px;
      border-radius: 5px;
      color: var(--muted);
      background: #f5eeea;
      font-size: 13px;
      font-weight: 700;
    }

    .channel-tags a:hover,
    .channel-tags a.active {
      color: var(--white);
      background: var(--wine);
    }

    .search-note {
      color: var(--muted);
      font-size: 13px;
      white-space: nowrap;
    }

    .content-list {
      display: grid;
      gap: 13px;
    }

    .content-row {
      display: grid;
      grid-template-columns: 92px 1fr auto;
      gap: 20px;
      align-items: center;
      min-height: 128px;
      padding: 18px 20px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: var(--paper);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .content-row:hover {
      transform: translateX(4px);
      border-color: rgba(91, 24, 54, .32);
      box-shadow: var(--shadow);
    }

    .content-index {
      display: grid;
      place-items: center;
      width: 74px;
      height: 74px;
      color: var(--wine);
      background: #f3e5df;
      font-size: 25px;
      font-weight: 900;
    }

    .content-title {
      margin: 7px 0 4px;
      color: var(--wine-deep);
      font-size: 19px;
      font-weight: 800;
      line-height: 1.4;
    }

    .content-desc {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .content-meta {
      display: flex;
      align-items: center;
      gap: 9px;
      color: var(--muted);
      font-size: 12px;
    }

    .status-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--coral);
    }

    .entry-button {
      min-width: 102px;
      text-align: center;
    }

    .feature-band {
      color: var(--white);
      background: var(--wine);
    }

    .feature-band .section-heading h2 { color: var(--white); }
    .feature-band .section-heading p { color: rgba(255, 255, 255, .70); }

    .feature-board {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 20px;
    }

    .feature-main,
    .feature-side {
      min-height: 250px;
      padding: 30px;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: var(--radius);
      background: rgba(38, 12, 27, .36);
    }

    .feature-main {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background-color: #45152d;
      background-image:
        linear-gradient(90deg, transparent 0 73%, rgba(215, 233, 107, .17) 73% 74%, transparent 74%),
        repeating-linear-gradient(0deg, transparent 0 39px, rgba(255, 255, 255, .07) 39px 40px);
    }

    .feature-main h3 {
      max-width: 520px;
      margin: 14px 0 12px;
      font-size: clamp(25px, 3vw, 38px);
      font-weight: 800;
      line-height: 1.25;
    }

    .feature-main p,
    .feature-side p {
      margin: 0;
      color: rgba(255, 255, 255, .72);
    }

    .feature-side {
      display: grid;
      align-content: center;
      gap: 20px;
    }

    .mini-entry {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(255, 255, 255, .15);
    }

    .mini-entry:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }

    .mini-entry strong { color: var(--lime); }
    .mini-entry span { color: rgba(255, 255, 255, .72); font-size: 13px; }

    .tips-section { background: var(--paper); }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .step {
      position: relative;
      min-height: 190px;
      padding: 25px 24px 24px;
      border-right: 1px solid var(--line);
    }

    .step:last-child { border-right: 0; }

    .step-number {
      display: block;
      margin-bottom: 24px;
      color: var(--coral);
      font-size: 13px;
      font-weight: 900;
    }

    .step h3 {
      margin: 0 0 8px;
      color: var(--wine-deep);
      font-size: 18px;
      font-weight: 800;
    }

    .step p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: .7fr 1.3fr;
      gap: 60px;
      align-items: start;
    }

    .faq-intro {
      padding-top: 8px;
    }

    .faq-intro h2 {
      margin: 8px 0 15px;
      color: var(--wine-deep);
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.2;
    }

    .faq-intro p {
      margin: 0;
      color: var(--muted);
    }

    .accordion {
      --bs-accordion-border-color: var(--line);
      --bs-accordion-bg: var(--paper);
      --bs-accordion-btn-bg: var(--paper);
      --bs-accordion-active-bg: #f6ece8;
      --bs-accordion-active-color: var(--wine);
      --bs-accordion-btn-focus-box-shadow: 0 0 0 .2rem rgba(226, 109, 82, .16);
    }

    .accordion-item {
      margin-bottom: 10px;
      overflow: hidden;
      border: 1px solid var(--line) !important;
      border-radius: var(--radius-sm) !important;
      box-shadow: none;
    }

    .accordion-button {
      min-height: 64px;
      color: var(--wine-deep);
      font-weight: 800;
    }

    .accordion-button:not(.collapsed) { box-shadow: none; }
    .accordion-body {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.8;
    }

    .cta-band {
      padding: 76px 0;
      background: var(--lime);
    }

    .cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .cta-inner h2 {
      max-width: 700px;
      margin: 0 0 10px;
      color: var(--wine-deep);
      font-size: clamp(30px, 4vw, 52px);
      font-weight: 900;
      line-height: 1.2;
    }

    .cta-inner p {
      max-width: 650px;
      margin: 0;
      color: #60464e;
    }

    .cta-inner .btn-primary {
      flex: 0 0 auto;
      color: var(--white);
      background: var(--wine);
      border-color: var(--wine);
      box-shadow: none;
    }

    .cta-inner .btn-primary:hover {
      background: var(--wine-deep);
      border-color: var(--wine-deep);
    }

    .site-footer {
      padding: 64px 0 24px;
      color: rgba(255, 255, 255, .72);
      background: var(--wine-deep);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr .7fr .8fr;
      gap: 60px;
      padding-bottom: 50px;
      border-bottom: 1px solid rgba(255, 255, 255, .15);
    }

    .footer-brand {
      display: inline-block;
      margin-bottom: 15px;
      color: var(--white);
      font-size: 21px;
      font-weight: 900;
    }

    .footer-copy {
      max-width: 420px;
      margin: 0;
      font-size: 14px;
      line-height: 1.8;
    }

    .footer-title {
      margin-bottom: 15px;
      color: var(--lime);
      font-size: 13px;
      font-weight: 800;
    }

    .footer-links {
      display: grid;
      gap: 7px;
      font-size: 14px;
    }

    .footer-links a { transition: color .2s ease; }
    .footer-links a:hover { color: var(--lime); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding-top: 20px;
      font-size: 12px;
    }

    @media (max-width: 991.98px) {
      .header-inner { min-height: 70px; }
      .brand-divider { display: none; }
      .menu-toggle {
        display: grid;
        place-items: center;
      }
      .channel-nav {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        left: 0;
        padding: 10px 20px 16px;
        border-bottom: 1px solid var(--line);
        background: var(--paper);
        box-shadow: var(--shadow);
      }
      .channel-nav.open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
      }
      .channel-nav a { padding: 12px 10px; }
      .browse-layout { grid-template-columns: 1fr; }
      .filter-panel {
        position: static;
        padding: 18px 20px;
      }
      .filter-list {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 2px;
      }
      .filter-list a {
        flex: 0 0 auto;
        border-left: 0;
        border-bottom: 3px solid transparent;
      }
      .filter-list a:hover,
      .filter-list a.active {
        border-left: 0;
        border-bottom-color: var(--coral);
      }
      .filter-note { display: none; }
      .faq-wrap { grid-template-columns: 1fr; gap: 30px; }
      .cta-inner { align-items: flex-start; flex-direction: column; }
      .footer-grid { gap: 35px; }
    }

    @media (max-width: 767.98px) {
      .status-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 0;
        padding: 5px 0;
      }
      .category-hero::before { width: 70%; opacity: .55; }
      .hero-inner { padding: 48px 0 44px; }
      .breadcrumb-line { margin-bottom: 24px; }
      .hero-summary { font-size: 16px; }
      .hero-info-bar { grid-template-columns: 1fr; margin-top: 38px; }
      .hero-info,
      .hero-info:not(:first-child) {
        padding: 13px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .18);
      }
      .hero-info:last-child { border-bottom: 0; }
      .section-space { padding: 66px 0; }
      .feature-board { grid-template-columns: 1fr; }
      .steps { grid-template-columns: 1fr 1fr; }
      .step:nth-child(2) { border-right: 0; }
      .step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
      .content-row {
        grid-template-columns: 58px 1fr;
        gap: 15px;
        padding: 15px;
      }
      .content-index { width: 58px; height: 58px; font-size: 20px; }
      .entry-button { grid-column: 2; justify-self: start; }
      .content-title { font-size: 17px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid > div:first-child { grid-column: 1 / -1; }
      .footer-bottom { align-items: flex-start; flex-direction: column; }
    }

    @media (max-width: 575.98px) {
      .brand { gap: 9px; font-size: 17px; }
      .brand-mark { width: 34px; height: 34px; font-size: 16px; }
      .category-hero h1 { font-size: 40px; }
      .hero-actions .btn { width: 100%; }
      .channel-tools { align-items: flex-start; flex-direction: column; }
      .search-note { white-space: normal; }
      .steps { grid-template-columns: 1fr; }
      .step,
      .step:nth-child(2) {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }
      .step:last-child { border-bottom: 0; }
      .feature-main,
      .feature-side { padding: 23px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-grid > div:first-child { grid-column: auto; }
    }
