/* roulang page: index */
:root {
    --bg-site: #F4FAFD;
    --surface: #FFFFFF;
    --surface-alt: #E8F2F8;
    --primary: #0B6E9D;
    --primary-strong: #084C6E;
    --accent: #4CAF7D;
    --accent-light: #E7F5EE;
    --warm: #F2A65A;
    --warm-light: #FFF1E0;
    --text-body: #1F2C33;
    --text-muted: #64777F;
    --border-line: #D3E3EB;
    --radius-card: 14px;
    --radius-btn: 999px;
    --shadow-card: 0 10px 28px rgba(16, 60, 80, 0.08);
    --shadow-hover: 0 14px 36px rgba(16, 60, 80, 0.14);
    --font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
    --space-section: 96px;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
  }

  body {
    font-family: var(--font-family);
    background-color: var(--bg-site);
    color: var(--text-body);
    line-height: 1.75;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
  }

  body.no-scroll {
    overflow: hidden;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.25s, background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  }

  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  [tabindex]:focus-visible {
    outline: 3px solid rgba(242, 166, 90, 0.6);
    outline-offset: 2px;
  }

  button {
    font-family: var(--font-family);
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
  }

  /* 背景装饰 */
  .bg-decor {
    position: relative;
    overflow: hidden;
  }

  .bg-decor::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(11, 110, 157, 0.07), rgba(76, 175, 125, 0.06));
    pointer-events: none;
  }

  .bg-decor::after {
    content: "";
    position: absolute;
    bottom: 30px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 24px solid rgba(242, 166, 90, 0.04);
    pointer-events: none;
  }

  .bg-decor > * {
    position: relative;
    z-index: 1;
  }

  /* ===== Header ===== */
  .site-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(211, 227, 235, 0.65);
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
    position: relative;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(140deg, var(--primary) 0%, #0d86b5 60%, var(--accent) 115%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(11, 110, 157, 0.22);
    flex-shrink: 0;
  }

  .brand-icon svg {
    width: 25px;
    height: 25px;
  }

  .brand-name {
    font-size: 21px;
    font-weight: 700;
    color: var(--text-body);
    letter-spacing: 0.02em;
    line-height: 1.3;
    white-space: nowrap;
  }

  .header-tools {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .header-search {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-site);
    border: 1px solid var(--border-line);
    border-radius: 999px;
    padding: 7px 16px 7px 14px;
    width: 204px;
  }

  .header-search input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: var(--text-body);
    width: 100%;
  }

  .header-search input::placeholder {
    color: #9ab0bb;
  }

  .header-search .search-submit {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 2px;
    line-height: 1;
    border-radius: 8px;
  }

  .header-search .search-submit:hover {
    color: var(--primary);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header-actions .link-muted {
    background: none;
    border: none;
    color: var(--text-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 8px;
    border-radius: 8px;
    line-height: 1;
  }

  .header-actions .link-muted:hover {
    color: var(--primary);
    background: var(--surface-alt);
  }

  .header-actions .btn-pill {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 9px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    display: inline-block;
    text-align: center;
    line-height: 1.5;
  }

  .header-actions .btn-pill:hover {
    background: var(--primary-strong);
    transform: translateY(-1px);
  }

  .header-phones {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 13px;
    padding-right: 6px;
  }

  .header-phones .phone-svg {
    color: var(--accent);
  }

  .menu-toggle-btn {
    display: none;
    background: none;
    border: 1px solid var(--border-line);
    border-radius: 10px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    transition: background 0.2s;
  }

  .menu-toggle-btn:hover {
    background: var(--surface-alt);
  }

  .menu-toggle-btn .line {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px auto;
    background: var(--text-body);
    border-radius: 3px;
  }

  .mobile-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 22px 24px 26px;
    box-shadow: 0 16px 32px rgba(16, 60, 80, 0.12);
    border-bottom: 1px solid var(--border-line);
    border-radius: 0 0 16px 16px;
    z-index: 90;
  }

  .mobile-panel.open {
    display: block;
    animation: slideDown 0.25s ease-out;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .channel-row-nav {
    border-top: 1px solid rgba(211, 227, 235, 0.35);
    background: #ffffff;
  }

  .channel-nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 10px 0;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #b9d1dd transparent;
    white-space: nowrap;
  }

  .channel-nav-list::-webkit-scrollbar {
    height: 3px;
  }

  .channel-nav-list::-webkit-scrollbar-thumb {
    background: #c8d9e3;
    border-radius: 3px;
  }

  .channel-nav-list li {
    flex-shrink: 0;
  }

  .channel-nav-list li a {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-body);
    border: 1px solid transparent;
    transition: all 0.22s;
    text-align: center;
    min-height: 40px;
    line-height: 1.5;
  }

  .channel-nav-list li a:hover {
    background: var(--surface-alt);
    color: var(--primary);
    border-color: var(--border-line);
  }

  .channel-nav-list li a.active {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(11, 110, 157, 0.16);
  }

  .channel-nav-list li a.active:hover {
    background: var(--primary-strong);
    color: #fff;
  }

  /* ===== 按钮通用 ===== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--radius-btn);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.25s, box-shadow 0.3s;
    text-decoration: none;
    min-height: 48px;
  }

  .btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 22px rgba(11, 110, 157, 0.18);
  }

  .btn-primary:hover {
    background: var(--primary-strong);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(11, 110, 157, 0.24);
  }

  .btn-primary:active {
    transform: translateY(0px);
  }

  .btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
  }

  .btn-outline:hover {
    background: rgba(11, 110, 157, 0.06);
    border-color: var(--primary);
    transform: translateY(-2px);
  }

  .btn-light {
    background: #ffffff;
    color: var(--primary);
    border-color: #ffffff;
    box-shadow: 0 8px 22px rgba(16, 60, 80, 0.12);
  }

  .btn-light:hover {
    background: var(--surface-alt);
    border-color: var(--surface-alt);
    transform: translateY(-2px);
  }

  .btn-arrow::after {
    content: "→";
    font-size: 18px;
    transition: transform 0.25s;
    line-height: 1;
  }

  .btn-arrow:hover::after {
    transform: translateX(4px);
  }

  .btn-green {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 8px 20px rgba(76, 175, 125, 0.22);
  }

  .btn-green:hover {
    background: #3c9a68;
    border-color: #3c9a68;
    transform: translateY(-2px);
    color: #fff;
  }

  /* ===== Hero ===== */
  .hero-section {
    background: linear-gradient(180deg, #EDF6FA 0%, #F8FCFD 100%);
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
  }

  .hero-circle {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(76, 175, 125, 0.09), rgba(76, 175, 125, 0) 70%);
    top: 10px;
    left: -70px;
    pointer-events: none;
  }

  .hero-dot-trace {
    position: absolute;
    width: 300px;
    height: 160px;
    right: -20px;
    bottom: 10px;
    opacity: 0.6;
    pointer-events: none;
    background-image: radial-gradient(circle at 2px 2px, rgba(11, 110, 157, 0.13) 2px, transparent 0);
    background-size: 22px 22px;
    mask-image: radial-gradient(ellipse at center, #000 50%, transparent 100%);
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 56px;
    padding-top: 94px;
    padding-bottom: 70px;
  }

  .hero-caption {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(76, 175, 125, 0.12);
    display: inline-block;
    padding: 7px 20px;
    border-radius: 999px;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
  }

  h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.26;
    margin: 0 0 18px;
    color: var(--text-body);
    letter-spacing: -0.01em;
  }

  h1 .highlight-word {
    color: var(--primary);
    position: relative;
    white-space: nowrap;
  }

  .hero-lead {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.85;
    max-width: 500px;
    margin-bottom: 32px;
  }

  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
  }

  .hero-trusted-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
  }

  .hero-trusted-row .dot-list {
    display: flex;
    gap: 10px;
    list-style: none;
  }

  .hero-trusted-row .dot-list li span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
  }

  .hero-trusted-row .dot-list li .dot-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
  }

  .dot-icon.one {
    background: var(--accent);
  }

  .dot-icon.two {
    background: var(--warm);
  }

  .dot-icon.three {
    background: var(--primary);
  }

  .hero-visual {
    position: relative;
  }

  .hero-img-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 22px 46px rgba(16, 60, 80, 0.18);
    border: 1px solid rgba(211, 227, 235, 0.5);
    background: #E1EEF3;
    aspect-ratio: 4 / 3;
  }

  .hero-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-stat-floating {
    position: absolute;
    bottom: 26px;
    left: -24px;
    background: #fff;
    border-radius: var(--radius-card);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 22px;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(211, 227, 235, 0.35);
  }

  .stat-floating-item {
    text-align: center;
    min-width: 68px;
  }

  .stat-floating-item .num {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .stat-floating-item .label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
  }

  .stat-floating-item + .stat-floating-item {
    border-left: 1px solid var(--border-line);
    padding-left: 22px;
  }

  .hero-bottom-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(211, 227, 235, 0.35);
    margin-top: -14px;
    position: relative;
    padding: 20px 16px;
  }

  .hero-bottom-metrics .metric-item {
    padding: 8px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2px;
  }

  .hero-bottom-metrics .metric-item + .metric-item {
    border-left: 1px solid var(--border-line);
  }

  .metric-item .num {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-body);
    letter-spacing: -0.02em;
  }

  .metric-item .num small {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    margin-left: 2px;
  }

  .metric-item .desc {
    font-size: 13px;
    color: var(--text-muted);
  }

  /* ===== Section 公共 ===== */
  .section-block {
    padding-top: var(--space-section);
    padding-bottom: var(--space-section);
  }

  .section-alt-bg {
    background-color: var(--surface-alt);
  }

  .section-white-bg {
    background: #ffffff;
  }

  .section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(11, 110, 157, 0.07);
    padding: 5px 16px;
    border-radius: 999px;
    margin-bottom: 14px;
    letter-spacing: .03em;
  }

  .section-tag-modifier {
    color: #555;
    background: #ecf1f4;
  }

  .section-title-wrapper {
    margin-bottom: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
  }

  .section-title-wrapper h2,
  .section-title-full h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }

  .section-title-wrapper .section-sub,
  .section-title-full .section-sub {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    max-width: 580px;
  }

  .section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
  }

  .section-header-center .section-tag {
    margin-bottom: 16px;
  }

  .section-header-center h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .section-header-center p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
  }

  .more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    background: transparent;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--border-line);
    transition: all 0.25s;
    min-height: 40px;
    line-height: 1.3;
  }

  .more-link:hover {
    border-color: var(--primary);
    background: rgba(11, 110, 157, 0.04);
    transform: translateY(-2px);
  }

  .more-link .arrow {
    transition: transform 0.2s;
  }

  .more-link:hover .arrow {
    transform: translateX(4px);
  }

  /* ===== 品牌故事 ===== */
  .story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 80px;
  }

  .story-visual {
    position: relative;
  }

  .story-img-main {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(211, 227, 235, 0.5);
    aspect-ratio: 5/4;
  }

  .story-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .story-img-frame--small {
    position: absolute;
    right: -34px;
    bottom: -30px;
    width: 180px;
    height: 130px;
    border-radius: 14px;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: var(--shadow-hover);
  }

  .story-img-frame--small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .story-content .section-tag {
    margin-bottom: 12px;
  }

  .story-content h2 {
    font-size: 30px;
    line-height: 1.35;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
  }

  .story-content p {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: 15px;
  }

  .story-benefit-list {
    list-style: none;
    margin: 22px 0 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .story-benefit-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--text-body);
  }

  .story-benefit-list li .check-icon {
    width: 22px;
    height: 22px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .inline-arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
  }

  .inline-arrow-link:hover {
    border-bottom-color: var(--primary);
  }

  /* ===== 热门频道卡片组 ===== */
  .sports-feature-preset {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .feature-preset-card {
    background: #fff;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(211, 227, 235, 0.4);
    display: block;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .feature-preset-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
  }

  .feature-preset-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
    background: var(--surface-alt);
  }

  .feature-preset-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
  }

  .feature-preset-card:hover .feature-preset-thumb img {
    transform: scale(1.05);
  }

  .feature-preset-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }

  .feature-preset-body {
    padding: 18px 18px 20px;
  }

  .feature-preset-body h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-body);
    line-height: 1.4;
  }

  .feature-preset-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .feature-preset-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 13px;
    border-top: 1px solid #EEF3F7;
  }

  .feature-preset-tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    background: var(--accent-light);
    border-radius: 6px;
    padding: 3px 8px;
    display: inline-block;
  }

  .feature-preset-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-body);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .feature-preset-link svg {
    transition: transform 0.2s;
  }

  .feature-card-wide-link:hover .feature-preset-link svg {
    transform: translateX(4px);
  }

  /* ===== 内容不规则卡片 大卡区域 ===== */
  .mixed-feature-wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
  }

  .mixed-card-main {
    grid-row: span 2;
    background: var(--primary);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 440px;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
  }

  .mixed-card-main:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
  }

  .mixed-card-main::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    bottom: -80px;
    right: -60px;
  }

  .mixed-card-main .card-content {
    position: relative;
    z-index: 2;
  }

  .mixed-card-main .tag-line {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 13px;
    margin-bottom: 26px;
    backdrop-filter: blur(4px);
  }

  .mixed-card-main h3 {
    font-size: 28px;
    line-height: 1.4;
    margin-top: auto;
    margin-bottom: 12px;
    font-weight: 700;
  }

  .mixed-card-main p {
    opacity: 0.92;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
  }

  .mixed-card-main .btn-round-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--primary);
    border-radius: 999px;
    padding: 12px 26px;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.3s, transform 0.2s;
    position: relative;
    z-index: 2;
  }

  .mixed-card-main .btn-round-white:hover {
    background: var(--surface-alt);
  }

  .mixed-card-main .btn-round-white::after {
    content: "→";
    transition: transform 0.2s;
  }

  .mixed-card-main .btn-round-white:hover::after {
    transform: translateX(4px);
  }

  .mixed-card-main .hero-img-in-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    object-fit: cover;
    opacity: 0.24;
    z-index: 0;
  }

  .mixed-card-sub {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(211, 227, 235, 0.35);
    box-shadow: var(--shadow-card);
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .mixed-card-sub:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
  }

  .mixed-card-sub-img {
    overflow: hidden;
    min-height: 140px;
  }

  .mixed-card-sub-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }

  .mixed-card-sub:hover .mixed-card-sub-img img {
    transform: scale(1.05);
  }

  .mixed-card-sub-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 18px 24px 18px 8px;
    gap: 5px;
  }

  .mixed-card-sub-content .sub-badge {
    font-size: 12px;
    background: var(--warm-light);
    padding: 3px 10px;
    color: #98552a;
    border-radius: 999px;
    font-weight: 600;
  }

  .mixed-card-sub-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-body);
  }

  .mixed-card-sub-content p {
    font-size: 13px;
    color: var(--text-muted);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .mixed-card-sub-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-top: 4px;
  }

  .mixed-card-sub-btn svg {
    transition: transform 0.2s;
  }

  .mixed-card-sub:hover .mixed-card-sub-btn svg {
    transform: translateX(4px);
  }

  /* ===== CMS 列表区 ===== */
  .news-list-section {
    background: var(--surface-alt);
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .cms-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .news-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 36px;
  }

  .news-top-row h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
  }

  .oops-adapt-title {
    font-size: 24px;
  }

  .list-item-card {
    background: #fff;
    border: 1px solid rgba(211, 227, 235, 0.4);
    display: flex;
    border-radius: var(--radius-card);
    padding: 18px;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
    text-decoration: none;
    gap: 22px;
    align-items: center;
  }

  .list-item-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
    border-color: transparent;
  }

  .list-thumb-wrap {
    width: 190px;
    flex-shrink: 0;
  }

  .list-thumb {
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--surface-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    position: relative;
  }

  .list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .list-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 20px;
    font-weight: 600;
    color: #b0c6d2;
    background: linear-gradient(135deg, #DFEDF3, #EAF3F8);
    position: absolute;
    inset: 0;
  }

  .list-body {
    flex: 1;
    min-width: 0;
  }

  .list-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
    flex-wrap: wrap;
  }

  .list-cat-tag {
    display: inline-block;
    background: var(--primary);
    color: #fff !important;
    font-size: 12px;
    padding: 3px 12px;
    border-radius: 999px;
    font-weight: 500;
    background-color: var(--primary);
  }

  .list-cat-tag.cat-muted {
    background: #e3eef3;
    color: var(--primary) !important;
    font-weight: 600;
  }

  .list-time {
    font-size: 13px;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }

  .list-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-body);
    margin-bottom: 8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
  }

  .list-item-card:hover .list-title {
    color: var(--primary);
  }

  .list-summary {
    font-size: 14px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    line-height: 1.6;
  }

  .empty-cms-state {
    background: #fff;
    border: 2px dashed var(--border-line);
    border-radius: var(--radius-card);
    padding: 56px 28px;
    text-align: center;
    color: var(--text-muted);
  }

  .empty-cms-state .empty-emoji {
    font-size: 42px;
    margin-bottom: 10px;
  }

  .empty-cms-state strong {
    display: block;
    color: var(--text-body);
    font-size: 17px;
    margin-bottom: 6px;
  }

  .empty-cms-state span {
    font-size: 14px;
  }

  /* ===== 信任背书 / logo ===== */
  .trust-light-section {
    background: #fff;
  }

  .trust-inner {
    display: flex;
    flex-direction: column;
  }

  .quote-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 32px;
  }

  .quote-card {
    background: var(--bg-site);
    border-radius: var(--radius-card);
    padding: 30px 28px;
    border: 1px solid rgba(211, 227, 235, 0.4);
    min-height: 170px;
  }

  .quote-card .quote-text-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 48px;
    margin-bottom: 16px;
  }

  .quote-icon {
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    display: flex;
    border-radius: 50%;
    font-size: 22px;
  }

  .quote-card .stars-row {
    font-size: 12px;
  }

  .quote-text {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 16px;
  }

  .quote-author {
    font-size: 13px;
    color: var(--text-muted);
  }

  .quote-author .name {
    color: var(--text-body);
    font-weight: 600;
  }

  .partner-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    margin: 16px 0 8px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(211, 227, 235, 0.5);
    padding-top: 24px;
  }

  .partner-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #546973;
    padding: 5px 12px;
  }

  .partner-dot {
    width: 8px;
    height: 8px;
    background: #BCD7E2;
    border-radius: 50%;
    display: inline-block;
  }

  .partner-divider {
    color: var(--border-line);
    font-size: 14px;
  }

  .trust-note {
    color: #9aaeb9;
    font-size: 12px;
  }

  .hide-on-mobile {
    display: inline;
  }

  /* ===== FAQ ===== */
  .faq-section {
    background: #fff;
  }

  .faq-wrap {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .faq-group-title-kicker {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 30px;
    margin-bottom: 14px;
    padding-top: 8px;
  }

  .faq-item {
    background: #ffffff;
    border: 1px solid var(--border-line);
    border-radius: 14px;
    margin-bottom: 10px;
    transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
  }

  .faq-item.open {
    background: #EAF3F9;
    border-color: #BED7E8;
    box-shadow: 0 8px 22px rgba(16, 60, 80, 0.06);
  }

  .faq-item-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-body);
    text-align: left;
    line-height: 1.55;
    border-radius: 14px;
    min-height: 60px;
  }

  .faq-item-header:hover {
    color: var(--primary);
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.3s, color 0.3s;
    font-style: normal;
    line-height: 1;
    padding: 0;
  }

  .faq-item.open .faq-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
  }

  .faq-item-body {
    padding: 0 24px 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .faq-item-body-inner {
    padding-bottom: 14px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.85;
    margin-top: 4px;
  }

  .faq-item-body-inner strong {
    color: var(--text-body);
  }

  /* ===== CTA / 订阅 ===== */
  .cta-soft-block {
    padding: 30px 0 90px;
    background: var(--bg-site);
  }

  .cta-soft-inner {
    background: linear-gradient(145deg, #EAF5FA, #D7ECF4);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 48px 64px 50px;
    border: 1px solid rgba(211, 227, 235, 0.55);
    box-shadow: var(--shadow-card);
  }

  .cta-soft-inner::before {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 175, 125, 0.15), transparent 68%);
  }

  .cta-soft-inner::after {
    content: "";
    position: absolute;
    left: -50px;
    bottom: -110px;
    width: 220px;
    height: 220px;
    border: 20px solid rgba(11,110,157,0.04);
    border-radius: 50%;
  }

  .cta-soft-inner > *:not(.decor) {
    position: relative;
    z-index: 3;
  }

  .cta-kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(255,255,255,0.75);
    padding: 5px 18px;
    border-radius: 999px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  }

  .cta-soft-inner h2 {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--text-body);
  }

  .cta-soft-inner .cta-sub {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 28px;
    line-height: 1.7;
  }

  .subscribe-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 460px;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  .subscribe-form .input-wrap {
    flex: 1 1 200px;
    background: #fff;
    border-radius: 999px;
    border: 1px solid var(--border-line);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
    min-height: 48px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .subscribe-form .input-wrap:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11, 110, 157, 0.1);
  }

  .subscribe-form .input-wrap input {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 15px;
    font-family: var(--font-family);
    line-height: 40px;
    outline: none;
    color: var(--text-body);
  }

  .subscribe-form .btn-primary {
    min-height: 48px;
    flex-shrink: 0;
    border: 0;
  }

  .cta-footnote {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 22px;
    padding-top: 8px;
  }

  .cta-extras {
    display: flex;
    justify-content: center;
    gap: 17px;
    margin-top: 26px;
    font-size: 13px;
    color: var(--text-muted);
  }

  .cta-extras svg {
    vertical-align: -4px;
    margin-right: 4px;
  }

  /* ===== Footer ===== */
  .site-footer {
    background: #1E313C;
    color: rgba(255,255,255,0.72);
    padding-top: 72px;
    padding-bottom: 20px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.1fr 1.2fr;
    gap: 60px;
    padding-bottom: 48px;
  }

  .footer-brand .footer-brand-name {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .footer-brand-name .brand-icon-foot {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-brand-name span {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
  }

  .footer-about-text {
    font-size: 13px;
    line-height: 1.95;
    margin-bottom: 18px;
  }

  .footer-channel-title,
  .footer-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 22px;
  }

  .footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-links-list a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.2s;
  }

  .footer-links-list a::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    display: inline-block;
    transition: background 0.2s;
  }

  .footer-links-list a:hover {
    color: #fff;
  }

  .footer-contact-info {
    font-size: 14px;
    line-height: 2.1;
    color: rgba(255,255,255,0.6);
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .footer-contact-info strong {
    color: #fff;
    font-weight: 500;
  }

  .footer-qr-wrap {
    display: flex;
    gap: 16px;
  }

  .footer-qr {
    width: 92px;
    height: 92px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #333;
    text-align: center;
    line-height: 1.4;
    padding: 8px;
    position: relative;
    flex-direction: column;
  }

  .footer-qr .qr-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 3px;
    margin-bottom: 5px;
  }

  .footer-qr .qr-grid i {
    width: 7px;
    height: 7px;
    background: #245;
    border-radius: 1px;
    display: block;
  }

  .footer-qr-bottom-tip {
    font-size: 12px;
    color: #556;
  }

  .copyright-row {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 26px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.42);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    line-height: 2;
  }

  .copyright-row a {
    color: rgba(255,255,255,0.42);
    margin-left: 12px;
    transition: color 0.2s;
  }

  .copyright-row a:hover {
    color: #fff;
  }

  /* ===== 移动端适配 ===== */
  @media (max-width: 1080px) {
    .hero-inner {
      gap: 32px;
      grid-template-columns: 1fr 1fr;
      padding-top: 72px;
    }

    .sports-feature-preset {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 44px;
    }

    .story-grid {
      gap: 48px;
    }

    .quote-cards {
      grid-template-columns: 1fr 1fr;
    }

    .quote-card:nth-child(3) {
      grid-column: span 2;
    }
  }

  @media (max-width: 992px) {
    :root {
      --space-section: 72px;
    }

    .header-search {
      display: none;
    }

    .hero-inner {
      grid-template-columns: 1fr;
      padding-top: 55px;
      text-align: center;
    }

    .hero-caption {
      display: inline-flex;
    }

    .hero-lead {
      margin-left: auto;
      margin-right: auto;
    }

    .hero-buttons {
      justify-content: center;
    }

    .hero-trusted-row {
      justify-content: center;
    }

    .hero-visual {
      max-width: 620px;
      margin: 0 auto;
    }

    .hero-stat-floating {
      left: 10px;
    }

    h1 {
      font-size: 36px;
      line-height: 1.35;
    }

    .story-grid {
      grid-template-columns: 1fr;
      padding: 0 20px;
    }

    .story-visual {
      margin-bottom: 20px;
    }

    .story-img-frame--small {
      right: 10px;
      bottom: -20px;
    }

    .mixed-feature-wrap {
      grid-template-columns: 1fr 1fr;
    }

    .mixed-card-main {
      grid-row: span 1;
      min-height: 340px;
      grid-column: 1 / -1;
    }

    .section-header-center h2 {
      font-size: 28px;
    }

    .news-top-row {
      flex-direction: column;
      gap: 16px;
      align-items: flex-start;
    }

    .list-item-card {
      flex-direction: row;
    }

    .list-thumb-wrap {
      width: 150px;
    }

    .list-thumb {
      height: 95px;
    }
  }

  @media (max-width: 768px) {
    .container {
      padding-left: 16px;
      padding-right: 16px;
    }

    .header-tools .header-phones {
      display: none;
    }

    .header-tools .header-actions .btn-pill {
      padding: 8px 16px;
      font-size: 13px;
    }

    .menu-toggle-btn {
      display: inline-flex;
    }

    .channel-row-nav {
      display: block;
    }

    .channel-nav-list {
      padding: 8px 0;
    }

    .channel-nav-list li a {
      font-size: 14px;
      padding: 7px 18px;
    }

    .mobile-panel {
      padding: 14px 16px 18px;
    }

    .mobile-panel .mobile-search {
      display: flex;
      margin-bottom: 16px;
      align-items: center;
      background: var(--bg-site);
      border: 1px solid var(--border-line);
      border-radius: 12px;
      padding: 0 16px;
    }

    .mobile-panel .mobile-search input {
      border: none;
      background: transparent;
      font-size: 15px;
      padding: 14px 0;
      width: 100%;
      outline: none;
    }

    .mobile-panel .mobile-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .mobile-panel .mobile-actions a,
    .mobile-panel .mobile-actions button {
      flex: 1 1 0;
      text-align: center;
      padding: 12px 10px;
      border-radius: 12px;
      font-size: 15px;
      background: var(--surface-alt);
      border: none;
      color: var(--text-body);
      font-weight: 500;
    }

    .hero-inner {
      padding-top: 42px;
      padding-bottom: 48px;
      gap: 34px;
    }

    .hero-caption {
      margin-bottom: 16px;
    }

    h1 {
      font-size: 31px;
      line-height: 1.4;
      margin-bottom: 14px;
    }

    .hero-lead {
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 24px;
    }

    .hero-buttons {
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
      max-width: 400px;
      margin: 0 auto 24px;
    }

    .hero-buttons .btn {
      width: 100%;
    }

    .hero-trusted-row {
      flex-direction: column;
      gap: 8px;
    }

    .hero-stat-floating {
      position: relative;
      top: auto;
      left: 0;
      margin: -18px 16px 0;
      padding: 12px 14px;
      justify-content: space-around;
    }

    .stat-floating-item {
      min-width: auto;
    }

    .hero-bottom-metrics {
      grid-template-columns: 1fr;
      gap: 2px;
      margin-top: 16px;
      padding: 10px 0;
    }

    .metric-item {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
      padding: 12px 24px !important;
    }

    .hero-bottom-metrics .metric-item + .metric-item {
      border-left: none;
      border-top: 1px solid var(--border-line);
    }

    .section-title-wrapper {
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
    }

    .section-title-wrapper h2,
    .section-title-full h2 {
      font-size: 25px;
    }

    .section-header-center {
      margin-bottom: 30px;
    }

    .section-header-center h2 {
      font-size: 25px;
    }

    .sports-feature-preset {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .mixed-feature-wrap {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .mixed-card-main {
      grid-column: auto;
      padding: 28px 24px 24px;
      min-height: 350px;
    }

    .mixed-card-main h3 {
      font-size: 23px;
    }

    .mixed-card-sub {
      grid-template-columns: 0.7fr 1.3fr;
    }

    .mixed-card-sub-content {
      padding: 16px 14px 14px 4px;
    }

    .mixed-card-sub-content h4 {
      font-size: 17px;
    }

    .news-list-section {
      padding-top: 60px;
    }

    .list-item-card {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 14px;
    }

    .list-thumb-wrap {
      width: 100%;
      margin-bottom: 12px;
    }

    .list-thumb {
      height: 150px;
      width: 100%;
    }

    .list-title {
      font-size: 17px;
      -webkit-line-clamp: 2;
    }

    .list-meta {
      margin-top: 6px;
    }

    .quote-cards {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .quote-card:nth-child(3) {
      grid-column: auto;
    }

    .partner-row {
      justify-content: center;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      gap: 38px;
      padding-bottom: 36px;
    }

    .footer-brand-name span {
      font-size: 19px;
    }

    .footer-qr-wrap {
      flex-wrap: wrap;
    }

    .faq-section .container,
    .section-block .container {
      padding-left: 16px;
      padding-right: 16px;
    }

    .faq-item-header {
      font-size: 15px;
      padding: 17px 18px;
    }

    .faq-item-body {
      padding: 0 18px 0;
    }

    .cta-soft-block {
      padding-top: 40px;
      padding-bottom: 40px;
    }

    .cta-soft-inner {
      padding: 36px 20px 34px;
      border-radius: 20px;
    }

    .cta-soft-inner h2 {
      font-size: 24px;
    }

    .subscribe-form {
      flex-direction: column;
      width: 100%;
      gap: 10px;
    }

    .subscribe-form .input-wrap {
      width: 100%;
      padding: 0 22px;
    }

    .subscribe-form .btn {
      width: 100%;
    }

    .copyright-row {
      flex-direction: column;
      text-align: center;
    }

    .footer-title,
    .footer-channel-title {
      margin-bottom: 14px;
    }

    .footer-links-list {
      gap: 10px;
    }

    .hide-on-mobile {
      display: none;
    }
  }

  @media (max-width: 560px) {
    .sports-feature-preset {
      grid-template-columns: 1fr;
    }

    .mixed-card-main {
      min-height: 320px;
    }

    .mixed-card-main h3 {
      font-size: 22px;
    }

    .mixed-card-sub {
      grid-template-columns: 1fr;
    }

    .mixed-card-sub-img {
      min-height: 180px;
      height: 200px;
    }

    .mixed-card-sub-content {
      padding: 18px 18px 22px;
    }

    h1 {
      font-size: 28px;
      line-height: 1.45;
    }

    .header-main {
      flex-wrap: nowrap;
      gap: 10px;
      padding: 12px 0;
    }

    .brand-name {
      font-size: 19px;
    }

    .brand-icon {
      width: 38px;
      height: 38px;
      border-radius: 11px;
    }

    .header-actions .link-muted {
      display: none;
    }

    .header-actions .btn-pill {
      padding: 8px 15px;
    }

    .hero-img-frame {
      aspect-ratio: 16/10;
      border-radius: 16px;
    }

    .section-block {
      --space-section: 60px;
      padding-top: 60px;
      padding-bottom: 60px;
    }

    .content-card-list .list-title {
      font-size: 16px;
    }
  }

  @media (min-width: 561px) {
    .mobile-story-extra-down {
      display: none;
    }
  }

  .container {
    max-width: 1200px;
  }

/* roulang page: article */
:root{
  --bg-site:#F4FAFD;
  --surface:#FFFFFF;
  --surface-alt:#E9F2F8;
  --primary:#0B6E9D;
  --primary-strong:#084C6E;
  --accent:#4CAF7D;
  --accent-soft:#E5F4EC;
  --warm:#F2A65A;
  --text-body:#1F2C33;
  --text-muted:#64777F;
  --border-line:#D5E4EB;
  --radius:14px;
  --radius-lg:22px;
  --shadow:0 10px 28px rgba(16,60,80,.08);
  --shadow-up:0 14px 36px rgba(16,60,80,.14);
  --transition:all .25s ease;
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Segoe UI",sans-serif;
  background:var(--bg-site);
  color:var(--text-body);
  font-size:16px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none;transition:var(--transition)}
button,input{font-family:inherit;font-size:inherit}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}
:focus-visible{outline:3px solid var(--warm);outline-offset:2px;border-radius:6px}
.container{max-width:1200px;margin:0 auto;padding-left:24px;padding-right:24px}
.container-narrow{max-width:1080px;margin:0 auto;padding-left:24px;padding-right:24px}

.btn-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--primary);
  color:#fff;
  border:1px solid transparent;
  border-radius:999px;
  padding:10px 22px;
  font-weight:600;
  line-height:1;
  white-space:nowrap;
  transition:var(--transition);
}
.btn-pill:hover{background:var(--primary-strong);color:#fff;transform:translateY(-1px)}
.btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  color:var(--primary);
  border:1px solid #B8D3E0;
  border-radius:999px;
  padding:10px 22px;
  font-weight:600;
  line-height:1;
  white-space:nowrap;
  transition:var(--transition);
}
.btn-outline:hover{border-color:var(--primary);color:var(--primary-strong);background:var(--surface-alt);transform:translateY(-1px)}
.link-muted{
  background:none;
  border:0;
  color:var(--text-muted);
  font-weight:500;
  cursor:pointer;
  padding:8px 0;
  transition:var(--transition);
}
.link-muted:hover{color:var(--primary)}
.link-arrow{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--primary);
  font-weight:600;
  transition:var(--transition);
}
.link-arrow:hover{color:var(--primary-strong);gap:10px}

