/* roulang page: index */
:root {
            --bg-deep: #05070E;
            --bg-body: #0A0F1C;
            --glass-bg: rgba(255, 255, 255, 0.04);
            --glass-border: rgba(255, 255, 255, 0.10);
            --text-primary: #F2F5FF;
            --text-secondary: #9AA3B8;
            --text-muted: #5F6A80;
            --brand-blue: #3D7EFF;
            --brand-gold: #E6B84D;
            --success: #2FCD7C;
            --danger: #FF5C5C;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
            background: var(--bg-deep);
            color: var(--text-primary);
            line-height: 1.6;
        }
        .font-num {
            font-family: "DIN Alternate", "Bahnschrift", Inter, "Helvetica Neue", sans-serif;
        }
        .container-custom {
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }
        .glass-card {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.10);
            border-radius: 1rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
        }
        .glass-card:hover {
            transform: translateY(-4px);
            border-color: rgba(255, 255, 255, 0.20);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--brand-gold);
            color: #0a0a0a;
            font-weight: 600;
            border-radius: 9999px;
            padding: 0.75rem 1.75rem;
            transition: all 0.3s ease;
            box-shadow: 0 0 24px rgba(230, 184, 77, 0.35);
            font-size: 0.95rem;
        }
        .btn-primary:hover {
            box-shadow: 0 0 36px rgba(230, 184, 77, 0.55);
            background: #f0c45e;
            transform: translateY(-2px);
        }
        .btn-primary:active {
            transform: translateY(1px);
        }
        .btn-ghost {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 9999px;
            padding: 0.75rem 1.75rem;
            color: #fff;
            font-weight: 500;
            backdrop-filter: blur(8px);
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.30);
            transform: translateY(-2px);
        }
        .badge-gold {
            display: inline-flex;
            align-items: center;
            background: rgba(230, 184, 77, 0.12);
            border: 1px solid rgba(230, 184, 77, 0.30);
            color: var(--brand-gold);
            font-size: 0.75rem;
            font-weight: 500;
            padding: 0.2rem 0.65rem;
            border-radius: 9999px;
        }
        .nav-link {
            position: relative;
            color: var(--text-secondary);
            transition: color 0.3s ease;
            font-size: 0.92rem;
        }
        .nav-link:hover {
            color: #fff;
        }
        .nav-link.active {
            color: var(--brand-gold);
        }
        .nav-link.active::after {
            content: "";
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            border-radius: 9999px;
            background: var(--brand-gold);
        }
        .section-tag {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            color: var(--brand-gold);
            background: rgba(230, 184, 77, 0.10);
            border: 1px solid rgba(230, 184, 77, 0.20);
            padding: 0.25rem 0.85rem;
            border-radius: 9999px;
            margin-bottom: 1rem;
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.02em;
        }
        .section-title .gold {
            color: var(--brand-gold);
        }
        .card-img-wrap {
            overflow: hidden;
            border-radius: 12px;
        }
        .card-img-wrap img {
            transition: transform 0.6s ease;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .card-img-wrap:hover img {
            transform: scale(1.05);
        }
        .rating-star {
            color: #f5b82e;
            letter-spacing: 2px;
        }
        .hero-bg {
            background-image: linear-gradient(rgba(5, 7, 14, 0.92), rgba(10, 15, 28, 0.85)), url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-attachment: scroll;
        }
        .cta-bg {
            background-image: linear-gradient(rgba(5, 7, 14, 0.93), rgba(5, 7, 14, 0.90)), url('/assets/images/backpic/back-2.png');
            background-size: cover;
            background-position: center;
        }
        .banner-bg {
            background-image: linear-gradient(135deg, rgba(5, 7, 14, 0.95), rgba(20, 30, 50, 0.88)), url('/assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center;
        }
        .faq-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 1rem;
            transition: border-color 0.3s ease;
        }
        .faq-card:hover {
            border-color: rgba(230, 184, 77, 0.30);
        }
        .faq-toggle {
            width: 28px;
            height: 28px;
            border-radius: 9999px;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        .faq-item[open] .faq-toggle {
            transform: rotate(45deg);
            background: rgba(230, 184, 77, 0.20);
            color: var(--brand-gold);
        }
        input,
        textarea,
        select {
            outline: none;
        }
        input:focus,
        textarea:focus {
            border-color: rgba(230, 184, 77, 0.6) !important;
            box-shadow: 0 0 0 4px rgba(230, 184, 77, 0.10);
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
        }
        .stat-value {
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--brand-gold);
            line-height: 1.2;
        }
        .mobile-menu {
            transform: translateY(-12px);
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
        }
        .mobile-menu.open {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.6rem;
            }
            .stat-value {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 520px) {
            .container-custom {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            .btn-primary,
            .btn-ghost {
                padding: 0.65rem 1.4rem;
                font-size: 0.88rem;
                width: 100%;
                margin-bottom: 0.5rem;
            }
        }
        .swiper-glow {
            position: relative;
        }
        .swiper-glow::before {
            content: "";
            position: absolute;
            top: -20%;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 80px;
            background: radial-gradient(ellipse, rgba(230, 184, 77, 0.15), transparent);
            border-radius: 50%;
            pointer-events: none;
        }
        .cover-card:nth-child(2) {
            border-color: rgba(230, 184, 77, 0.40) !important;
            box-shadow: 0 8px 30px rgba(230, 184, 77, 0.06);
        }
        .cover-card:nth-child(2) .card-badge {
            background: rgba(230, 184, 77, 0.18);
            border-color: rgba(230, 184, 77, 0.40);
            color: var(--brand-gold);
        }
        .empty-state {
            border: 2px dashed rgba(255, 255, 255, 0.14);
            background: rgba(255, 255, 255, 0.02);
        }
        .banner-gradient {
            background: linear-gradient(135deg, #05070E 0%, #101A2E 60%, #1A2A44 100%);
        }

/* roulang page: category1 */
:root {
            --bg-deep: #05070E;
            --bg-body: #0A0F1C;
            --glass-bg: rgba(255, 255, 255, 0.04);
            --glass-border: rgba(255, 255, 255, 0.10);
            --text-primary: #F2F5FF;
            --text-secondary: #9AA3B8;
            --text-muted: #5F6A80;
            --brand-blue: #3D7EFF;
            --brand-gold: #E6B84D;
            --success: #2FCD7C;
            --danger: #FF5C5C;
            --font-cn: -apple-system, "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
            --font-num: "DIN Alternate", Bahnschrift, Inter, "Helvetica Neue", sans-serif;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-cn);
            background-color: var(--bg-deep);
            background-image: linear-gradient(160deg, #0A0F1C 0%, #05070E 40%, #0A0F1C 100%);
            color: var(--text-primary);
            line-height: 1.6;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        button {
            font-family: inherit;
            border: none;
            background: none;
            cursor: pointer;
        }
        input,
        textarea {
            font-family: inherit;
            outline: none;
        }
        .container-custom {
            width: 100%;
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        .nav-link {
            font-size: 14px;
            color: var(--text-secondary);
            transition: all .3s ease;
            position: relative;
            padding: 6px 2px;
            letter-spacing: 0.02em;
        }
        .nav-link:hover {
            color: var(--text-primary);
        }
        .nav-link.active {
            color: var(--brand-gold);
        }
        .nav-link.active::after {
            content: "";
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 4px;
            border-radius: 9999px;
            background: var(--brand-gold);
        }
        .glass-card {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.10);
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
            transition: all 0.3s ease;
        }
        .glass-card:hover {
            transform: translateY(-4px);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
        }
        .btn-gold {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--brand-gold);
            color: #05070E;
            font-weight: 600;
            border-radius: 9999px;
            padding: 12px 28px;
            font-size: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 0 24px rgba(230, 184, 77, 0.35);
            border: 1px solid rgba(230, 184, 77, 0.6);
        }
        .btn-gold:hover {
            box-shadow: 0 0 40px rgba(230, 184, 77, 0.5);
            filter: brightness(1.08);
            transform: translateY(-2px);
        }
        .btn-gold:active {
            transform: translateY(0px);
        }
        .btn-glass {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
            border-radius: 9999px;
            padding: 12px 28px;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        .btn-glass:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.35);
            transform: translateY(-2px);
        }
        .btn-glass:active {
            transform: translateY(0px);
        }
        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 500;
            color: var(--brand-gold);
            background: rgba(230, 184, 77, 0.1);
            border: 1px solid rgba(230, 184, 77, 0.2);
            border-radius: 9999px;
            padding: 4px 14px;
            letter-spacing: 0.06em;
            margin-bottom: 12px;
        }
        .badge-gold {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 12px;
            font-weight: 500;
            color: var(--brand-gold);
            background: rgba(230, 184, 77, 0.1);
            border: 1px solid rgba(230, 184, 77, 0.3);
            border-radius: 9999px;
            padding: 3px 12px;
        }
        .badge-gray {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 12px;
            font-weight: 500;
            color: var(--text-muted);
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 9999px;
            padding: 3px 12px;
        }
        .num {
            font-family: var(--font-num);
        }
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(5, 7, 14, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 100;
            padding: 80px 32px 32px;
            flex-direction: column;
            gap: 20px;
        }
        .mobile-menu.open {
            display: flex;
        }
        .mobile-menu a {
            font-size: 18px;
            color: var(--text-primary);
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .mobile-menu a.active {
            color: var(--brand-gold);
            border-left: 3px solid var(--brand-gold);
            padding-left: 12px;
        }
        .banner-overlay {
            background: linear-gradient(135deg, rgba(5, 7, 14, 0.92) 20%, rgba(5, 7, 14, 0.6) 80%);
        }
        .hero-text-animate {
            animation: fadeUp 0.8s ease forwards;
        }
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .faq-item .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
        }
        .faq-item.active .faq-answer {
            max-height: 400px;
            padding-top: 12px;
        }
        .faq-item .faq-icon {
            transition: transform 0.3s ease;
        }
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        .timeline-item {
            position: relative;
            padding-left: 40px;
        }
        .timeline-item::before {
            content: "";
            position: absolute;
            left: 12px;
            top: 6px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--brand-gold);
            box-shadow: 0 0 12px rgba(230, 184, 77, 0.5);
        }
        .timeline-item::after {
            content: "";
            position: absolute;
            left: 16px;
            top: 20px;
            width: 2px;
            height: calc(100% - 16px);
            background: linear-gradient(to bottom, rgba(230, 184, 77, 0.3), rgba(255, 255, 255, 0.04));
        }
        .timeline-item:last-child::after {
            display: none;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: flex;
            }
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }
        }
        @media (min-width: 769px) {
            .mobile-menu-btn {
                display: none;
            }
        }
        .img-hover-zoom {
            overflow: hidden;
        }
        .img-hover-zoom img {
            transition: transform 0.5s ease;
        }
        .img-hover-zoom:hover img {
            transform: scale(1.05);
        }
        .focus-outline:focus-visible {
            outline: 2px solid var(--brand-gold);
            outline-offset: 2px;
            border-radius: 4px;
        }
        .faq-question {
            transition: background 0.3s ease;
        }
        .faq-question:hover {
            background: rgba(230, 184, 77, 0.03);
        }
        .img-glow {
            box-shadow: 0 0 0 1px rgba(230, 184, 77, 0.15), 0 20px 60px rgba(0, 0, 0, 0.4);
        }
        .backdrop-img {
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .badge-version {
            font-family: var(--font-num);
            font-weight: 600;
        }
        .underline-link {
            position: relative;
        }
        .underline-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0;
            height: 1px;
            background: var(--brand-gold);
            transition: width 0.3s ease;
        }
        .underline-link:hover::after {
            width: 100%;
        }
        .anchor-title {
            scroll-margin-top: 96px;
        }

