/* roulang page: index */
:root {
    --primary: #0A1E3F;
    --primary-light: #163A6B;
    --primary-dark: #061329;
    --accent: #C8A45D;
    --accent-light: #E2CA8C;
    --accent-dark: #A5833A;
    --dark: #081224;
    --bg-light: #F5F7FA;
    --bg-muted: #EEF1F5;
    --white: #FFFFFF;
    --text: #1A1A2E;
    --text-muted: #6B7280;
    --border: #E5E7EB;
    --radius: 18px;
    --radius-sm: 10px;
    --radius-lg: 28px;
    --shadow: 0 8px 30px rgba(6, 19, 41, 0.08);
    --shadow-lg: 0 24px 70px rgba(6, 19, 41, 0.16);
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.5em;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
    letter-spacing: -0.02em;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.1rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; display: block; }

ul, ol { padding: 0; margin: 0; list-style: none; }

input, button, textarea { font-family: inherit; }

button { cursor: pointer; border: none; background: none; color: inherit; }

:focus-visible {
    outline: 3px solid rgba(200, 164, 93, 0.55);
    outline-offset: 2px;
    border-radius: 4px;
}

.container { max-width: 1200px; padding-left: 20px; padding-right: 20px; }

.section-padding { padding: 90px 0; }

.section-title {
    font-size: 2.2rem;
    margin-bottom: 0.4rem;
    position: relative;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 3rem;
    max-width: 640px;
}

.text-accent { color: var(--accent); }

.section-head {
    text-align: center;
    margin-bottom: 2.6rem;
}

.section-head .section-title::after {
    content: "";
    display: block;
    width: 52px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    margin: 12px auto 0;
}

.section-head .section-subtitle {
    margin: 12px auto 0;
    text-align: center;
}

/* ========== 按钮 ========== */
.btn {
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 45%, var(--accent-dark) 100%);
    color: #0A1E3F;
    box-shadow: 0 8px 24px rgba(184, 138, 62, 0.35);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(184, 138, 62, 0.45);
    color: #0A1E3F;
}

.btn-primary-custom:active { transform: translateY(-1px); }

.btn-outline-custom {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

.btn-outline-custom:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
    background: rgba(200, 164, 93, 0.08);
}

.btn-outline-dark {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(10, 30, 63, 0.25);
}

/* ========== 导航 ========== */
.site-navbar {
    background: rgba(8, 18, 36, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: var(--transition);
}

.site-navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0 14px;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.site-navbar .navbar-brand:hover { color: var(--accent); }

.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(200, 164, 93, 0.4);
}

.logo-text {
    white-space: nowrap;
    font-size: 0.98rem;
}

.main-nav { gap: 4px; }

.main-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 50px;
    transition: var(--transition);
    font-size: 0.92rem;
}

.main-nav .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.main-nav .nav-link.active {
    color: #0A1E3F;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    box-shadow: 0 6px 18px rgba(200, 164, 93, 0.4);
    font-weight: 600;
}

.header-search { margin-left: 18px; }

.search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 5px 6px 5px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition);
    width: 220px;
}

.search-form:focus-within {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 0 3px rgba(200, 164, 93, 0.15);
}

.search-input {
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
    font-size: 0.85rem;
    width: 100%;
}

.search-input::placeholder { color: rgba(255, 255, 255, 0.5); }

.search-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #0A1E3F;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.search-btn:hover { transform: scale(1.08); }

.custom-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 6px 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.custom-toggler .toggler-bar {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 4px;
    transition: var(--transition);
}

.custom-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.custom-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) { opacity: 0; }
.custom-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ========== Hero ========== */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: url('/assets/images/backpic/back-1.png') center center / cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 19, 41, 0.94) 0%, rgba(10, 30, 63, 0.82) 55%, rgba(6, 19, 41, 0.55) 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(200, 164, 93, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero .container { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 22px;
}

.hero-badge i { color: var(--accent); }

.hero h1 {
    color: #fff;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.hero h1 .accent-line {
    color: var(--accent);
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
    font-weight: 500;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.02rem;
    max-width: 540px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.hero-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.hero-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
}

.hero-score-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    padding: 26px 28px;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    margin-left: auto;
}

.score-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.score-card-header .league {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.score-card-header .rank-badge {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #0A1E3F;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50px;
    padding: 2px 14px;
}

.score-card-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.score-stat {
    text-align: center;
    flex: 1;
}

.score-stat .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.score-stat .label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 2px;
}

.score-progress { margin-top: 14px; }

.score-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 6px;
}

.progress {
    height: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
}

.progress-bar {
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 8px;
}

/* ========== 数据统计 ========== */
.stats-section {
    background: var(--dark);
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 16px 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-number span { font-size: 1rem; font-weight: 600; color: rgba(255, 255, 255, 0.6); }

.stat-label {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* ========== 核心特色 ========== */
.features-section {
    background: var(--bg-light);
    position: relative;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 26px;
    height: 100%;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(200, 164, 93, 0.12), transparent);
    border-radius: 50%;
    top: -30px;
    right: -20px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 164, 93, 0.4);
}

.feature-card:hover::before { transform: scale(1.6); }

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    transform: scale(1.05);
}

.feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; }

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.65;
}

/* ========== 赛事指南特征板块 ========== */
.guide-section {
    background: var(--white);
    padding: 90px 0;
}

.guide-wrap {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary) 55%, var(--primary-light));
    border-radius: var(--radius-lg);
    padding: 60px 50px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.guide-wrap::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 164, 93, 0.25), transparent 70%);
    top: -80px;
    right: -80px;
}