.site-header{
  position:relative;
  z-index:50;
  background:var(--surface);
  border-bottom:1px solid var(--border-line);
  box-shadow:0 8px 24px rgba(16,60,80,.04);
}
.header-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding-top:16px;
  padding-bottom:16px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:11px;
  flex-shrink:0;
}
.brand-icon{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:50%;
}
.brand-icon svg{width:42px;height:42px}
.brand-text{
  font-size:23px;
  font-weight:800;
  letter-spacing:.5px;
  color:var(--primary-strong);
  white-space:nowrap;
}
.header-tools{
  display:flex;
  align-items:center;
  gap:18px;
  justify-content:flex-end;
  min-width:0;
}
.header-search{
  display:flex;
  align-items:center;
  gap:8px;
  background:var(--bg-site);
  border:1px solid var(--border-line);
  border-radius:999px;
  padding:0 12px 0 16px;
  min-width:230px;
  height:42px;
  transition:var(--transition);
}
.header-search:focus-within{
  border-color:var(--primary);
  background:#fff;
  box-shadow:0 0 0 4px rgba(11,110,157,.08);
}
.header-search input{
  border:0;
  background:transparent;
  outline:none;
  width:100%;
  color:var(--text-body);
  font-size:14px;
  line-height:1;
}
.header-search svg{color:var(--text-muted);flex-shrink:0}
.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}
.header-phone{
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:var(--text-muted);
  font-size:14px;
  font-weight:500;
  white-space:nowrap;
}
.header-phone svg{width:16px;height:16px;color:var(--accent)}
.menu-toggle-btn{
  display:none;
  background:#fff;
  border:1px solid var(--border-line);
  border-radius:10px;
  width:42px;
  height:42px;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  transition:var(--transition);
}
.menu-toggle-btn:hover{border-color:var(--primary)}
.menu-toggle-btn .line{
  width:17px;
  height:2px;
  background:var(--primary);
  border-radius:9px;
  transition:var(--transition);
}