/* roulang page: article */
:root {
  --bg-deep: #05070E;
  --bg-body: #0A0F1C;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.10);
  --text-primary: #F2F5FF;
  --text-secondary: #9AA3B8;
  --text-muted: #5F6A80;
  --brand-blue: #3D7EFF;
  --brand-gold: #E6B84D;
  --success: #2FCD7C;
  --danger: #FF5C5C;
  --radius-lg: 16px;
  --radius-full: 999px;
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.35);
  --shadow-gold: 0 0 24px rgba(230, 184, 77, 0.35);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(150deg, #05070E 0%, #0A0F1C 55%, #0E1422 100%);
  color: var(--text-primary);
  font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

body.article-page {
  padding-top: 72px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

input {
  outline: none;
}

.container-custom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header / Nav ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 72px;
  background: rgba(5, 7, 14, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(5, 7, 14, 0.85);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  white-space: nowrap;
}

.logo-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-gold), #b8860b);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(230, 184, 77, 0.35);
}

.logo-icon svg {
  width: 14px;
  height: 14px;
  color: #05070E;
  stroke-width: 2.5;
}

.nav-link {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 2px;
  position: relative;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link.active {
  color: var(--brand-gold);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand-gold);
  box-shadow: 0 0 8px rgba(230, 184, 77, 0.6);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.header-cta:hover {
  text-shadow: 0 0 16px rgba(230, 184, 77, 0.4);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 5px;
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(5, 7, 14, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 59;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu .mobile-nav-item {
  display: block;
  padding: 14px 8px;
  font-size: 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.mobile-menu .mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-menu .mobile-nav-item.active {
  color: var(--brand-gold);
  border-left: 3px solid var(--brand-gold);
  padding-left: 16px;
}

.mobile-menu .mobile-nav-item:hover {
  color: var(--text-primary);
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  gap: 8px;
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--brand-gold);
}

.breadcrumb .sep {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1;
}

.breadcrumb .current {
  color: var(--text-muted);
  max-width: 320px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Article Main ===== */
.article-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 56px;
  padding-bottom: 80px;
}

.article-header {
  margin-bottom: 36px;
}

.category-badge {
  display: inline-block;
  background: rgba(230, 184, 77, 0.12);
  border: 1px solid rgba(230, 184, 77, 0.3);
  color: var(--brand-gold);
  font-size: 12px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.article-header h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.28;
  margin-bottom: 20px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  display: inline-block;
}

/* ===== Article Content ===== */
.article-content {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(242, 245, 255, 0.92);
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.article-content p {
  margin-bottom: 22px;
}

.article-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 42px 0 18px;
  line-height: 1.35;
  padding-left: 14px;
  border-left: 3px solid var(--brand-gold);
}

.article-content h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 32px 0 14px;
  line-height: 1.4;
}

.article-content img {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin: 28px 0;
  box-shadow: var(--shadow-card);
}

.article-content blockquote {
  border-left: 3px solid var(--brand-gold);
  background: rgba(230, 184, 77, 0.06);
  padding: 16px 22px;
  margin: 28px 0;
  color: var(--text-secondary);
  font-size: 15px;
  border-radius: 0 12px 12px 0;
}

.article-content ul,
.article-content ol {
  padding-left: 24px;
  margin-bottom: 22px;
}

.article-content li {
  margin-bottom: 8px;
}

.article-content a {
  color: var(--brand-blue);
  border-bottom: 1px solid rgba(61, 126, 255, 0.3);
}

.article-content a:hover {
  border-bottom-color: var(--brand-blue);
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

.article-content th,
.article-content td {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 14px;
  text-align: left;
}

.article-content th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-weight: 600;
}

/* ===== Article Footer Bar ===== */
.article-footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 8px;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-badge {
  display: inline-block;
  font-size: 12px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.tag-badge:hover {
  color: var(--brand-gold);
  border-color: rgba(230, 184, 77, 0.4);
}

.share-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.share-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-right: 4px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 7px 14px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.share-btn:hover {
  color: var(--brand-gold);
  border-color: rgba(230, 184, 77, 0.35);
  background: rgba(230, 184, 77, 0.06);
}

/* ===== Related Section ===== */
.related-section {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-small-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-small-title::before {
  content: "";
  width: 4px;
  height: 20px;
  border-radius: 2px;
  background: var(--brand-gold);
}

.related-card {
  display: block;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-card);
}

.related-cover {
  height: 150px;
  overflow: hidden;
  background: linear-gradient(135deg, #141a2a, #1f2637);
}

.related-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.related-card:hover .related-cover img {
  transform: scale(1.05);
}

.related-info {
  padding: 18px;
}

.cat-tag {
  display: inline-block;
  font-size: 11px;
  color: var(--brand-gold);
  background: rgba(230, 184, 77, 0.1);
  border: 1px solid rgba(230, 184, 77, 0.25);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.related-info h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-info .time {
  font-size: 12px;
  color: var(--text-muted);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.back-link:hover {
  color: var(--brand-gold);
  padding-left: 6px;
}

/* ===== CTA Block ===== */
.cta-block {
  margin-top: 48px;
  padding: 36px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-block h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.cta-block p {
  font-size: 14px;
  color: var(--text-muted);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-gold);
  color: #05070E;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.btn-gold:hover {
  background: #f0c45a;
  box-shadow: 0 0 32px rgba(230, 184, 77, 0.5);
  transform: translateY(-1px);
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.qr-box {
  text-align: center;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.qr-box i {
  font-size: 48px;
  color: var(--text-primary);
  display: block;
  margin-bottom: 8px;
}

.qr-box span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== Not Found ===== */
.not-found {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 100px 24px;
}

.not-found h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.not-found p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(5, 7, 14, 0.9);
  border: 1px solid rgba(230, 184, 77, 0.3);
  color: var(--text-primary);
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 100;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== Footer ===== */
.site-footer {
  background: #04060B;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 280px;
}

.footer-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--brand-gold);
}

.footer-contact {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 2;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body.article-page {
    padding-top: 60px;
  }

  .site-header {
    height: 60px;
  }

  .desktop-nav {
    display: none !important;
  }

  .menu-toggle {
    display: flex !important;
  }

  .article-wrapper {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .article-header h1 {
    font-size: 26px;
  }

  .article-content {
    font-size: 15px;
  }

  .article-footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-block {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-buttons {
    width: 100%;
  }

  .cta-buttons .btn-gold,
  .cta-buttons .btn-glass {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .container-custom {
    padding: 0 20px;
  }

  .header-inner {
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .article-meta {
    gap: 8px;
  }

  .article-meta .dot {
    display: none;
  }

  .article-meta span {
    width: 100%;
  }
}

/* roulang page: category2 */
:root {
            --bg-deep: #05070E;
            --bg-body: #0A0F1C;
            --glass-bg: rgba(255,255,255,0.04);
            --glass-border: rgba(255,255,255,0.10);
            --text-primary: #F2F5FF;
            --text-secondary: #9AA3B8;
            --text-muted: #5F6A80;
            --brand-blue: #3D7EFF;
            --brand-gold: #E6B84D;
            --success: #2FCD7C;
            --danger: #FF5C5C;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
            background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-deep) 100%);
            color: var(--text-primary);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            min-height: 100vh;
        }
        .container-custom {
            max-width: 1280px;
            margin: 0 auto;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--text-primary);
        }
        img {
            max-width: 100%;
            display: block;
            object-fit: cover;
        }
        button {
            border: none;
            background: none;
            cursor: pointer;
            font-family: inherit;
        }
        ::selection {
            background: rgba(230,184,77,0.25);
            color: #fff;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #05070E;
        }
        ::-webkit-scrollbar-thumb {
            background: rgba(255,255,255,0.12);
            border-radius: 8px;
        }
        .num-font {
            font-family: "DIN Alternate", Bahnschrift, Inter, -apple-system, "Helvetica Neue", sans-serif;
        }

        /* ===== 导航 ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: 72px;
            background: rgba(5,7,14,0.72);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(255,255,255,0.06);
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }
        .site-header.scrolled {
            background: rgba(5,7,14,0.88);
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
        }
        .nav-link {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            padding: 6px 2px;
            position: relative;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .nav-link:hover {
            color: var(--text-primary);
        }
        .nav-link.active {
            color: var(--brand-gold);
        }
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 4px;
            border-radius: 9999px;
            background: linear-gradient(90deg, rgba(230,184,77,0.4), var(--brand-gold), rgba(230,184,77,0.4));
        }

        /* 汉堡 */
        .hamburger-btn {
            width: 40px;
            height: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            border-radius: 10px;
            transition: background 0.3s ease;
        }
        .hamburger-btn:hover {
            background: rgba(255,255,255,0.05);
        }
        .hamburger-btn span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        .hamburger-btn.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .hamburger-btn.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger-btn.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* 移动菜单 */
        .mobile-menu {
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            background: rgba(5,7,14,0.96);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            padding: 16px 24px 24px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            transform: translateY(-16px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 999;
        }
        .mobile-menu.open {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .mobile-link {
            display: flex;
            align-items: center;
            padding: 14px 12px;
            font-size: 15px;
            color: var(--text-secondary);
            border-left: 2px solid transparent;
            border-radius: 0 8px 8px 0;
            transition: all 0.3s ease;
        }
        .mobile-link:hover {
            color: var(--text-primary);
            background: rgba(255,255,255,0.03);
        }
        .mobile-link.active {
            color: var(--brand-gold);
            border-left-color: var(--brand-gold);
            background: rgba(230,184,77,0.05);
        }

        /* ===== 标签 ===== */
        .tag-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 14px;
            border-radius: 9999px;
            font-size: 12px;
            font-weight: 500;
            border: 1px solid rgba(230,184,77,0.25);
            background: rgba(230,184,77,0.08);
            color: var(--brand-gold);
            letter-spacing: 0.04em;
        }
        .section-tag {
            display: inline-flex;
            align-items: center;
            padding: 4px 14px;
            border-radius: 9999px;
            font-size: 12px;
            font-weight: 500;
            color: var(--brand-gold);
            background: rgba(230,184,77,0.07);
            border: 1px solid rgba(230,184,77,0.2);
            margin-bottom: 14px;
            letter-spacing: 0.05em;
        }

        /* ===== 目录 ===== */
        .anchor-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            font-size: 14px;
            color: var(--text-secondary);
            border-radius: 10px;
            transition: all 0.3s ease;
            font-weight: 400;
        }
        .anchor-link:hover {
            color: var(--text-primary);
            background: rgba(255,255,255,0.05);
        }
        .anchor-link.active-anchor {
            color: var(--brand-gold);
            background: rgba(230,184,77,0.08);
            font-weight: 500;
        }
        .anchor-link .dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--text-muted);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        .anchor-link.active-anchor .dot {
            background: var(--brand-gold);
            box-shadow: 0 0 8px rgba(230,184,77,0.5);
        }

        /* 移动锚点 */
        .anchor-tabs {
            scrollbar-width: none;
        }
        .anchor-tabs::-webkit-scrollbar {
            display: none;
        }
        .anchor-tab {
            flex-shrink: 0;
            padding: 8px 18px;
            font-size: 13px;
            font-weight: 500;
            border-radius: 9999px;
            color: var(--text-secondary);
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .anchor-tab:hover {
            color: var(--text-primary);
            border-color: rgba(255,255,255,0.2);
        }
        .anchor-tab.active-anchor {
            color: var(--brand-gold);
            border-color: rgba(230,184,77,0.3);
            background: rgba(230,184,77,0.08);
        }

        /* ===== 卡片 ===== */
        .guide-card {
            display: flex;
            gap: 16px;
            padding: 20px;
            border-radius: 16px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.10);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            transition: all 0.3s ease;
        }
        .guide-card:hover {
            transform: translateY(-3px);
            border-color: rgba(255,255,255,0.22);
            box-shadow: 0 12px 32px rgba(0,0,0,0.35);
            background: rgba(255,255,255,0.06);
        }
        .guide-card-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 18px;
        }

        /* ===== FAQ ===== */
        .faq-item {
            border-radius: 16px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.10);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            overflow: hidden;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .faq-item.open {
            border-color: rgba(230,184,77,0.25);
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        }
        .faq-toggle {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-primary);
            text-align: left;
            transition: background 0.3s ease;
            line-height: 1.5;
        }
        .faq-toggle:hover {
            background: rgba(255,255,255,0.03);
        }
        .faq-icon {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--glass-border);
            color: var(--brand-gold);
            font-size: 15px;
            font-weight: 300;
            transition: all 0.3s ease;
            flex-shrink: 0;
            margin-left: 16px;
        }
        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            border-color: rgba(230,184,77,0.4);
            background: rgba(230,184,77,0.08);
        }
        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .faq-content-inner {
            padding: 0 24px 22px;
            font-size: 14px;
            line-height: 1.8;
            color: var(--text-secondary);
        }

        /* ===== 横幅 ===== */
        .page-banner {
            position: relative;
            padding: 100px 0 64px;
            overflow: hidden;
            background-size: cover;
            background-position: center;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(5,7,14,0.62) 0%, rgba(5,7,14,0.82) 100%);
            z-index: 1;
        }
        .page-banner::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -40%;
            transform: translateX(-50%);
            width: 600px;
            height: 300px;
            background: radial-gradient(ellipse, rgba(230,184,77,0.12) 0%, transparent 65%);
            z-index: 1;
            pointer-events: none;
        }
        .page-banner .banner-content {
            position: relative;
            z-index: 2;
        }

        /* ===== 图文框 ===== */
        .img-frame {
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.12);
            box-shadow: 0 16px 48px rgba(0,0,0,0.4);
            position: relative;
        }
        .img-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .img-frame:hover img {
            transform: scale(1.05);
        }

        /* ===== 其他 ===== */
        .glass-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.10);
            border-radius: 16px;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            transition: all 0.3s ease;
        }
        .glass-card:hover {
            border-color: rgba(255,255,255,0.2);
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
        }

        /* ===== 响应式 ===== */
        @media (max-width: 768px) {
            .site-header {
                height: 60px;
            }
            .mobile-menu {
                top: 60px;
            }
            .page-banner {
                padding: 90px 0 48px;
            }
        }
        @media (max-width: 520px) {
            .container-custom {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            .faq-toggle {
                padding: 16px 18px;
                font-size: 14px;
            }
            .faq-content-inner {
                padding: 0 18px 18px;
            }
            .guide-card {
                padding: 16px;
                flex-direction: column;
                gap: 14px;
            }
        }