.guide-wrap::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    bottom: -250px;
    left: -100px;
}

.guide-image {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 100%;
    min-height: 300px;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.guide-image:hover img { transform: scale(1.04); }

.guide-content { position: relative; z-index: 2; }

.guide-badge {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    border-radius: 50px;
    padding: 4px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.guide-content h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 14px;
}

.guide-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.98rem;
    margin-bottom: 20px;
}

.guide-list {
    margin-bottom: 26px;
}

.guide-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.94rem;
    margin-bottom: 12px;
}

.guide-list li i {
    color: var(--accent);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* ========== 最新资讯 ========== */
.news-section {
    background: var(--bg-light);
}

.news-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 164, 93, 0.35);
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.badge-cat {
    background: rgba(200, 164, 93, 0.14);
    color: var(--accent-dark);
    border-radius: 50px;
    padding: 3px 14px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.news-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.news-card h3 a {
    color: var(--dark);
}

.news-card h3 a:hover { color: var(--accent); }

.news-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.news-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 2px solid transparent;
    align-self: flex-start;
}

.news-link:hover { color: var(--accent); gap: 10px; border-color: var(--accent); }

.empty-tip {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    background: var(--white);
    padding: 50px 30px;
    border-radius: var(--radius);
    border: 1px dashed var(--border);
}

/* ========== 流程板块 ========== */
.process-section {
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-step::after {
    content: "";
    position: absolute;
    top: 42px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.process-step:last-child::after { display: none; }

.step-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(10, 30, 63, 0.2);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.process-step:hover .step-number {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    transform: scale(1.08);
}

.process-step h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.process-step p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ========== 热门排行 ========== */
.trending-section {
    background: var(--dark);
    color: #fff;
}

.trending-section .section-title {
    color: #fff;
}

.trending-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.trending-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.trending-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.trending-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(6px);
    border-color: rgba(200, 164, 93, 0.3);
}

.trending-rank {
    font-size: 1.7rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    width: 48px;
    text-align: center;
    font-style: italic;
    line-height: 1;
}

.trending-item:nth-child(1) .trending-rank,
.trending-item:nth-child(2) .trending-rank,
.trending-item:nth-child(3) .trending-rank {
    color: var(--accent);
}

.trending-info {
    flex: 1;
}

.trending-info h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 3px;
    font-weight: 600;
}

.trending-info span {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.5);
}

.trending-tag {
    font-size: 0.72rem;
    background: rgba(200, 164, 93, 0.15);
    color: var(--accent);
    border-radius: 50px;
    padding: 3px 12px;
    white-space: nowrap;
}

/* ========== FAQ ========== */
.faq-section {
    background: var(--bg-light);
}

.faq-wrapper {
    max-width: 780px;
    margin: 0 auto;
}

.accordion {
    --bs-accordion-border-color: var(--border);
    --bs-accordion-border-radius: var(--radius);
    --bs-accordion-inner-border-radius: var(--radius-sm);
    --bs-accordion-bg: var(--white);
    --bs-accordion-active-bg: var(--white);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 3px rgba(200, 164, 93, 0.2);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(6, 19, 41, 0.04);
    transition: var(--transition);
}

.accordion-item:hover {
    box-shadow: var(--shadow);
}

.accordion-button {
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background: rgba(200, 164, 93, 0.08);
    box-shadow: none;
}

.accordion-button::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f107";
    background: none;
    width: auto;
    height: auto;
    transition: var(--transition);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    background: none;
}

.accordion-body {
    padding: 16px 24px 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    border-top: 1px solid rgba(229, 231, 235, 0.5);
}

/* ========== CTA ========== */
.cta-section {
    position: relative;
    background: url('/assets/images/backpic/back-3.png') center center / cover no-repeat fixed;
    padding: 110px 0;
    text-align: center;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 19, 41, 0.95), rgba(10, 30, 63, 0.88));
}