.channel-bar{
  border-top:1px solid rgba(213,228,235,.8);
  background:#fff;
}
.channel-scroll{
  display:flex;
  align-items:center;
  gap:10px;
  overflow-x:auto;
  padding-top:10px;
  padding-bottom:10px;
  scrollbar-width:none;
}
.channel-scroll::-webkit-scrollbar{display:none}
.channel-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 18px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:600;
  color:var(--text-muted);
  font-size:15px;
  white-space:nowrap;
  transition:var(--transition);
}
.channel-link:hover{
  color:var(--primary);
  background:var(--surface-alt);
}
.channel-link.is-active{
  background:var(--primary);
  color:#fff;
}
.channel-link.is-active:hover{background:var(--primary-strong)}

.mobile-panel{
  display:none;
  border-top:1px solid var(--border-line);
  background:var(--surface);
}
.mobile-panel.open{display:block}
.mobile-inner{
  padding:18px 24px 24px;
  display:grid;
  gap:14px;
}
.mobile-search{
  display:flex;
  align-items:center;
  gap:9px;
  background:var(--bg-site);
  border:1px solid var(--border-line);
  border-radius:999px;
  padding:0 14px;
  height:42px;
}
.mobile-search input{
  border:0;
  background:transparent;
  outline:none;
  width:100%;
  font-size:14px;
}
.mobile-search svg{color:var(--text-muted);flex-shrink:0}
.mobile-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.mobile-actions .btn-pill,
.mobile-actions .btn-outline{width:100%}

.article-banner{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 88% 22%, rgba(76,175,125,.14), transparent 22%),
    radial-gradient(circle at 10% 10%, rgba(11,110,157,.10), transparent 24%),
    linear-gradient(86deg, #EAF4FA 0%, #F4FAFD 62%, #EDF6F8 100%);
  border-bottom:1px solid var(--border-line);
  padding-top:44px;
  padding-bottom:44px;
}
.article-banner::after{
  content:"";
  position:absolute;
  inset:0;
  background:url('/assets/images/backpic/back-1.webp') no-repeat 104% center;
  background-size:auto 96%;
  opacity:.16;
  pointer-events:none;
}

.breadcrumb{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  font-size:14px;
  color:var(--text-muted);
  margin-bottom:16px;
}
.breadcrumb a:hover{color:var(--primary)}
.breadcrumb .crumb-mark{color:#AABCC5}
.breadcrumb .crumb-current{
  color:var(--text-muted);
  max-width:520px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.article-banner-title{
  position:relative;
  z-index:1;
  margin:0;
  font-size:38px;
  font-weight:800;
  line-height:1.25;
  color:var(--primary-strong);
  max-width:920px;
  letter-spacing:.5px;
}
.article-banner-title.no-post{font-size:30px}
.post-meta-row{
  position:relative;
  z-index:1;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px 16px;
  margin-top:18px;
}
.meta-chip{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(213,228,235,.9);
  padding:6px 13px;
  border-radius:999px;
  font-size:13px;
  color:var(--text-muted);
  line-height:1;
}
.meta-chip strong{color:var(--primary);font-weight:600;margin-right:4px}
.meta-chip svg{width:15px;height:15px;color:var(--accent)}

.article-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 340px;
  gap:30px;
  align-items:start;
  padding-top:34px;
  padding-bottom:56px;
}
.article-main{min-width:0}
.post-card{
  background:var(--surface);
  border:1px solid rgba(213,228,235,.8);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  padding:38px 42px 44px;
  overflow:hidden;
}
.post-content{
  font-size:16.5px;
  line-height:1.9;
  color:var(--text-body);
  word-break:break-word;
}
.post-content p{margin:0 0 22px}
.post-content h2{
  font-size:26px;
  line-height:1.35;
  color:var(--primary-strong);
  margin:38px 0 16px;
  padding-left:12px;
  border-left:4px solid var(--accent);
}
.post-content h3{
  font-size:21px;
  line-height:1.4;
  color:var(--primary-strong);
  margin:32px 0 14px;
}
.post-content ul,
.post-content ol{
  margin:0 0 22px;
  padding-left:24px;
}
.post-content li{padding-left:4px;margin-bottom:10px}
.post-content blockquote{
  margin:26px 0;
  background:var(--surface-alt);
  border-left:4px solid var(--primary);
  border-radius:0 10px 10px 0;
  padding:16px 22px;
  color:var(--text-muted);
}
.post-content img{
  border-radius:10px;
  border:1px solid var(--border-line);
  margin:24px 0;
  width:auto;
  max-width:100%;
}
.post-content a{color:var(--primary);border-bottom:1px solid rgba(11,110,157,.3)}
.post-content a:hover{color:var(--primary-strong);border-color:var(--primary)}
.post-divider{
  border:0;
  border-top:1px solid var(--border-line);
  margin:34px 0 18px;
}
.post-bottom-nav{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-top:24px;
}
.post-bottom-nav .btn-pill{padding:11px 20px}
.post-bottom-links{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.empty-state{
  background:var(--surface);
  border:1px dashed #BBD0DC;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  padding:70px 34px;
  text-align:center;
}
.empty-icon{
  width:76px;
  height:76px;
  margin:0 auto 22px;
  border-radius:50%;
  background:var(--surface-alt);
  display:grid;
  place-items:center;
  font-size:34px;
  color:var(--primary);
}
.empty-state h1{
  font-size:28px;
  color:var(--primary-strong);
  margin:0 0 12px;
}
.empty-state p{color:var(--text-muted);margin:0 0 24px}

.article-aside{
  display:grid;
  gap:24px;
  position:sticky;
  top:90px;
}
.aside-card{
  background:var(--surface);
  border:1px solid rgba(213,228,235,.8);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  padding:24px;
}
.aside-card .aside-title{
  font-size:18px;
  font-weight:800;
  margin:0 0 6px;
  color:var(--primary-strong);
}
.aside-note{
  margin:0 0 16px;
  color:var(--text-muted);
  font-size:14px;
}
.aside-cover{
  margin-bottom:14px;
  border-radius:12px;
  border:1px solid var(--border-line);
  width:100%;
  height:170px;
  object-fit:cover;
}
.aside-link-list{
  display:grid;
  gap:10px;
  margin-top:8px;
}
.aside-entry-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  background:var(--bg-site);
  border:1px solid var(--border-line);
  border-radius:12px;
  padding:12px 15px;
  font-weight:600;
  color:var(--text-body);
  transition:var(--transition);
}
.aside-entry-link:hover{
  background:var(--surface-alt);
  border-color:var(--primary);
  color:var(--primary);
  transform:translateY(-2px);
}
.aside-entry-link svg{width:18px;height:18px;color:var(--accent);flex-shrink:0}
.qr-mini-wrap{
  display:flex;
  gap:16px;
  align-items:center;
  margin-top:16px;
  background:var(--accent-soft);
  border-radius:14px;
  padding:12px 14px;
}
.qr-mini{
  width:76px;
  height:76px;
  flex:0 0 76px;
  background:#fff;
  border-radius:10px;
  border:1px solid rgba(76,175,125,.28);
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:3px;
  padding:8px;
}
.qr-mini i{background:var(--accent);opacity:.85;border-radius:1px}
.qr-mini-txt{flex:1}
.qr-mini-txt strong{display:block;color:var(--primary-strong);font-size:15px;line-height:1.3}
.qr-mini-txt span{color:var(--text-muted);font-size:13px;line-height:1.4}

.cta-zone{
  padding:0 24px 64px;
}
.cta-box{
  position:relative;
  max-width:1200px;
  margin:0 auto;
  border-radius:26px;
  overflow:hidden;
  background:
    radial-gradient(circle at 85% 0%, rgba(76,175,125,.18), transparent 33%),
    radial-gradient(circle at 8% 105%, rgba(11,110,157,.13), transparent 30%),
    linear-gradient(120deg, #F0F8FB 0%, #E3F0F6 100%);
  border:1px solid #CFE0E9;
  padding:50px 36px;
  text-align:center;
}
.cta-box h2{
  margin:0 0 12px;
  font-size:30px;
  font-weight:800;
  color:var(--primary-strong);
}
.cta-box p{
  color:var(--text-muted);
  font-size:16px;
  max-width:620px;
  margin:0 auto 28px;
}
.cta-form{
  display:flex;
  justify-content:center;
  gap:12px;
  max-width:560px;
  margin:0 auto;
  flex-wrap:wrap;
}
.cta-form input[type="email"]{
  flex:1;
  min-width:240px;
  height:48px;
  border:1px solid var(--border-line);
  border-radius:999px;
  background:#fff;
  padding:0 20px;
  font-size:15px;
  outline:none;
  box-shadow:0 4px 12px rgba(16,60,80,.04);
  transition:var(--transition);
}
.cta-form input[type="email"]:focus{border-color:var(--primary);box-shadow:0 0 0 4px rgba(11,110,157,.08)}
.cta-form .btn-pill{height:48px;padding:0 28px}

.site-footer{
  background:linear-gradient(180deg, #E8F1F6 0%, #D7E5ED 100%);
  border-top:1px solid #C8D9E2;
  padding-top:50px;
  color:#394E59;
}
.footer-grid{
  display:grid;
  grid-template-columns:2.4fr 1.3fr 1.3fr 2fr;
  gap:34px;
  padding-bottom:38px;
}
.footer-brand-name{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:21px;
  font-weight:800;
  color:var(--primary-strong);
  margin-bottom:8px;
}
.brand-icon-foot{
  display:block;
  width:36px;
  height:36px;
}
.brand-icon-foot svg{width:36px;height:36px}
.footer-about-text{
  font-size:14px;
  line-height:1.85;
  color:#607884;
  max-width:360px;
}
.footer-title{
  font-size:15px;
  font-weight:800;
  color:var(--primary-strong);
  margin-bottom:16px;
}
.footer-links-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:7px;
}
.footer-links-list a{
  color:#4D6B77;
  font-size:14px;
  transition:var(--transition);
}
.footer-links-list a:hover{color:var(--primary);padding-left:4px}
.footer-contact-info{
  display:grid;
  gap:8px;
  font-size:14px;
  color:#4D6B77;
}
.footer-contact-info strong{
  display:block;
  font-size:12px;
  color:var(--text-muted);
  font-weight:600;
  margin-bottom:2px;
}
.footer-qr-wrap{
  display:flex;
  gap:18px;
  margin-top:4px;
}
.footer-qr{
  background:#fff;
  border:1px solid rgba(11,110,157,.12);
  border-radius:12px;
  padding:10px;
  width:102px;
  text-align:center;
}
.qr-grid{
  width:72px;
  height:72px;
  margin:0 auto 4px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:3px;
}
.qr-grid i{background:var(--primary);border-radius:2px}
.qr-grid i:nth-child(2){opacity:.6}
.qr-grid i:nth-child(3){opacity:.85}
.qr-grid i:nth-child(4){opacity:.7}
.qr-grid i:nth-child(5){opacity:0}
.qr-grid i:nth-child(6){opacity:.7}
.qr-grid i:nth-child(7){opacity:.9}
.qr-grid i:nth-child(8){opacity:.5}
.qr-grid i:nth-child(9){opacity:.8}
.footer-qr-bottom-tip{
  display:block;
  font-size:12px;
  color:var(--text-muted);
  text-align:center;
  letter-spacing:1px;
}
.footer-bottom{
  border-top:1px solid rgba(74,104,119,.18);
  padding:18px 0;
  text-align:center;
}
.footer-copyright{
  font-size:13px;
  color:#5B737E;
}
.footer-copyright span{opacity:.8}

@media (max-width:1024px){
  .header-top{gap:14px}
  .header-phone{display:none}
  .article-layout{grid-template-columns:1fr}
  .article-aside{
    grid-template-columns:1fr 1fr;
    position:static;
  }
}
@media (max-width:768px){
  .container{padding-left:16px;padding-right:16px}
  .channel-scroll{padding-left:16px;padding-right:16px}
  .header-top{
    padding-top:12px;
    padding-bottom:12px;
  }
  .brand-text{font-size:20px}
  .brand-icon{width:40px;height:40px}
  .brand-icon svg{width:38px;height:38px}
  .header-search,.header-phone{display:none}
  .header-actions .link-muted{display:none}
  .header-actions .btn-pill{display:none}
  .menu-toggle-btn{
    display:inline-flex;
    margin-left:auto;
  }
  .article-banner{
    padding-top:32px;
    padding-bottom:32px;
  }
  .article-banner-title{font-size:28px}
  .post-card{
    padding:26px 20px 30px;
  }
  .post-content{font-size:16px}
  .post-content h2{font-size:22px}
  .post-content h3{font-size:19px}
  .article-aside{grid-template-columns:1fr}
  .cta-zone{padding-left:16px;padding-right:16px}
  .cta-box{padding:38px 20px}
  .cta-form{flex-direction:column;align-items:center}
  .cta-form input[type="email"]{min-width:100%}
  .cta-form .btn-pill{width:100%}
  .footer-grid{grid-template-columns:1fr 1fr;gap:26px}
  .footer-brand{grid-column:1/-1}
}
@media (max-width:520px){
  .post-meta-row{gap:8px}
  .meta-chip{font-size:12px;padding:5px 10px}
  .article-layout{padding-top:22px}
  .post-card{padding:20px 14px 24px}
  .empty-state{padding:48px 18px}
  .post-bottom-nav{flex-direction:column}
  .footer-grid{grid-template-columns:1fr;gap:24px}
  .footer-brand{grid-column:auto}
  .footer-qr-wrap{flex-wrap:wrap}
  .cta-form .btn-pill,.cta-form input[type="email"]{width:100%}
}

/* roulang page: category1 */
:root {
  --bg-site: #F4FAFD;
  --surface: #FFFFFF;
  --surface-alt: #E8F2F8;
  --surface-deep: #D8E7F0;
  --primary: #0B6E9D;
  --primary-strong: #084C6E;
  --accent: #4CAF7D;
  --warm: #F2A65A;
  --text-body: #1F2C33;
  --text-muted: #64777F;
  --border-line: #D3E3EB;
  --footer-dark: #223B48;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow: 0 10px 28px rgba(16, 60, 80, 0.08);
  --shadow-lg: 0 14px 36px rgba(16, 60, 80, 0.14);
  --font: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  background: var(--bg-site);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color .2s ease;
}

a:hover {
  color: var(--primary-strong);
}

button,
input {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(242, 165, 90, 0.82);
  outline-offset: 2px;
  border-radius: 6px;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-pad {
  padding: 88px 0;
}

.section-white {
  background: var(--surface);
}

.section-gray {
  background: var(--bg-site);
}

.section-blue {
  background: var(--surface-alt);
}

/* ========== Header ========== */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border-line);
  box-shadow: 0 6px 20px rgba(16, 60, 80, 0.04);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  font-size: 21px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  letter-spacing: .2px;
}

.brand:hover {
  color: var(--primary);
}

.brand-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--surface);
  box-shadow: 0 6px 16px rgba(16, 60, 80, 0.10);
}