.cta-section .container { position: relative; z-index: 2; color: #fff; }

.cta-section h2 {
    color: #fff;
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========== 页脚 ========== */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 0;
}

.footer-brand {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-brand .logo-mark {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
}

.footer-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    max-width: 320px;
}

.footer-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    margin-top: 46px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover { color: var(--accent); }

/* ========== 响应式 ========== */
@media (max-width: 991px) {
    .hero { min-height: 75vh; }
    .hero h1 { font-size: 2.4rem; }
    .section-padding { padding: 70px 0; }
    .main-nav { margin-top: 14px; margin-bottom: 8px; }
    .header-search { margin-left: 0; margin-top: 10px; width: 100%; max-width: 340px; }
    .search-form { width: 100%; }
    .site-navbar .navbar-collapse {
        padding-bottom: 18px;
        border-top: 1px solid rgba(255,255,255,0.08);
        margin-top: 10px;
    }
    .main-nav .nav-link { padding: 12px 18px; border-radius: 10px; }
    .score-card { margin-top: 40px; margin-left: 0; max-width: 100%; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .process-steps { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
    .process-step::after { display: none; }
    .trending-list { grid-template-columns: 1fr; }
    .news-list { grid-template-columns: 1fr; }
    .guide-wrap { padding: 40px 30px; }
    .guide-image { min-height: 220px; margin-bottom: 24px; }
}

@media (max-width: 767px) {
    .section-padding { padding: 56px 0; }
    .section-title { font-size: 1.7rem; }
    .hero { min-height: 70vh; }
    .hero h1 { font-size: 1.9rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .stats-grid { gap: 12px; }
    .stat-number { font-size: 1.7rem; }
    .guide-wrap { padding: 30px 22px; }
    .guide-content h2 { font-size: 1.5rem; }
    .accordion-button { padding: 16px 18px; font-size: 0.9rem; }
    .accordion-body { padding: 12px 18px 16px; }
}

@media (max-width: 520px) {
    .container { padding-left: 16px; padding-right: 16px; }
    .hero h1 { font-size: 1.6rem; }
    .hero-badge { font-size: 0.72rem; padding: 4px 12px; }
    .logo-text { font-size: 0.85rem; }
    .logo-mark { width: 38px; height: 38px; font-size: 1.1rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-number { font-size: 1.4rem; }
    .stat-label { font-size: 0.75rem; }
    .news-list { grid-template-columns: 1fr; }
    .news-card { padding: 20px; }
    .process-steps { grid-template-columns: 1fr; }
    .process-step::after { display: none; }
    .footer-brand { font-size: 1.05rem; }
    .btn { font-size: 0.85rem; padding: 10px 22px; }
}

/* roulang page: article */
:root {
  --brand-primary: #0a1f44;
  --brand-accent: #d4a537;
  --brand-accent-soft: #f0e0ae;
  --brand-dark: #06172e;
  --brand-light: #f4f6fb;
  --text-body: #14213d;
  --text-muted: #5f6c84;
  --border-color: #e4e9f2;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-md: 0 8px 28px rgba(10, 31, 68, .08);
  --shadow-hover: 0 16px 42px rgba(10, 31, 68, .15);
  --transition: all .3s ease;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text-body);
  background: var(--brand-light);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: var(--brand-primary); transition: var(--transition); }
a:hover { color: var(--brand-accent); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; color: var(--brand-dark); line-height: 1.35; }
.container { max-width: 1200px; }
.btn { border-radius: 50rem; padding: .65rem 1.65rem; font-weight: 600; border: 0; transition: var(--transition); }
.btn:focus { box-shadow: 0 0 0 .25rem rgba(212, 165, 55, .25); }
.btn-gold { background: linear-gradient(135deg, #e4bd4e, #c99a2c); color: #fff; box-shadow: 0 6px 18px rgba(212, 165, 55, .35); }
.btn-gold:hover, .btn-gold:active { background: linear-gradient(135deg, #d2ac40, #b58923); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(212, 165, 55, .45); }
.btn-outline-light { border: 2px solid rgba(255, 255, 255, .65); color: #fff; background: transparent; }
.btn-outline-light:hover { background: rgba(255, 255, 255, .12); color: #fff; border-color: #fff; transform: translateY(-2px); }

.site-navbar {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 14px rgba(10, 31, 68, .06);
  padding: .65rem 0;
  position: sticky;
  top: 0;
  z-index: 1050;
}
.navbar-brand { display: flex; align-items: center; gap: .6rem; margin-right: 0; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-accent), #b98c1f);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 4px 12px rgba(212, 165, 55, .35);
}
.logo-text { font-weight: 800; font-size: 1.08rem; color: var(--brand-primary); letter-spacing: .02em; white-space: nowrap; }
.main-nav { gap: .35rem; }
.main-nav .nav-link {
  color: var(--text-muted);
  font-weight: 600;
  padding: .5rem 1rem;
  border-radius: 50rem;
  position: relative;
}
.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 1rem; right: 1rem; bottom: .18rem;
  height: 2px; border-radius: 2px;
  background: var(--brand-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s ease;
}
.main-nav .nav-link:hover, .main-nav .nav-link.active { color: var(--brand-primary); }
.main-nav .nav-link:hover::after, .main-nav .nav-link.active::after { transform: scaleX(1); }
.header-search { display: flex; align-items: center; }
.search-form { display: flex; align-items: center; background: var(--brand-light); border: 1px solid var(--border-color); border-radius: 50rem; overflow: hidden; }
.search-input { border: 0; background: transparent; padding: .45rem 1rem; width: 170px; font-size: .9rem; outline: none; color: var(--text-body); }
.search-input::placeholder { color: #8a97ad; }
.search-btn { background: var(--brand-primary); color: #fff; border: 0; width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.search-btn:hover { background: var(--brand-accent); }
.custom-toggler { background: transparent; border: 1px solid var(--border-color); border-radius: 10px; padding: .4rem .55rem; display: flex; flex-direction: column; gap: 4px; }
.toggler-bar { width: 20px; height: 2px; background: var(--brand-primary); border-radius: 2px; transition: var(--transition); }

.article-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(6, 23, 46, .88), rgba(10, 31, 68, .76)), url('/assets/images/backpic/back-1.png') center/cover no-repeat;
  padding: 4.5rem 0 5.5rem;
  color: #fff;
  text-align: center;
}
.article-hero .breadcrumb { background: transparent; justify-content: center; margin-bottom: 1rem; font-size: .9rem; }
.article-hero .breadcrumb-item, .article-hero .breadcrumb-item a { color: rgba(255, 255, 255, .72); }
.article-hero .breadcrumb-item a:hover { color: var(--brand-accent); }
.article-hero .breadcrumb-item.active { color: #fff; }
.hero-title { color: #fff; font-size: clamp(1.5rem, 3vw, 2.4rem); max-width: 860px; margin: 0 auto 1.2rem; font-weight: 800; line-height: 1.4; }
.hero-meta { display: flex; justify-content: center; gap: 1.4rem; flex-wrap: wrap; font-size: .92rem; color: rgba(255, 255, 255, .8); }
.hero-meta .meta-item i { color: var(--brand-accent); margin-right: .35rem; }

.article-wrap { margin-top: -2.5rem; padding-bottom: 3.5rem; position: relative; z-index: 10; }
.article-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.2rem 2.5rem;
  border: 1px solid rgba(228, 233, 242, .7);
}
.article-content { font-size: 1.02rem; line-height: 1.9; color: #2c3a57; }
.article-content h2 { font-size: 1.5rem; margin: 2.2rem 0 1rem; padding-left: .85rem; border-left: 4px solid var(--brand-accent); }
.article-content h3 { font-size: 1.22rem; margin: 1.8rem 0 .8rem; }
.article-content p { margin-bottom: 1.2rem; }
.article-content ul, .article-content ol { margin-bottom: 1.3rem; padding-left: 1.4rem; }
.article-content li { margin-bottom: .45rem; }
.article-content blockquote { background: var(--brand-light); border-left: 4px solid var(--brand-accent); border-radius: 0 12px 12px 0; padding: 1rem 1.4rem; margin: 1.5rem 0; color: var(--text-muted); }
.article-content a { color: var(--brand-accent); text-decoration: underline; text-underline-offset: 3px; }
.article-tags { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--border-color); }
.article-tags .tag {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--brand-light); border: 1px solid var(--border-color);
  color: var(--text-muted); font-size: .84rem; padding: .28rem .8rem; border-radius: 50rem;
  transition: var(--transition);
}
.article-tags .tag:hover { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }
.article-share { display: flex; align-items: center; gap: .7rem; margin-top: 1.4rem; font-size: .9rem; color: var(--text-muted); }
.share-icon { width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--brand-light); color: var(--brand-primary); transition: var(--transition); }
.share-icon:hover { background: var(--brand-accent); color: #fff; transform: translateY(-3px); }

.side-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid rgba(228, 233, 242, .7); padding: 1.4rem 1.5rem; margin-bottom: 1.5rem; }
.side-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.side-title i { color: var(--brand-accent); }
.info-line { display: flex; justify-content: space-between; font-size: .9rem; padding: .42rem 0; border-bottom: 1px dashed var(--border-color); }
.info-line:last-child { border-bottom: 0; }
.info-line .label { color: var(--text-muted); }
.info-line .value { font-weight: 600; color: var(--brand-primary); }
.season-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; text-align: center; }
.stat-item { background: var(--brand-light); border-radius: var(--radius-md); padding: 1rem .4rem; }
.stat-value { display: block; font-size: 1.6rem; font-weight: 800; color: var(--brand-primary); line-height: 1.2; }
.stat-label { font-size: .82rem; color: var(--text-muted); }
.hot-list { list-style: none; padding: 0; margin: 0; }
.hot-list li { padding: .65rem 0; border-bottom: 1px dashed var(--border-color); font-size: .9rem; }
.hot-list li:last-child { border-bottom: 0; }
.hot-list a { color: var(--text-body); display: flex; gap: .6rem; align-items: baseline; }
.hot-list a:hover { color: var(--brand-accent); }
.hot-list .num { font-weight: 800; color: var(--brand-accent); font-size: .85rem; min-width: 22px; }
.side-cta { background: linear-gradient(135deg, var(--brand-primary), #1b3a6e); color: #fff; padding: 1.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin-bottom: 1.5rem; text-align: center; }
.side-cta .cta-icon { font-size: 2rem; color: var(--brand-accent); margin-bottom: .6rem; }
.side-cta h5 { color: #fff; margin-bottom: .6rem; }
.side-cta p { font-size: .86rem; color: rgba(255, 255, 255, .75); margin-bottom: 1rem; }

.related-section { padding: 4rem 0; }
.related-section .section-head { text-align: center; margin-bottom: 2.5rem; }
.section-eyebrow { display: inline-flex; align-items: center; gap: .45rem; background: var(--brand-accent-soft); color: #a77a12; font-size: .8rem; font-weight: 700; padding: .25rem 1rem; border-radius: 50rem; letter-spacing: .06em; }
.section-title { font-size: 1.9rem; font-weight: 800; margin: .7rem 0 .5rem; }
.related-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid rgba(228, 233, 242, .6);
  transition: var(--transition); height: 100%;
}
.related-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.related-card .cover { position: relative; overflow: hidden; aspect-ratio: 16 / 10; }
.related-card .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.related-card:hover .cover img { transform: scale(1.06); }
.related-card .cover .cat-badge { position: absolute; top: 12px; left: 12px; background: rgba(10, 31, 68, .82); color: #fff; font-size: .75rem; padding: .2rem .7rem; border-radius: 50rem; backdrop-filter: blur(6px); }
.related-card .body { padding: 1.2rem 1.3rem 1.4rem; }
.related-card .body h3 { font-size: 1rem; font-weight: 700; line-height: 1.5; margin-bottom: .6rem; }
.related-card .body h3 a { color: var(--brand-dark); }
.related-card .body h3 a:hover { color: var(--brand-accent); }
.related-card .body p { font-size: .86rem; color: var(--text-muted); margin-bottom: .8rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.related-card .body .meta { font-size: .8rem; color: #98a3ba; display: flex; gap: 1rem; }

.faq-section { padding: 4rem 0; background: #fff; }
.faq-title { font-size: 1.8rem; font-weight: 800; text-align: center; margin-bottom: 2rem; }
.faq-accordion .accordion-item { border: 0; border-bottom: 1px solid var(--border-color); background: transparent; }
.faq-accordion .accordion-item:last-child { border-bottom: 0; }
.faq-accordion .accordion-button { background: transparent; color: var(--brand-dark); font-weight: 600; font-size: 1rem; padding: 1.1rem .5rem; box-shadow: none; }
.faq-accordion .accordion-button:not(.collapsed) { color: var(--brand-accent); background: transparent; }
.faq-accordion .accordion-button::after { filter: hue-rotate(50deg); }
.faq-accordion .accordion-body { color: var(--text-muted); font-size: .94rem; padding: 0 1.5rem 1.3rem .5rem; }

.cta-section {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand-primary));
  padding: 4rem 0;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute; inset: 0;
  background: url('/assets/images/backpic/back-2.png') center/cover no-repeat;
  opacity: .14;
}
.cta-title { color: #fff; font-size: 1.9rem; font-weight: 800; margin-bottom: .8rem; position: relative; }
.cta-desc { color: rgba(255, 255, 255, .75); max-width: 640px; margin: 0 auto 1.8rem; font-size: 1rem; position: relative; }
.cta-btns { position: relative; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.site-footer {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, .72);
  padding: 4rem 0 0;
  font-size: .92rem;
}
.footer-brand { display: flex; align-items: center; gap: .6rem; color: #fff; font-size: 1.15rem; font-weight: 800; margin-bottom: 1rem; }
.footer-desc { color: rgba(255, 255, 255, .62); line-height: 1.8; margin-bottom: 1.3rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, .08);
}
.social-link:hover { background: var(--brand-accent); color: #fff; transform: translateY(-3px); }
.footer-title { color: #fff; font-size: 1rem; margin-bottom: 1.2rem; font-weight: 700; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: rgba(255, 255, 255, .6); transition: var(--transition); }
.footer-links a i { font-size: .7rem; margin-right: .3rem; color: var(--brand-accent); }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: center; gap: .6rem; margin-bottom: .75rem; color: rgba(255, 255, 255, .62); }
.footer-contact li i { color: var(--brand-accent); width: 16px; text-align: center; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 3rem;
  padding: 1.5rem 0;
  text-align: center;
  color: rgba(255, 255, 255, .42);
  font-size: .84rem;
}
.footer-bottom p { margin: 0; }

.not-found-box {
  text-align: center;
  padding: 6rem 1rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.not-found-box i { font-size: 3.5rem; color: var(--brand-accent); margin-bottom: 1rem; display: block; }
.not-found-box h1 { font-size: 1.6rem; margin-bottom: .8rem; }
.not-found-box p { color: var(--text-muted); margin-bottom: 1.6rem; }

@media (max-width: 991.98px) {
  .main-nav { gap: 0; margin-top: .8rem; }
  .header-search { margin-top: .8rem; width: 100%; }
  .search-form { width: 100%; }
  .search-input { flex: 1; width: auto; }
  .article-card { padding: 1.5rem 1.4rem; }
}
@media (max-width: 767.98px) {
  .article-hero { padding: 3.2rem 0 4.5rem; }
  .hero-meta { gap: .8rem; }
  .article-card { padding: 1.3rem 1.1rem; }
  .section-title { font-size: 1.5rem; }
  .related-section, .faq-section, .cta-section { padding: 2.8rem 0; }
  .footer-bottom p { font-size: .78rem; }
}
@media (max-width: 520px) {
  .logo-text { font-size: .95rem; }
  .search-input { width: 100%; }
  .season-stats { gap: .4rem; }
  .related-card .body h3 { font-size: .95rem; }
}

/* roulang page: category1 */
/* ===== 设计变量 ===== */
        :root {
            --primary: #0e1125;
            --primary-light: #1a1f3a;
            --accent: #c9a24b;
            --accent-light: #e8d29a;
            --accent-dark: #a8833a;
            --bg: #f4f6fb;
            --bg-deep: #0a0d1e;
            --white: #ffffff;
            --text: #1a1f36;
            --text-light: #67708a;
            --text-muted: #94a0b8;
            --border: #e7ebf3;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 22px;
            --shadow-sm: 0 4px 14px rgba(14, 17, 37, 0.06);
            --shadow-md: 0 10px 34px rgba(14, 17, 37, 0.10);
            --shadow-lg: 0 22px 60px rgba(14, 17, 37, 0.16);
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --font-base: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", Roboto, system-ui, sans-serif;
        }

        /* ===== 基础 Reset ===== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-base);
            line-height: 1.75;
            color: var(--text);
            background: var(--bg);
            overflow-x: hidden;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--accent);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        ul,
        ol {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        button,
        input {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
            background: none;
        }

        :focus-visible {
            outline: 3px solid rgba(201, 162, 75, 0.5);
            outline-offset: 2px;
        }

        .container {
            max-width: 1200px;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* ===== 导航 ===== */
        .site-navbar {
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(14, 17, 37, 0.06);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 24px rgba(14, 17, 37, 0.05);
        }

        .site-navbar .container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0;
            margin-right: 16px;
            font-weight: 700;
        }

        .logo-mark {
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 18px;
            box-shadow: 0 4px 14px rgba(14, 17, 37, 0.25);
            flex-shrink: 0;
        }

        .logo-text {
            font-size: 18px;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .main-nav {
            gap: 4px;
        }

        .main-nav .nav-link {
            color: var(--text);
            font-weight: 600;
            font-size: 15px;
            padding: 10px 18px;
            border-radius: 50px;
            transition: var(--transition);
            position: relative;
        }

        .main-nav .nav-link:hover {
            color: var(--accent-dark);
            background: rgba(201, 162, 75, 0.08);
        }

        .main-nav .nav-link.active {
            color: var(--white);
            background: var(--primary);
            box-shadow: 0 6px 18px rgba(14, 17, 37, 0.22);
        }

        .header-search {
            margin-left: auto;
        }

        .search-form {
            display: flex;
            align-items: center;
            background: var(--bg);
            border-radius: 50px;
            border: 1px solid transparent;
            padding: 4px;
            transition: var(--transition);
        }

        .search-form:focus-within {
            border-color: var(--accent);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.12);
        }

        .search-input {
            width: 160px;
            padding: 7px 14px;
            font-size: 14px;
            color: var(--text);
            background: transparent;
            border: none;
        }

        .search-input::placeholder {
            color: var(--text-muted);
        }

        .search-btn {
            width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            transition: var(--transition);
            font-size: 14px;
        }

        .search-btn:hover {
            background: var(--accent);
            color: var(--primary);
        }

        .custom-toggler {
            width: 44px;
            height: 44px;
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            background: var(--primary);
            border-radius: 10px;
            transition: var(--transition);
        }

        .custom-toggler .toggler-bar {
            width: 20px;
            height: 2px;
            background: var(--white);
            border-radius: 4px;
            transition: var(--transition);
        }

        .custom-toggler:hover {
            background: var(--accent);
        }

        /* ===== 页面 Banner ===== */
        .page-banner {
            position: relative;
            background-image: url('/assets/images/backpic/back-2.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 100px 0 110px;
            color: var(--white);
            text-align: center;
            overflow: hidden;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10, 13, 30, 0.92) 0%, rgba(14, 17, 37, 0.78) 60%, rgba(201, 162, 75, 0.35) 100%);
            z-index: 1;
        }

        .page-banner .container {
            position: relative;
            z-index: 2;
        }

        .banner-breadcrumb {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 50px;
            padding: 6px 18px;
            font-size: 13px;
            margin-bottom: 22px;
            color: rgba(255, 255, 255, 0.85);
        }

        .banner-breadcrumb a {
            color: var(--accent-light);
        }

        .banner-breadcrumb a:hover {
            color: var(--white);
        }

        .banner-breadcrumb .separator {
            color: rgba(255, 255, 255, 0.4);
        }

        .page-banner h1 {
            font-size: 44px;
            font-weight: 800;
            letter-spacing: 2px;
            margin-bottom: 16px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .page-banner .lead-text {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 680px;
            margin: 0 auto 28px;
            line-height: 1.8;
        }

        .banner-meta {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .banner-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 50px;
            padding: 8px 18px;
            font-size: 14px;
            font-weight: 500;
        }

        .banner-meta-item i {
            color: var(--accent);
        }

        /* ===== 板块标题 ===== */
        .section-padding {
            padding: 90px 0;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(201, 162, 75, 0.12);
            color: var(--accent-dark);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            border-radius: 50px;
            padding: 6px 16px;
            margin-bottom: 14px;
        }

        .section-tag i {
            font-size: 12px;
        }

        .section-title {
            font-size: 34px;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: 1px;
            line-height: 1.3;
            margin-bottom: 16px;
        }

        .section-desc {
            font-size: 16px;
            color: var(--text-light);
            max-width: 640px;
            line-height: 1.8;
        }

        .text-center .section-desc {
            margin-left: auto;
            margin-right: auto;
        }

        .text-center .section-title {
            text-align: center;
        }

        /* ===== 分类简介 ===== */
        .category-intro {
            background: var(--white);
            border-bottom: 1px solid var(--border);
        }

        .intro-card {
            background: linear-gradient(145deg, rgba(14, 17, 37, 0.03), rgba(201, 162, 75, 0.03));
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 26px;
            height: 100%;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .intro-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--accent);
            border-radius: 4px;
            transition: var(--transition);
        }

        .intro-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-6px);
            border-color: rgba(201, 162, 75, 0.4);
        }

        .intro-card:hover::before {
            height: 100%;
        }

        .intro-icon {
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--accent);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 18px;
            box-shadow: 0 6px 18px rgba(14, 17, 37, 0.18);
        }

        .intro-card h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .intro-card p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* ===== 攻略卡片 ===== */
        .guide-section {
            background: var(--bg);
        }

        .guide-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 32px 28px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .guide-card::after {
            content: '';
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(201, 162, 75, 0.10) 0%, transparent 70%);
            border-radius: 50%;
            transition: var(--transition);
        }

        .guide-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(201, 162, 75, 0.3);
        }

        .guide-card:hover::after {
            transform: scale(1.6);
        }

        .guide-card .card-badge {
            display: inline-block;
            background: rgba(14, 17, 37, 0.05);
            color: var(--primary);
            font-size: 12px;
            font-weight: 700;
            border-radius: 50px;
            padding: 4px 12px;
            margin-bottom: 18px;
            letter-spacing: 1px;
        }

        .guide-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .guide-card p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.75;
            margin-bottom: 20px;
        }

        .guide-card .card-list {
            margin-bottom: 24px;
        }

        .guide-card .card-list li {
            font-size: 14px;
            color: var(--text);
            display: flex;
            align-items: flex-start;
            gap: 8px;
            padding: 6px 0;
        }

        .guide-card .card-list li i {
            color: var(--accent);
            font-size: 12px;
            margin-top: 5px;
        }

        .card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent-dark);
            font-weight: 700;
            font-size: 15px;
        }

        .card-link i {
            transition: transform 0.3s ease;
        }

        .card-link:hover i {
            transform: translateX(4px);
        }

        /* ===== 赛事时间线 ===== */
        .timeline-section {
            background: var(--primary);
            color: var(--white);
            position: relative;
            overflow: hidden;
            background-image: url('/assets/images/backpic/back-1.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .timeline-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10, 13, 30, 0.95) 0%, rgba(14, 17, 37, 0.88) 50%, rgba(201, 162, 75, 0.25) 100%);
            z-index: 1;
        }

        .timeline-section .container {
            position: relative;
            z-index: 2;
        }

        .timeline-section .section-title {
            color: var(--white);
        }

        .timeline-section .section-desc {
            color: rgba(255, 255, 255, 0.7);
        }

        .timeline-section .section-tag {
            background: rgba(201, 162, 75, 0.2);
            color: var(--accent-light);
        }

        .timeline {
            position: relative;
            padding: 20px 0;
            max-width: 760px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 28px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, var(--accent), rgba(201, 162, 75, 0.1), var(--accent));
            border-radius: 4px;
        }

        .timeline-item {
            position: relative;
            padding-left: 72px;
            padding-bottom: 42px;
        }

        .timeline-item:last-child {
            padding-bottom: 0;
        }

        .timeline-dot {
            position: absolute;
            left: 17px;
            top: 6px;
            width: 24px;
            height: 24px;
            background: var(--primary);
            border: 3px solid var(--accent);
            border-radius: 50%;
            z-index: 2;
            box-shadow: 0 0 0 5px rgba(201, 162, 75, 0.2);
        }

        .timeline-content {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-md);
            padding: 22px 26px;
            transition: var(--transition);
        }

        .timeline-content:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(201, 162, 75, 0.4);
            transform: translateX(4px);
        }

        .timeline-phase {
            display: inline-block;
            background: var(--accent);
            color: var(--primary);
            font-size: 12px;
            font-weight: 800;
            border-radius: 50px;
            padding: 3px 12px;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .timeline-content h3 {
            font-size: 19px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 8px;
        }

        .timeline-content p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0;
            line-height: 1.7;
        }

        /* ===== 数据统计 ===== */
        .stats-section {
            background: var(--white);
        }

        .stats-card {
            background: linear-gradient(145deg, rgba(14, 17, 37, 0.02), rgba(201, 162, 75, 0.04));
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 30px 20px;
            text-align: center;
            transition: var(--transition);
            height: 100%;
        }

        .stats-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
            border-color: rgba(201, 162, 75, 0.4);
        }

        .stats-number {
            font-size: 42px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 6px;
        }

        .stats-number span {
            color: var(--accent);
        }

        .stats-label {
            font-size: 14px;
            color: var(--text-light);
            font-weight: 500;
        }

        /* ===== 图文区块 ===== */
        .featured-section {
            background: var(--bg);
        }

        .featured-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }

        .featured-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-6px);
        }

        .featured-image {
            position: relative;
            overflow: hidden;
            height: 300px;
        }

        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .featured-card:hover .featured-image img {
            transform: scale(1.06);
        }

        .featured-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 60%, rgba(14, 17, 37, 0.35) 100%);
        }

        .featured-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 2;
            background: var(--accent);
            color: var(--primary);
            font-size: 13px;
            font-weight: 800;
            border-radius: 50px;
            padding: 6px 16px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
            letter-spacing: 1px;
        }

        .featured-body {
            padding: 34px 34px 30px;
        }

        .featured-body h3 {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 16px;
            line-height: 1.4;
        }

        .featured-body p {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .featured-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 24px;
        }

        .featured-tags .badge {
            background: rgba(14, 17, 37, 0.06);
            color: var(--primary);
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 13px;
        }

        .btn-custom {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--primary);
            color: var(--white);
            font-weight: 700;
            font-size: 15px;
            padding: 12px 28px;
            border-radius: 50px;
            border: 2px solid transparent;
            transition: var(--transition);
            box-shadow: 0 6px 20px rgba(14, 17, 37, 0.2);
        }

        .btn-custom:hover {
            background: var(--accent);
            color: var(--primary);
            box-shadow: 0 8px 26px rgba(201, 162, 75, 0.35);
            transform: translateY(-2px);
        }

        .btn-outline-custom {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--primary);
            font-weight: 700;
            font-size: 15px;
            padding: 12px 28px;
            border-radius: 50px;
            border: 2px solid var(--primary);
            transition: var(--transition);
        }

        .btn-outline-custom:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* ===== FAQ ===== */
        .faq-section {
            background: var(--white);
        }

        .faq-wrap {
            max-width: 820px;
            margin: 0 auto;
        }

        .faq-wrap .accordion-item {
            border: 1px solid var(--border) !important;
            border-radius: var(--radius-md) !important;
            margin-bottom: 16px;
            overflow: hidden;
            background: var(--white);
            transition: var(--transition);
        }

        .faq-wrap .accordion-item:has(.accordion-button:not(.collapsed)) {
            border-color: rgba(201, 162, 75, 0.5) !important;
            box-shadow: var(--shadow-sm);
        }

        .faq-wrap .accordion-button {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
            padding: 22px 26px;
            background: var(--white);
            transition: var(--transition);
        }

        .faq-wrap .accordion-button:not(.collapsed) {
            background: rgba(201, 162, 75, 0.06);
            color: var(--primary);
        }

        .faq-wrap .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(201, 162, 75, 0.4);
        }

        .faq-wrap .accordion-button::after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23c9a24b' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
            background-size: contain;
            transition: var(--transition);
        }

        .faq-wrap .accordion-body {
            padding: 0 26px 24px;
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.8;
        }

        /* ===== CTA ===== */
        .cta-section {
            position: relative;
            background-image: url('/assets/images/backpic/back-3.png');
            background-size: cover;
            background-position: center;
            padding: 90px 0;
            text-align: center;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(10, 13, 30, 0.92) 0%, rgba(14, 17, 37, 0.85) 50%, rgba(201, 162, 75, 0.30) 100%);
            z-index: 1;
        }

        .cta-section .container {
            position: relative;
            z-index: 2;
        }

        .cta-section .section-title {
            color: var(--white);
        }

        .cta-section .section-desc {
            color: rgba(255, 255, 255, 0.8);
            margin-left: auto;
            margin-right: auto;
        }

        .cta-section .section-tag {
            background: rgba(201, 162, 75, 0.2);
            color: var(--accent-light);
        }

        .cta-actions {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 32px;
        }

        .cta-actions .btn-custom {
            background: var(--accent);
            color: var(--primary);
        }

        .cta-actions .btn-custom:hover {
            background: var(--white);
            color: var(--primary);
        }

        .cta-actions .btn-outline-custom {
            border-color: rgba(255, 255, 255, 0.7);
            color: var(--white);
        }

        .cta-actions .btn-outline-custom:hover {
            background: var(--white);
            color: var(--primary);
            border-color: var(--white);
        }

        /* ===== 页脚 ===== */
        .site-footer {
            background: var(--bg-deep);
            padding: 70px 0 0;
            color: rgba(255, 255, 255, 0.7);
        }

        .site-footer .footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
            color: var(--white);
            font-size: 18px;
            font-weight: 800;
            letter-spacing: 0.5px;
        }

        .site-footer .logo-mark {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(201, 162, 75, 0.3);
        }

        .footer-desc {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.55);
            max-width: 360px;
        }

        .social-links {
            margin-bottom: 12px;
        }

        .social-link {
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.07);
            color: rgba(255, 255, 255, 0.75);
            border-radius: 10px;
            font-size: 15px;
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .social-link:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(201, 162, 75, 0.3);
        }

        .footer-title {
            color: var(--white);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 32px;
            height: 3px;
            background: var(--accent);
            border-radius: 4px;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }

        .footer-links a i {
            font-size: 10px;
            color: var(--accent);
            transition: transform 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--white);
            transform: translateX(4px);
        }

        .footer-links a:hover i {
            transform: translateX(2px);
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 14px;
        }

        .footer-contact li i {
            color: var(--accent);
            margin-top: 4px;
            font-size: 13px;
            width: 18px;
            text-align: center;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 24px 0;
            margin-top: 50px;
            text-align: center;
        }

        .footer-bottom p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 0;
            letter-spacing: 0.3px;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 1024px) {
            .page-banner {
                padding: 80px 0 90px;
            }

            .page-banner h1 {
                font-size: 36px;
            }

            .section-padding {
                padding: 70px 0;
            }

            .section-title {
                font-size: 30px;
            }

            .logo-text {
                font-size: 16px;
            }

            .search-input {
                width: 120px;
            }
        }

        @media (max-width: 768px) {
            .navbar-brand {
                margin-right: 0;
            }

            .custom-toggler {
                display: flex;
                margin-left: auto;
            }

            .navbar-collapse {
                background: var(--white);
                margin-top: 14px;
                border-radius: var(--radius-md);
                padding: 18px;
                box-shadow: var(--shadow-md);
                border: 1px solid var(--border);
            }

            .main-nav {
                text-align: center;
                margin-bottom: 16px;
            }

            .main-nav .nav-link {
                padding: 12px 20px;
                text-align: center;
            }

            .header-search {
                width: 100%;
                margin-left: 0;
            }

            .search-form {
                width: 100%;
            }

            .search-input {
                flex: 1;
                width: auto;
            }

            .page-banner {
                padding: 60px 0 70px;
            }

            .page-banner h1 {
                font-size: 30px;
            }

            .page-banner .lead-text {
                font-size: 15px;
                padding: 0 10px;
            }

            .section-padding {
                padding: 55px 0;
            }

            .section-title {
                font-size: 26px;
            }

            .section-desc {
                font-size: 15px;
            }

            .timeline::before {
                left: 19px;
            }

            .timeline-item {
                padding-left: 56px;
            }

            .timeline-dot {
                left: 9px;
                width: 22px;
                height: 22px;
            }

            .timeline-content {
                padding: 18px;
            }

            .stats-number {
                font-size: 32px;
            }

            .featured-image {
                height: 220px;
            }

            .featured-body {
                padding: 24px 20px;
            }

            .featured-body h3 {
                font-size: 20px;
            }

            .cta-section {
                padding: 60px 0;
            }

            .footer-bottom p {
                font-size: 13px;
                line-height: 1.6;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding-left: 18px;
                padding-right: 18px;
            }

            .logo-text {
                font-size: 14px;
                max-width: 200px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

            .page-banner h1 {
                font-size: 26px;
                letter-spacing: 1px;
            }

            .page-banner .lead-text {
                font-size: 14px;
                line-height: 1.7;
            }

            .banner-meta-item {
                font-size: 12px;
                padding: 6px 12px;
            }

            .banner-meta {
                gap: 10px;
            }

            .section-title {
                font-size: 22px;
            }

            .section-desc {
                font-size: 14px;
            }

            .intro-card {
                padding: 20px;
            }

            .guide-card {
                padding: 24px 18px;
            }

            .stats-card {
                padding: 20px 14px;
            }

            .stats-number {
                font-size: 28px;
            }

            .cta-actions {
                flex-direction: column;
                align-items: center;
            }

            .cta-actions .btn-custom,
            .cta-actions .btn-outline-custom {
                width: 100%;
                justify-content: center;
            }

            .footer-title {
                margin-top: 12px;
            }

            .social-links .social-link {
                width: 34px;
                height: 34px;
                font-size: 14px;
            }
        }