.brand-icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.brand-name {
  font-size: 21px;
  color: var(--primary);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  justify-content: flex-end;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(280px, 32vw);
  background: var(--bg-site);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 5px 6px 5px 16px;
  transition: border-color .2s ease, background .2s ease;
}

.header-search:focus-within {
  background: var(--surface);
  border-color: var(--border-line);
}

.header-search input {
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  min-width: 0;
  font-size: 14px;
  color: var(--text-body);
}

.header-search input::placeholder {
  color: var(--text-muted);
}

.search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: 0;
  transition: background .2s ease, transform .2s ease;
}

.search-submit:hover {
  background: var(--primary-strong);
  transform: scale(1.05);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--primary);
}

.phone-svg {
  width: 17px;
  height: 17px;
  color: var(--accent);
}

.link-muted {
  background: transparent;
  padding: 8px 6px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  transition: color .2s ease, background .2s ease;
}

.link-muted:hover {
  color: var(--primary);
  background: var(--bg-site);
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--primary);
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.btn-pill:hover {
  background: var(--primary-strong);
  border-color: var(--primary-strong);
  color: #fff;
  transform: translateY(-1px);
}

.menu-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: transparent;
  border-radius: 12px;
  align-items: center;
  padding: 8px;
}

.menu-toggle-btn .line {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

/* Channel nav */
.channel-nav {
  background: var(--surface);
  border-top: 1px solid rgba(211, 227, 235, 0.55);
}

.channel-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-top: 9px;
  padding-bottom: 9px;
  scrollbar-width: thin;
}

.channel-item {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  background: transparent;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.channel-item:hover {
  color: var(--primary);
  background: var(--surface-alt);
}

.channel-item.is-active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(11, 110, 157, 0.18);
}

/* Mobile panel */
.mobile-panel {
  display: none;
  background: var(--surface);
  border-top: 1px solid var(--border-line);
  padding: 18px 24px 24px;
}

.mobile-panel.is-open {
  display: block;
}

.mobile-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-site);
  border-radius: 999px;
  padding: 10px 18px;
  border: 1px solid var(--border-line);
}

.mobile-search input {
  border: 0;
  background: transparent;
  outline: 0;
  width: 100%;
  font-size: 15px;
}

.mobile-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mobile-nav-links a {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--text-body);
  font-weight: 500;
  font-size: 15px;
}

.mobile-nav-links a.is-active {
  background: var(--primary);
  color: #fff;
}

.mobile-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  align-items: center;
  flex-wrap: wrap;
}

/* ========== Lead / Hero ========== */
.category-lead {
  position: relative;
  padding: 78px 0 118px;
  background:
    linear-gradient(113deg, rgba(255, 255, 255, 0.94) 10%, rgba(236, 247, 252, 0.86) 80%),
    url('/assets/images/backpic/back-1.webp') no-repeat center / cover;
  border-bottom: 1px solid rgba(211, 227, 235, 0.6);
  overflow: hidden;
}

.lead-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.lead-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 15px;
  background: rgba(232, 242, 248, 0.85);
  border: 1px solid var(--border-line);
  border-radius: 999px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.category-lead h1 {
  margin: 0 0 22px;
  font-size: clamp(35px, 5vw, 49px);
  line-height: 1.24;
  color: var(--text-body);
  letter-spacing: 0.5px;
}

.lead-description {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.9;
  color: #455A66;
  max-width: 560px;
}

.lead-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 700;
  transition: all .2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  background: var(--primary-strong);
  color: #fff;
  border-color: var(--primary-strong);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(11, 110, 157, 0.18);
}

.btn-outline {
  background: var(--surface);
  color: var(--primary);
  border: 1px solid var(--border-line);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.lead-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}

.lead-tags .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.lead-visual {
  position: relative;
}

.lead-visual img {
  width: 100%;
  height: clamp(300px, 36vw, 450px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255, 255, 255, 0.8);
}

.lead-float {
  position: absolute;
  left: -14px;
  bottom: 26px;
  top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 12px 18px;
  max-width: 230px;
}

.lead-float .pulse {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(76, 175, 125, 0.15);
}

.lead-float strong {
  display: block;
  font-size: 14px;
  color: var(--text-body);
  white-space: nowrap;
}

.lead-float span {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-top: 1px;
}

/* ========== Stats ========== */
.stat-section {
  position: relative;
  z-index: 3;
  margin-top: -72px;
  padding-bottom: 30px;
}

.stats-panel {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(211, 227, 235, 0.65);
  padding: 32px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
  padding: 8px 20px;
  text-align: center;
  position: relative;
}

.stat-cell + .stat-cell::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--border-line);
}

.stat-number {
  display: block;
  font-size: 34px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  font-family: var(--font);
  letter-spacing: -0.5px;
}

.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: var(--text-muted);
}

.stat-note {
  text-align: center;
  margin: 16px auto 0;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 680px;
}

/* ========== Split sections ========== */
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.split-visual img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-line);
}

.split-copy {
  max-width: 570px;
}

.eyebrow-tag {
  display: inline-flex;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(11, 110, 157, 0.10);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.split-copy h2,
.section-head h2,
.cta-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.5vw, 36px);
  line-height: 1.3;
  color: var(--text-body);
}

.split-copy p,
.section-head p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-muted);
}

.steps-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.steps-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border-line);
}

.steps-list li:last-child {
  border-bottom: 0;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: var(--surface-alt);
  color: var(--primary);
  font-weight: 800;
  font-size: 14px;
}

.step-content {
  flex: 1;
}

.step-content strong {
  display: block;
  font-size: 16px;
  color: var(--text-body);
  margin-bottom: 2px;
}

.step-content p {
  margin: 3px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

.venue-checks {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.venue-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  border: 1px solid rgba(211, 227, 235, 0.65);
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.8;
}

.check-icon {
  display: inline-flex;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  margin-top: 3px;
}

.check-icon svg {
  width: 14px;
  height: 14px;
}

.venue-note {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px dashed var(--border-line);
}

/* ========== Activity ========== */
.activity-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 38px;
}

.activity-head .activity-link {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  padding-bottom: 6px;
}

.activity-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.activity-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 440px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-line);
}

.activity-main img.activity-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activity-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(8, 30, 38, 0.06), rgba(8, 30, 38, 0.78) 86%);
  pointer-events: none;
}

.activity-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 36px 34px;
  color: #fff;
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.activity-body h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: 0.3px;
}

.activity-body p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  max-width: 520px;
}

.activity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
}

.activity-meta span {
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  transition: all .2s ease;
}

.btn-light:hover {
  background: var(--surface-alt);
  color: var(--primary-strong);
  transform: translateY(-2px);
}

.activity-side {
  display: grid;
  gap: 28px;
}

.side-card {
  padding: 28px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border-line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform .2s ease, box-shadow .2s ease;
}

.side-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.side-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: var(--surface-alt);
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--primary);
}

.side-icon.warmly {
  background: rgba(242, 166, 90, 0.16);
  color: #d6852a;
}

.side-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  color: var(--text-body);
  line-height: 1.4;
}

.side-card p {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.side-card a {
  font-size: 14px;
  font-weight: 700;
  margin-top: auto;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

/* ========== Features ========== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(211, 227, 235, 0.7);
  transition: transform .2s ease, box-shadow .2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-num {
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  background: var(--primary);
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 18px;
}

.feature-card:nth-child(2) .feature-num {
  background: var(--accent);
}

.feature-card:nth-child(3) .feature-num {
  background: var(--warm);
}

.feature-card:nth-child(4) .feature-num {
  background: #8f9fd8;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--text-body);
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ========== FAQ ========== */
.faq-wrap {
  display: grid;
  gap: 14px;
  margin-top: 40px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-line);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .2s ease;
}

.faq-item.open {
  box-shadow: var(--shadow);
  background: var(--surface-alt);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-body);
  transition: color .2s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-line);
  transition: transform .25s ease, background .2s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: var(--primary);
  transform: translate(-50%, -50%);
  border-radius: 4px;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after {
  background: var(--primary-strong);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.faq-answer p {
  margin: 0;
}

/* ========== CTA ========== */
.cta-section {
  padding: 76px 0;
}

.cta-panel {
  background: var(--surface);
  border-top: 1px solid var(--border-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(32px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-panel::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(76, 175, 125, 0.09);
}

.cta-panel::after {
  content: "";
  position: absolute;
  right: 120px;
  bottom: -130px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(11, 110, 157, 0.07);
}

.cta-copy {
  position: relative;
  z-index: 2;
}

.cta-copy h2 {
  font-size: clamp(27px, 3.4vw, 36px);
  line-height: 1.35;
  margin: 0 0 18px;
}

.cta-copy p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.9;
  margin: 0;
  max-width: 580px;
}

.cta-form-area {
  position: relative;
  z-index: 2;
}

.cta-form {
  display: flex;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border-line);
  border-radius: 999px;
  padding: 8px;
  box-shadow: 0 4px 14px rgba(16, 60, 80, 0.06);
}

.cta-form input {
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  min-width: 0;
  font-size: 15px;
  padding: 0 6px 0 14px;
}

.cta-form input::placeholder {
  color: var(--text-muted);
}

.cta-form button {
  flex: 0 0 auto;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 15px;
  transition: background .2s ease, transform .2s ease;
}

.cta-form button:hover {
  background: var(--primary-strong);
  transform: translateY(-1px);
}

.form-muted {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.form-success {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
}

.cta-mini {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--border-line);
  font-size: 14px;
}

.cta-mini a {
  font-weight: 700;
}

/* ========== Footer ========== */
.site-footer {
  background: var(--footer-dark);
  color: #c9dbe5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1.15fr;
  gap: 44px;
  padding: 64px 0 54px;
}

.footer-brand-name {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: .3px;
}

.footer-brand-name:hover {
  color: #fff;
}

.brand-icon-foot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.12);
}

.footer-about-text {
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color: #afc5d0;
  max-width: 360px;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 4px 0 16px;
}

.footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-links-list a {
  color: #c4d7e0;
  font-size: 14px;
  line-height: 1.6;
  transition: color .2s ease;
}

.footer-links-list a:hover {
  color: var(--warm);
}

.footer-contact-info {
  display: grid;
  gap: 12px;
}

.footer-contact-info span {
  display: block;
  font-size: 13px;
  line-height: 1.8;
  color: #c4d7e0;
}

.footer-contact-info strong {
  display: block;
  color: #fff;
  font-size: 13px;
  margin-bottom: 1px;
}

.footer-qr-wrap {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer-qr {
  width: 82px;
  border-radius: 12px;
  background: #fff;
  padding: 9px;
  text-align: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.qr-grid i {
  display: block;
  aspect-ratio: 1;
  border-radius: 1px;
  background: #17485b;
}

.footer-qr-bottom-tip {
  display: block;
  font-size: 11px;
  color: #6f7f8a;
  line-height: 1.5;
  margin-top: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 13px;
  color: #9fb5c1;
}

/* ========== Responsive ========== */
@media (max-width: 1100px) {
  .header-search {
    width: 220px;
  }
  .header-phone {
    display: none;
  }
}

@media (max-width: 900px) {
  .section-pad {
    padding: 72px 0;
  }

  .lead-grid,
  .split-grid,
  .cta-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .activity-grid {
    grid-template-columns: 1fr;
  }

  .activity-main {
    min-height: 420px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-panel {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 0;
  }

  .stat-cell + .stat-cell::before {
    display: none;
  }

  .stat-cell:nth-child(odd) {
    border-right: 1px solid var(--border-line);
  }

  .stat-cell:nth-child(n+3) {
    border-top: 1px solid var(--border-line);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    padding-top: 56px;
  }
}

@media (max-width: 768px) {
  .header-main {
    min-height: 64px;
    gap: 14px;
  }

  .brand {
    font-size: 18px;
    gap: 8px;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .brand-icon svg {
    width: 30px;
    height: 30px;
  }

  .brand-name {
    font-size: 18px;
  }

  .header-search {
    width: 190px;
  }

  .header-actions .link-muted,
  .header-actions .btn-pill {
    display: none;
  }

  .menu-toggle-btn {
    display: inline-flex;
  }
}

@media (max-width: 620px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-pad {
    padding: 56px 0;
  }

  .category-lead {
    padding: 48px 0 96px;
  }

  .category-lead h1 {
    font-size: 32px;
  }

  .lead-grid,
  .split-grid,
  .cta-panel {
    gap: 26px;
  }

  .split-visual img {
    height: 290px;
  }

  .lead-visual img {
    height: 260px;
  }

  .lead-float {
    left: 8px;
    bottom: -16px;
    padding: 10px 14px;
  }

  .stat-section {
    margin-top: -46px;
  }

  .stats-panel {
    padding: 18px 8px;
    border-radius: 18px;
  }

  .stat-cell {
    padding: 8px 10px;
  }

  .stat-number {
    font-size: 27px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-qr-wrap {
    flex-wrap: wrap;
  }

  .activity-main {
    min-height: 390px;
  }

  .activity-body {
    padding: 22px;
  }

  .activity-body h3 {
    font-size: 22px;
  }

  .cta-panel {
    padding: 30px 20px;
  }

  .cta-form {
    flex-direction: column;
    border-radius: 20px;
    background: var(--surface);
    padding: 12px;
  }

  .cta-form input {
    padding: 10px 14px;
    background: var(--bg-site);
    border-radius: 999px;
  }

  .cta-form button {
    width: 100%;
    margin-top: 4px;
    padding: 14px 18px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .header-search {
    width: 156px;
  }

  .mobile-panel {
    padding-left: 16px;
    padding-right: 16px;
  }

  .activity-meta {
    gap: 8px;
  }

  .activity-meta span {
    padding: 3px 10px;
  }

  .channel-item {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/* roulang page: category2 */
:root{
  --bg-site:#F4FAFD;
  --surface:#FFFFFF;
  --surface-alt:#E8F2F8;
  --surface-tint:#EEF6F3;
  --primary:#0B6E9D;
  --primary-strong:#084C6E;
  --accent:#4CAF7D;
  --accent-soft:#E0F2E8;
  --warm:#F2A65A;
  --text-body:#1F2C33;
  --text-muted:#64777F;
  --border-line:#D3E3EB;
  --radius:14px;
  --radius-sm:10px;
  --radius-lg:26px;
  --shadow:0 10px 28px rgba(16,60,80,.08);
  --shadow-lg:0 14px 36px rgba(16,60,80,.14);
  --space-section:96px;
  --max-width:1200px;
  --font: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
}
*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0}
body{background:var(--bg-site);color:var(--text-body);font:16px/1.75 var(--font);-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button,input{font-family:inherit;font-size:1rem;color:inherit}
button{cursor:pointer;border:none;background:none}
input:focus,button:focus,a:focus{outline:2px solid var(--warm);outline-offset:2px}
.container{max-width:var(--max-width);margin:0 auto;padding-left:24px;padding-right:24px}
.section-padding{padding-top:var(--space-section);padding-bottom:var(--space-section)}
.surface-white{background:var(--surface)}
.surface-alt{background:var(--surface-alt)}
.site-header{
  position:sticky;top:0;z-index:80;background:var(--surface);border-bottom:1px solid var(--border-line);
  box-shadow:0 4px 24px rgba(16,60,80,.05)
}
.header-main{
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  padding-top:14px;padding-bottom:14px
}
.brand{
  display:inline-flex;align-items:center;gap:11px;flex-shrink:0
}
.brand-icon{
  width:42px;height:42px;border-radius:50%;
  background:var(--surface-alt);
  display:inline-flex;align-items:center;justify-content:center;
  box-shadow:inset 0 0 0 1px var(--border-line)
}
.brand-name{font-size:22px;font-weight:800;letter-spacing:.5px;color:var(--primary)}
.header-tools{display:flex;align-items:center;justify-content:flex-end;gap:14px;flex:1;min-width:0;margin-left:14px}
.header-search{
  display:flex;align-items:center;max-width:320px;width:100%;
  background:var(--bg-site);border:1px solid var(--border-line);
  border-radius:999px;padding:4px 5px 4px 16px;transition:border-color .25s, box-shadow .25s
}
.header-search:focus-within{border-color:var(--primary);box-shadow:0 0 0 4px rgba(11,110,157,.08)}
.header-search input{
  border:none;background:transparent;outline:none;width:100%;
  padding:6px 0;font-size:14px;color:var(--text-body)
}
.search-submit{
  width:34px;height:34px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;
  color:var(--primary);background:var(--surface-alt);transition:background .2s
}
.search-submit:hover{background:var(--surface)}
.header-actions{display:flex;align-items:center;gap:12px}
.header-phones{
  display:inline-flex;align-items:center;gap:6px;
  color:var(--text-muted);font-size:14px;font-weight:500
}
.header-phones svg{color:var(--accent)}
.link-muted{color:var(--text-muted);font-size:15px;font-weight:500;padding:8px 8px;border-radius:999px;transition:color .2s}
.link-muted:hover{color:var(--primary)}
.btn-pill{
  display:inline-flex;align-items:center;justify-content:center;
  padding:9px 22px;border-radius:999px;font-size:14px;font-weight:600;
  background:var(--primary);color:#fff;transition:background .2s, transform .2s, box-shadow .2s;
  white-space:nowrap;border:1px solid var(--primary)
}
.btn-pill:hover{background:var(--primary-strong);transform:translateY(-1px);box-shadow:0 8px 20px rgba(8,76,110,.18)}
.btn-pill-outline{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 24px;border-radius:999px;font-size:15px;font-weight:600;
  background:var(--surface);color:var(--primary);border:1px solid var(--primary);
  transition:background .2s, color .2s, border-color .2s
}
.btn-pill-outline:hover{border-color:var(--primary-strong);color:var(--primary-strong);background:var(--surface-alt)}
.menu-toggle-btn{display:none;width:44px;height:44px;border-radius:10px;background:var(--surface-alt)}
.menu-toggle-btn .line{display:block;width:20px;height:2px;background:var(--text-body);margin:5px auto;transition:transform .25s,opacity .25s}
.menu-toggle-btn.open .line:first-child{transform:translateY(7px) rotate(45deg)}
.menu-toggle-btn.open .line:last-child{transform:translateY(-7px) rotate(-45deg)}
.channel-nav{background:var(--surface);border-top:1px solid #EAEFF3}
.channel-scroll{display:flex;align-items:center;gap:8px;overflow-x:auto;padding:8px 24px;scrollbar-width:none;-webkit-overflow-scrolling:touch}
.channel-scroll::-webkit-scrollbar{display:none}
.channel-nav a{
  position:relative;display:inline-flex;align-items:center;
  padding:8px 18px;border-radius:999px;font-size:15px;font-weight:600;
  color:var(--text-muted);transition:color .2s,background .2s;white-space:nowrap
}
.channel-nav a:hover{color:var(--primary);background:var(--surface-alt)}
.channel-nav a.active{background:var(--primary);color:#fff}
.channel-nav a.active::after{content:"";position:absolute;left:50%;bottom:2px;width:4px;height:4px;border-radius:50%;background:var(--warm);transform:translateX(-50%)}
.mobile-panel{display:none;background:var(--surface);border-top:1px solid var(--border-line);padding:0;height:0;overflow:hidden;transition:height .3s ease}
.mobile-panel.open{display:block;height:auto;padding:16px 0 22px}
.mobile-search{display:flex;align-items:center;gap:8px;background:var(--bg-site);border:1px solid var(--border-line);border-radius:999px;padding:9px 16px;margin-bottom:14px}
.mobile-search input{flex:1;min-width:0;border:none;background:transparent;outline:none;font-size:15px}
.mobile-actions{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:8px}
.mobile-channel{display:grid;grid-template-columns:repeat(2,1fr);gap:8px;margin-top:10px}
.mobile-channel a{padding:12px 16px;background:var(--bg-site);border-radius:999px;color:var(--text-body);font-size:15px;font-weight:500}
.mobile-channel a.active{background:var(--primary);color:#fff}
.mobile-contact-note{color:var(--text-muted);font-size:13px;margin-top:14px}
.site-footer{margin-top:0;background:#1A2E3A;color:#C8D6DE}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:44px;padding:64px 0 48px}
.footer-brand-name{display:flex;align-items:center;gap:9px;font-size:21px;font-weight:800;color:#fff}
.brand-icon-foot{width:34px;height:34px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:rgba(255,255,255,.1)}
.footer-about-text{margin-top:18px;font-size:14px;line-height:1.9;color:#AFC2CB;max-width:330px}
.footer-title{font-size:16px;font-weight:700;color:#fff;margin-bottom:14px}
.footer-links-list{list-style:none;padding:0;margin:0;display:grid;gap:10px}
.footer-links-list a{color:#AFC2CB;font-size:14px;transition:color .2s;padding:2px 0}
.footer-links-list a:hover{color:#fff}
.footer-contact-info{display:grid;gap:10px;color:#AFC2CB;font-size:14px}
.footer-contact-info strong{display:block;color:#DDE9EE;font-weight:600;font-size:14px}
.footer-contact-info span{line-height:1.5}
.footer-qr-wrap{display:flex;gap:14px;flex-wrap:wrap}
.footer-qr{background:#fff;border-radius:10px;padding:10px;text-align:center;width:110px}
.qr-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:3px;width:80px;height:80px;margin:0 auto}
.qr-grid i{display:block;width:100%;height:100%;background:var(--primary-strong);border-radius:1px}
.footer-qr-bottom-tip{display:block;margin-top:8px;color:var(--primary-strong);font-size:12px;font-weight:500}
.footer-bottom{border-top:1px solid rgba(255,255,255,.12);padding:18px 0 24px;display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap;font-size:13px;color:#8FAAB6}
.footer-bottom a{color:#C8D6DE}
.footer-bottom a:hover{color:#fff}

/* hero */
.football-hero{
  position:relative;padding:88px 0 76px;overflow:hidden;
  background:linear-gradient(90deg,#ffffff 0%,#F0F8FC 47%,#E4F3ED 100%)
}
.football-hero::before{
  content:"";position:absolute;top:-90px;right:-40px;width:360px;height:360px;border-radius:50%;
  background:radial-gradient(circle at 30% 30%, rgba(76,175,125,.16), transparent 60%)
}
.football-hero::after{
  content:"";position:absolute;left:-80px;bottom:-140px;width:280px;height:280px;border-radius:50%;
  background:radial-gradient(circle at 60% 60%, rgba(11,110,157,.08), transparent 65%)
}
.hero-football-grid{position:relative;z-index:2;display:grid;grid-template-columns:1.3fr .9fr;gap:52px;align-items:center}
.hero-kicker{
  display:inline-flex;align-items:center;gap:8px;background:var(--accent-soft);
  color:#1F7F56;font-size:14px;font-weight:600;border-radius:999px;padding:6px 16px;margin-bottom:20px
}
.hero-kicker .dot{width:8px;height:8px;border-radius:50%;background:var(--accent)}
.hero-title{font-size:44px;line-height:1.22;font-weight:800;letter-spacing:.5px;color:var(--text-body);margin:0 0 22px}
.hero-title span{color:var(--primary)}
.hero-sub{font-size:18px;line-height:1.85;color:var(--text-muted);max-width:560px;margin:0 0 30px}
.hero-cta{display:flex;gap:14px;flex-wrap:wrap}
.hero-trust-note{display:flex;align-items:center;gap:14px;margin-top:30px;color:var(--text-muted);font-size:13px}
.hero-avatars{display:flex}
.hero-avatars i{
  width:34px;height:34px;border-radius:50%;border:2px solid #fff;display:inline-block;margin-left:-6px;
  background:linear-gradient(135deg,var(--primary),var(--accent))
}
.hero-avatars i:nth-child(2){background:linear-gradient(135deg,#94C7DF,#4CAF7D)}
.hero-avatars i:nth-child(3){background:linear-gradient(135deg,var(--warm),var(--primary))}
.hero-avatars i:nth-child(4){background:linear-gradient(135deg,#BFA5D4,var(--accent))}
.match-board{
  background:rgba(255,255,255,.94);border-radius:22px;padding:24px;
  box-shadow:var(--shadow-lg);border:1px solid rgba(211,227,235,.45)
}
.match-board-title{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:16px}
.match-board-title strong{font-size:18px}
.match-board-title span{font-size:13px;color:var(--accent);font-weight:600;background:var(--accent-soft);padding:3px 12px;border-radius:999px}
.match-list{display:grid;gap:14px}
.match-item{
  background:var(--surface);border:1px solid var(--border-line);border-radius:14px;
  padding:16px 16px 14px;display:grid;grid-template-columns:auto 1fr auto;gap:14px;align-items:center;
  transition:border-color .2s,box-shadow .2s,transform .2s
}
.match-item:hover{border-color:#A9CDE0;transform:translateY(-2px);box-shadow:var(--shadow)}
.match-day{
  width:52px;height:52px;border-radius:12px;background:var(--surface-alt);
  text-align:center;padding-top:6px;font-weight:800;color:var(--primary)
}
.match-day small{display:block;font-size:11px;font-weight:500;color:var(--text-muted);line-height:1.2}
.match-item-info strong{display:block;font-size:15px;margin-bottom:3px}
.match-item-info p{margin:0;font-size:12px;color:var(--text-muted)}
.match-item-meta .tag{display:inline-block;background:var(--accent-soft);color:#1F7F56;font-size:12px;font-weight:600;border-radius:999px;padding:3px 8px}
.match-arrow{width:28px;height:28px;color:var(--primary);opacity:.6}
.board-more{margin-top:16px;display:flex;justify-content:center;color:var(--muted);font-size:13px}
.board-more a{color:var(--primary);font-weight:600}

.trend-strip{background:#fff;border-bottom:1px solid var(--border-line)}
.trend-list{display:flex;align-items:flex-start;justify-content:space-between;gap:26px;flex-wrap:wrap;padding:30px 0}
.trend-item{display:flex;gap:14px;align-items:center}
.trend-ico{width:48px;height:48px;border-radius:50%;background:var(--surface-alt);display:inline-flex;align-items:center;justify-content:center;color:var(--primary);font-size:21px;flex-shrink:0}
.trend-item b{display:block;font-size:15px}
.trend-item small{color:var(--text-muted);font-size:13px}
.section-head{max-width:760px;margin-bottom:34px}
.eyebrow{color:var(--primary);font-size:13px;font-weight:700;letter-spacing:1.2px;text-transform:uppercase;display:block;margin-bottom:8px}
.section-title{font-size:32px;line-height:1.3;margin:0 0 14px;color:var(--text-body)}
.section-desc{margin:0;color:var(--text-muted);font-size:16px;line-height:1.8}
/* onboarding 3 features */
.onboard-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.onboard-card{
  background:#fff;border-radius:18px;padding:28px 24px;box-shadow:var(--shadow);
  border-top:3px solid var(--primary);transition:transform .25s, box-shadow .25s
}
.onboard-card:nth-child(2){border-top-color:var(--accent)}
.onboard-card:nth-child(3){border-top-color:var(--warm)}
.onboard-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.card-number{font-size:30px;font-weight:800;color:var(--primary);opacity:.9;line-height:1;margin-top:8px}
.onboard-card:nth-child(2) .card-number{color:var(--accent)}
.onboard-card:nth-child(3) .card-number{color:var(--warm)}
.onboard-card h3{font-size:19px;margin:14px 0 8px}
.onboard-card p{margin:0;color:var(--text-muted);font-size:15px}
/* football weekly hero image */
.focus-section{background:var(--surface-alt);padding:96px 0}
.focus-split{display:grid;grid-template-columns:1.1fr .95fr;align-items:center;gap:42px}
.focus-img-wrap{position:relative;border-radius:20px;overflow:hidden;box-shadow:var(--shadow-lg)}
.focus-img-wrap img{width:100%;height:420px;object-fit:cover}
.focus-img-wrap::after{content:"周末焦点";position:absolute;left:18px;top:18px;background:var(--accent);color:#fff;font-size:13px;font-weight:700;padding:5px 14px;border-radius:999px}
.focus-info{background:#fff;padding:30px;border-radius:20px;border:1px solid var(--border-line)}
.focus-info h2{font-size:28px;line-height:1.35;margin:0 0 16px}
.focus-info p{color:var(--text-muted);margin:0 0 28px}
/* alternating visual steps */
.steps-zone{background:#fff}
.steps-intro{display:grid;grid-template-columns:.9fr 1.1fr;gap:60px;align-items:center}
.photo-feature{display:flex;gap:20px;align-items:center;padding:24px 0;border-bottom:1px solid var(--border-line)}
.photo-feature:last-child{border-bottom:0}
.photo-feature img{width:132px;height:132px;object-fit:cover;border-radius:16px;flex-shrink:0}
.photo-feature:nth-of-type(2) img{background:var(--surface-alt)}
.photo-feature:nth-of-type(3) img{background:var(--accent-soft)}
.photo-feature .feat-kicker{display:inline-block;font-size:12px;font-weight:700;color:var(--primary);background:var(--surface-alt);padding:3px 11px;border-radius:999px;margin-bottom:6px}
.photo-feature:nth-of-type(2) .feat-kicker{color:var(--accent)}
.photo-feature h3{margin:0 0 4px;font-size:20px}
.photo-feature p{margin:0;color:var(--text-muted);font-size:14px;line-height:1.7}
/* CTA panel */
.join-panel{
  background:var(--accent-soft);border:1px solid #B6DEC9;border-radius:26px;
  padding:50px 48px;position:relative;overflow:hidden
}
.join-panel::before{content:"";position:absolute;right:-48px;top:-48px;width:180px;height:180px;border-radius:50%;background:rgba(255,255,255,.5)}
.join-panel-grid{display:flex;justify-content:space-between;align-items:center;gap:34px;flex-wrap:wrap;position:relative;z-index:2}
.join-copy h2{margin:0 0 10px;font-size:29px}
.join-copy p{margin:0;color:#2E6B4D}
.btn-accent{background:var(--accent);color:#fff;font-size:15px;font-weight:700;display:inline-flex;padding:12px 28px;border-radius:999px;transition:background .2s, box-shadow .2s}
.btn-accent:hover{background:#3E9A6D;box-shadow:0 10px 22px rgba(76,175,125,.3)}
/* club story */
.club-section{background:var(--bg-site);padding:96px 0}
.club-grid{display:grid;grid-template-columns:1fr 1fr;gap:30px}
.club-notice{
  padding:24px;border:1px dashed #7FAFC9;border-radius:20px;background:rgba(255,255,255,.5)
}
.park-card{box-shadow:var(--shadow);border-radius:20px;overflow:hidden;background:#fff}
.park-texture{height:12px;background:var(--primary);display:block}
.last-look{background:var(--surface-alt);padding:96px 0 88px}
.faq-grid{display:grid;gap:12px;max-width:860px;margin:0 auto}
.faq-item{background:#fff;border-radius:14px;border:1px solid var(--border-line);overflow:hidden}
.faq-question{margin:0}
.faq-question button{
  display:flex;justify-content:space-between;align-items:center;gap:18px;width:100%;
  padding:20px 22px;background:transparent;text-align:left;cursor:pointer;
  font-size:17px;font-weight:600;color:var(--text-body);
  transition:background .2s
}
.faq-question button:hover{background:var(--surface-alt)}
.faq-icon{display:inline-flex;align-items:center;justify-content:center;width:26px;height:26px;border-radius:50%;background:var(--surface-alt);color:var(--primary);font-size:21px;line-height:1;flex-shrink:0;transition:transform .3s,background .3s}
.faq-item.open .faq-icon{transform:rotate(45deg);background:var(--primary);color:#fff}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .35s ease}
.faq-item.open .faq-answer{max-height:320px}
.faq-answer-inner{padding:0 22px 21px;color:var(--text-muted);font-size:15px;line-height:1.85;border-top:1px solid var(--border-line);margin:0 22px 20px 0;padding-left:0;padding-top:14px;margin-left:22px}
.cta-sub{
  background:linear-gradient(145deg,#EAF5FB,#F1F8F4);border-radius:26px;
  padding:48px 40px;text-align:center;margin:16px 0 80px;
  box-shadow:var(--shadow);border:1px solid var(--border-line)
}
.cta-sub-title{font-size:29px;line-height:1.35;margin:0 0 14px}
.cta-sub-title b{color:var(--primary)}
.cta-sub-desc{color:var(--text-muted);max-width:560px;margin:0 auto 26px;font-size:16px}
.subscribe-form{display:flex;max-width:510px;margin:0 auto;gap:10px;flex-wrap:wrap;justify-content:center}
.subscribe-form input{
  flex:1 1 260px;border:1px solid var(--border-line);border-radius:999px;padding:12px 20px;
  background:#fff;font-size:15px;transition:border-color .2s
}
.subscribe-form input:focus{border-color:var(--primary);outline:none}
.subscribe-form button{border-radius:999px;background:var(--primary);color:#fff;padding:12px 26px;font-weight:600;transition:background .25s}
.subscribe-form button:hover{background:var(--primary-strong)}
.mini-note{color:var(--text-muted);font-size:12px}
@media (max-width:1200px){
  .container{padding-left:24px;padding-right:24px}
  .hero-title{font-size:40px}
  .hero-football-grid{gap:32px}
}
@media (max-width:992px){
  :root{--space-section:72px}
  .header-main{flex-wrap:wrap;padding-top:12px;padding-bottom:12px}
  .header-tools{order:3;width:100%;justify-content:space-between}
  .header-search{max-width:100%;flex:1;margin-left:0}
  .mobile-panel{display:block;height:0}
  .mobile-panel.open{display:block}
  .channel-nav{display:block}
  .channel-scroll{padding-left:24px;padding-right:24px}
  .hero-football-grid{grid-template-columns:1fr;gap:30px}
  .hero-title{font-size:38px}
  .match-board{max-width:480px}
  .onboard-grid{grid-template-columns:1fr 1fr}
  .focus-split{grid-template-columns:1fr}
  .steps-intro{grid-template-columns:1fr}
  .club-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px}
  .join-panel-grid{flex-direction:column;align-items:flex-start}
}
@media (max-width:768px){
  .channel-nav{display:block}
  .channel-scroll{padding:6px 16px}
  .trend-list{gap:16px;flex-direction:column}
  .trend-item{width:100%}
  .section-title{font-size:28px}
  .section-desc{font-size:15px}
  .onboard-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:30px;padding:44px 0 30px}
  .footer-qr-wrap{flex-wrap:wrap}
  .photo-feature{flex-direction:column;align-items:flex-start}
  .photo-feature img{width:100%;height:180px}
  .focus-img-wrap img{height:340px}
  .join-panel{padding:30px 24px}
  .cta-sub{padding:38px 20px}
  .faq-question button{font-size:16px}
}
@media (max-width:575px){
  :root{--space-section:56px}
  .container{padding-left:16px;padding-right:16px}
  .header-main{padding-top:12px;padding-bottom:12px}
  .brand-name{font-size:19px}
  .brand-icon{width:38px;height:38px}
  .header-phones{display:none}
  .mobile-search{width:100%}
  .channel-scroll{padding-left:16px;padding-right:16px}
  .hero-title{font-size:33px}
  .hero-sub{font-size:16px}
  .hero-avatars i{width:30px;height:30px}
  .focus-img-wrap img{height:230px}
  .onboard-card{padding:22px}
  .section-title{font-size:25px}
  .match-board{padding:18px}
  .match-item{grid-template-columns:auto 1fr}
  .football-hero{padding:52px 0}
  .steps-zone .photo-feature{padding:18px 0}
  .mobile-panel .mobile-actions{flex-wrap:wrap}
}
