/* roulang page: index */
:root {
            --primary: #0a1e3c;
            --primary-light: #16345c;
            --accent: #ff6b35;
            --accent-hover: #e55727;
            --gold: #f5a623;
            --bg: #f4f6fb;
            --white: #ffffff;
            --text: #1a2332;
            --text-light: #6b7a90;
            --border: #e6ebf2;
            --radius: 14px;
            --radius-sm: 10px;
            --shadow: 0 4px 24px rgba(10, 30, 60, 0.08);
            --shadow-lg: 0 12px 48px rgba(10, 30, 60, 0.14);
            --transition: all 0.3s ease;
            --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
        }
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.75;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            display: block;
        }
        button, input, select, textarea {
            font-family: inherit;
            font-size: inherit;
            outline: none;
        }
        .grid-container {
            max-width: 1200px;
        }
        .section {
            padding: 90px 0;
            position: relative;
        }
        .section-head {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 56px;
        }
        .section-tag {
            display: inline-block;
            background: rgba(255, 107, 53, 0.12);
            color: var(--accent);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            padding: 6px 20px;
            border-radius: 40px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }
        .section-head h2 {
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 14px;
            letter-spacing: -0.5px;
            color: var(--text);
        }
        .section-head p {
            font-size: 1.06rem;
            color: var(--text-light);
            line-height: 1.8;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 13px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            line-height: 1.2;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .btn i {
            font-size: 14px;
        }
        .btn-accent {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 6px 24px rgba(255, 107, 53, 0.35);
        }
        .btn-accent:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
            color: #fff;
        }
        .btn-outline {
            background: transparent;
            color: #fff;
            border-color: rgba(255, 255, 255, 0.6);
        }
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
            color: #fff;
            transform: translateY(-2px);
        }
        .btn-primary {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 6px 20px rgba(10, 30, 60, 0.25);
        }
        .btn-primary:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            color: #fff;
        }
        .btn-lg {
            padding: 16px 38px;
            font-size: 16px;
        }
        .btn:focus-visible {
            outline: 3px solid rgba(255, 107, 53, 0.5);
            outline-offset: 2px;
        }
        .site-header {
            background: var(--primary);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(10, 30, 60, 0.25);
        }
        .site-header .grid-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .logo-icon {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, var(--accent), #ff8c5a);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 900;
            color: #fff;
            box-shadow: 0 4px 14px rgba(255, 107, 53, 0.4);
        }
        .logo-text {
            color: #fff;
            font-size: 20px;
            font-weight: 800;
            letter-spacing: 0.5px;
            line-height: 1.2;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .nav-link {
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            font-weight: 500;
            padding: 8px 18px;
            border-radius: 40px;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-link.active {
            color: #fff;
            background: rgba(255, 107, 53, 0.9);
            box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35);
        }
        .header-cta {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .btn-nav {
            padding: 9px 24px;
            font-size: 14px;
        }
        .menu-toggle {
            display: none;
            background: transparent;
            border: none;
            cursor: pointer;
            width: 44px;
            height: 44px;
            position: relative;
            z-index: 1001;
            flex-shrink: 0;
        }
        .menu-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: #fff;
            margin: 5px auto;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        .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);
        }
        .hero {
            position: relative;
            padding: 120px 0 100px;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            z-index: 0;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10, 30, 60, 0.92) 0%, rgba(10, 30, 60, 0.78) 40%, rgba(22, 52, 92, 0.65) 100%);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
            max-width: 860px;
            margin: 0 auto;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            padding: 8px 22px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 28px;
        }
        .hero-badge .dot {
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        .hero-content h1 {
            font-size: 3.4rem;
            font-weight: 900;
            line-height: 1.25;
            margin-bottom: 18px;
            letter-spacing: -1px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .hero-content .hero-desc {
            font-size: 1.2rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            max-width: 640px;
            margin: 0 auto 36px;
        }
        .hero-actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }
        .hero-search {
            display: flex;
            max-width: 520px;
            margin: 0 auto 40px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 50px;
            padding: 6px 6px 6px 22px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        .hero-search:focus-within {
            background: rgba(255, 255, 255, 0.18);
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
        }
        .hero-search input {
            flex: 1;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 15px;
            padding: 10px 0;
        }
        .hero-search input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        .hero-search button {
            background: var(--accent);
            border: none;
            border-radius: 50px;
            color: #fff;
            width: 48px;
            height: 48px;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        .hero-search button:hover {
            background: var(--accent-hover);
            transform: scale(1.05);
        }
        .hero-meta {
            display: flex;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 60px;
            padding: 16px 36px;
            max-width: 700px;
            margin: 0 auto;
            backdrop-filter: blur(8px);
        }
        .hero-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
        }
        .hero-meta i {
            color: var(--accent);
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }
        .service-section {
            background: var(--white);
        }
        .services-grid {
            row-gap: 24px;
        }
        .service-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 36px 28px;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 2px 12px rgba(10, 30, 60, 0.04);
        }
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }
        .service-icon {
            width: 72px;
            height: 72px;
            margin: 0 auto 22px;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(245, 166, 35, 0.15));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--accent);
            transition: all 0.3s ease;
        }
        .service-card:hover .service-icon {
            background: linear-gradient(135deg, var(--accent), #ff8c5a);
            color: #fff;
            box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
            transform: scale(1.05);
        }
        .service-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .service-card p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.7;
        }
        .schedule-section {
            background: var(--bg);
        }
        .schedule-wrap {
            max-width: 900px;
            margin: 0 auto;
        }
        .schedule-ticket {
            display: flex;
            align-items: center;
            background: var(--white);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            box-shadow: 0 2px 16px rgba(10, 30, 60, 0.04);
            padding: 20px 28px;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .schedule-ticket::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--accent), var(--gold));
        }
        .schedule-ticket:hover {
            transform: translateX(6px);
            box-shadow: var(--shadow);
        }
        .ticket-date {
            background: var(--primary);
            color: #fff;
            border-radius: var(--radius-sm);
            text-align: center;
            padding: 10px 18px;
            min-width: 72px;
            flex-shrink: 0;
            margin-right: 22px;
        }
        .ticket-month {
            display: block;
            font-size: 13px;
            font-weight: 500;
            opacity: 0.8;
            line-height: 1.2;
        }
        .ticket-day {
            display: block;
            font-size: 28px;
            font-weight: 800;
            line-height: 1.2;
        }
        .ticket-info {
            flex: 1;
        }
        .ticket-cat {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            color: var(--accent);
            background: rgba(255, 107, 53, 0.1);
            padding: 3px 12px;
            border-radius: 20px;
            margin-bottom: 5px;
        }
        .ticket-info h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .ticket-info p {
            color: var(--text-light);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .ticket-side {
            text-align: right;
            flex-shrink: 0;
            margin-left: 16px;
        }
        .ticket-status {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            padding: 5px 16px;
            border-radius: 30px;
            background: rgba(245, 166, 35, 0.12);
            color: var(--gold);
            margin-bottom: 6px;
        }
        .ticket-status.hot {
            background: rgba(255, 107, 53, 0.12);
            color: var(--accent);
        }
        .ticket-price {
            display: block;
            font-size: 20px;
            font-weight: 800;
            color: var(--text);
        }
        .category-section {
            background: var(--white);
        }
        .category-grid {
            row-gap: 24px;
        }
        .category-card {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            display: block;
            height: 320px;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
        }
        .category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .category-card:hover img {
            transform: scale(1.06);
        }
        .category-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 30, 60, 0.3) 0%, rgba(10, 30, 60, 0.75) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 32px;
            color: #fff;
            transition: all 0.3s ease;
        }
        .category-card:hover .category-overlay {
            background: linear-gradient(180deg, rgba(10, 30, 60, 0.4) 0%, rgba(255, 107, 53, 0.4) 100%);
        }
        .category-overlay h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 8px;
        }
        .category-overlay p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.95rem;
            margin-bottom: 16px;
        }
        .category-link {
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #fff;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 8px 20px;
            border-radius: 30px;
            width: fit-content;
            transition: all 0.3s ease;
            backdrop-filter: blur(8px);
        }
        .category-card:hover .category-link {
            background: var(--accent);
            border-color: var(--accent);
        }
        .posts-section {
            background: var(--bg);
        }
        .posts-grid {
            row-gap: 24px;
        }
        .post-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 28px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .post-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--gold));
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: left;
        }
        .post-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow);
        }
        .post-card:hover::after {
            transform: scaleX(1);
        }
        .post-card-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 14px;
        }
        .post-category {
            font-size: 12px;
            font-weight: 600;
            color: var(--accent);
            background: rgba(255, 107, 53, 0.1);
            padding: 4px 14px;
            border-radius: 20px;
        }
        .post-date {
            font-size: 12px;
            color: var(--text-light);
        }
        .post-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            line-height: 1.45;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .post-card p {
            color: var(--text-light);
            font-size: 0.92rem;
            line-height: 1.7;
            margin-bottom: 16px;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .post-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
        }
        .post-card:hover .post-link {
            color: var(--accent);
            gap: 10px;
        }
        .empty-text {
            text-align: center;
            padding: 60px 20px;
            background: var(--white);
            border-radius: var(--radius);
            color: var(--text-light);
            font-size: 1.05rem;
        }
        .stats-section {
            background: var(--primary);
            position: relative;
            overflow: hidden;
        }
        .stats-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 107, 53, 0.08);
        }
        .stats-section::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -40px;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: rgba(245, 166, 35, 0.06);
        }
        .stats-grid {
            position: relative;
            z-index: 1;
            text-align: center;
            color: #fff;
            row-gap: 30px;
        }
        .stat-item {
            padding: 20px;
        }
        .stat-number {
            display: block;
            font-size: 3rem;
            font-weight: 900;
            line-height: 1.2;
            color: var(--accent);
            margin-bottom: 8px;
            letter-spacing: -1px;
            text-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
        }
        .stat-label {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.8);
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        .steps-section {
            background: var(--white);
        }
        .steps-timeline {
            display: flex;
            justify-content: center;
            gap: 32px;
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }
        .steps-timeline::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 60px;
            right: 60px;
            height: 2px;
            background: var(--border);
            z-index: 0;
        }
        .step-item {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 0 16px;
        }
        .step-num {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            background: var(--white);
            border: 3px solid var(--accent);
            border-radius: 50%;
            font-size: 24px;
            font-weight: 800;
            color: var(--accent);
            box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
            background: var(--white);
        }
        .step-item h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .step-item p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.7;
            max-width: 260px;
            margin: 0 auto;
        }
        .faq-section {
            background: var(--bg);
        }
        .faq-list {
            max-width: 820px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px 32px;
            margin-bottom: 16px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }
        .faq-item:hover {
            border-color: rgba(255, 107, 53, 0.4);
            box-shadow: var(--shadow);
        }
        .faq-item h3 {
            font-size: 1.05rem;
            font-weight: 700;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }
        .faq-item h3::after {
            content: '+';
            font-size: 26px;
            font-weight: 400;
            color: var(--accent);
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        .faq-item.open h3::after {
            transform: rotate(45deg);
        }
        .faq-item .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.8;
            padding-top: 0;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding-top: 14px;
        }
        .cta-section {
            background: url('/assets/images/backpic/back-2.png') center center / cover no-repeat;
            position: relative;
            padding: 100px 0;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10, 30, 60, 0.9), rgba(255, 107, 53, 0.6));
        }
        .cta-box {
            position: relative;
            z-index: 1;
            text-align: center;
            color: #fff;
            max-width: 640px;
            margin: 0 auto;
        }
        .cta-box h2 {
            font-size: 2.6rem;
            font-weight: 900;
            margin-bottom: 16px;
            line-height: 1.3;
        }
        .cta-box p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 32px;
        }
        .site-footer {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.7);
            padding: 64px 0 0;
            position: relative;
        }
        .site-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
        }
        .footer-grid {
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .footer-brand .footer-logo {
            display: block;
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 14px;
        }
        .footer-brand p {
            font-size: 0.95rem;
            line-height: 1.8;
        }
        .site-footer h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 6px;
        }
        .footer-contact p {
            font-size: 0.95rem;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-contact i {
            color: var(--accent);
            width: 18px;
            text-align: center;
        }
        .footer-bottom {
            text-align: center;
            padding: 22px 0;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.45);
        }
        @media (max-width: 1024px) {
            .section {
                padding: 70px 0;
            }
            .section-head h2 {
                font-size: 2rem;
            }
            .hero-content h1 {
                font-size: 2.6rem;
            }
            .steps-timeline {
                gap: 20px;
            }
            .steps-timeline::before {
                left: 40px;
                right: 40px;
            }
        }
        @media (max-width: 820px) {
            .site-header .grid-container {
                height: 64px;
                flex-wrap: wrap;
                padding: 0 16px;
            }
            .main-nav {
                display: none;
                position: absolute;
                top: 64px;
                left: 0;
                right: 0;
                background: var(--primary);
                flex-direction: column;
                align-items: stretch;
                padding: 16px;
                box-shadow: 0 12px 40px rgba(10, 30, 60, 0.4);
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                gap: 4px;
            }
            .main-nav.mobile-open {
                display: flex;
            }
            .nav-link {
                padding: 14px 20px;
                border-radius: 10px;
            }
            .header-cta {
                display: none;
            }
            .menu-toggle {
                display: block;
            }
            .hero {
                padding: 80px 0 60px;
            }
            .hero-content h1 {
                font-size: 2rem;
            }
            .hero-content .hero-desc {
                font-size: 1.05rem;
            }
            .hero-meta {
                flex-direction: column;
                gap: 12px;
                border-radius: 20px;
                padding: 20px;
            }
            .schedule-ticket {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }
            .ticket-date {
                margin-right: 0;
                margin-bottom: 14px;
            }
            .ticket-side {
                margin-left: 0;
                margin-top: 12px;
                text-align: left;
                display: flex;
                align-items: center;
                gap: 12px;
            }
            .steps-timeline {
                flex-direction: column;
                align-items: center;
                gap: 32px;
            }
            .steps-timeline::before {
                display: none;
            }
            .step-item {
                max-width: 320px;
            }
            .cta-box h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 560px) {
            .section {
                padding: 55px 0;
            }
            .section-head h2 {
                font-size: 1.6rem;
            }
            .hero-content h1 {
                font-size: 1.7rem;
            }
            .hero-actions {
                flex-direction: column;
                align-items: center;
            }
            .btn-lg {
                width: 100%;
                max-width: 260px;
            }
            .hero-search {
                flex-direction: row;
                padding: 4px 4px 4px 16px;
            }
            .hero-search input {
                font-size: 14px;
            }
            .stats-grid {
                row-gap: 20px;
            }
            .stat-number {
                font-size: 2.2rem;
            }
            .schedule-ticket {
                padding: 16px 20px;
            }
            .category-card {
                height: 240px;
            }
            .category-overlay {
                padding: 20px;
            }
            .post-card {
                padding: 22px;
            }
            .faq-item {
                padding: 20px;
            }
            .cta-section {
                padding: 70px 0;
            }
            .cta-box h2 {
                font-size: 1.6rem;
            }
            .footer-grid {
                row-gap: 30px;
            }
        }

/* roulang page: article */
:root {
    --primary: #0D5C4A;
    --primary-dark: #083D31;
    --primary-light: #12705C;
    --accent: #FF6B35;
    --accent-light: #FF8C5F;
    --bg-light: #F5F7F6;
    --bg-white: #FFFFFF;
    --text-main: #1B2A35;
    --text-muted: #5C6F7A;
    --border-color: #E2E9E6;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 2px 10px rgba(13, 92, 74, 0.06);
    --shadow-md: 0 8px 28px rgba(13, 92, 74, 0.10);
    --shadow-lg: 0 18px 50px rgba(13, 92, 74, 0.16);
    --transition: all 0.3s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", sans-serif;
    background: var(--bg-light);
    color: var(--text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
button { border: none; cursor: pointer; font-family: inherit; background: none; }
input, textarea { font-family: inherit; }
ul, ol { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.grid-container { max-width: 1200px; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.position-relative { position: relative; z-index: 2; }

.site-header {
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
}
.site-logo .logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(13, 92, 74, 0.25);
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-link {
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
}
.nav-link:hover {
    background: rgba(13, 92, 74, 0.08);
    color: var(--primary);
}
.nav-link.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(13, 92, 74, 0.30);
}
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(13, 92, 74, 0.08);
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--primary);
}
.menu-toggle .close-icon { display: none; }
.menu-toggle.active .menu-icon { display: none; }
.menu-toggle.active .close-icon { display: inline; }

.article-banner {
    position: relative;
    padding: 72px 0 56px;
    color: #fff;
    overflow: hidden;
}
.article-banner .banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.article-banner .banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,61,49,0.92) 0%, rgba(13,92,74,0.78) 50%, rgba(13,92,74,0.45) 100%);
    z-index: 1;
}
.article-banner-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.breadcrumb a {
    color: rgba(255,255,255,0.85);
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb i {
    font-size: 0.75rem;
    opacity: 0.6;
}
.breadcrumb .current {
    color: var(--accent-light);
    font-weight: 500;
}
.article-badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 30px;
    background: var(--accent);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
    box-shadow: 0 4px 14px rgba(255,107,53,0.35);
}
.article-banner-content h1 {
    font-size: clamp(1.75rem, 3.2vw, 2.625rem);
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
    word-break: break-word;
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.925rem;
}
.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.85);
}
.meta-item i { color: var(--accent-light); }

.article-content-section {
    padding: 56px 0 40px;
}
.article-main-col { margin-bottom: 32px; }
.article-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 32px 36px;
    border: 1px solid rgba(255,255,255,0.6);
}
.article-body {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: #33414D;
}
.article-body p { margin-bottom: 1.4em; }
.article-body h2 {
    font-size: 1.625rem;
    margin: 2em 0 0.8em;
    padding-left: 16px;
    border-left: 4px solid var(--accent);
    color: var(--primary-dark);
    line-height: 1.4;
}
.article-body h3 {
    font-size: 1.375rem;
    margin: 1.8em 0 0.6em;
    color: var(--primary-dark);
}
.article-body ul, .article-body ol {
    margin: 1.2em 0;
    padding-left: 1.6em;
}
.article-body ul li {
    list-style: disc;
    margin-bottom: 0.5em;
}
.article-body ol li {
    list-style: decimal;
    margin-bottom: 0.5em;
}
.article-body img {
    border-radius: var(--radius-md);
    margin: 1.5em 0;
    box-shadow: var(--shadow-md);
    max-width: 100%;
    height: auto;
}
.article-body blockquote {
    border-left: 4px solid var(--primary);
    background: #F0F6F4;
    padding: 1.2em 1.5em;
    margin: 1.5em 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 1.05em;
    color: var(--primary-dark);
}
.article-body table { width: 100%; border-collapse: collapse; margin: 1.5em 0; }
.article-body th { background: var(--primary); color: #fff; padding: 10px 14px; }
.article-body td { padding: 10px 14px; border-bottom: 1px solid var(--border-color); }
.article-body tr:nth-child(even) { background: #F8FAF9; }

.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}
.tags-label {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.9375rem;
}
.tag {
    display: inline-block;
    padding: 5px 14px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-size: 0.8125rem;
    color: var(--primary);
    transition: var(--transition);
}
.tag:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    font-size: 0.9375rem;
    color: var(--text-muted);
}
.share-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: #fff;
    transition: var(--transition);
}
.share-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.share-btn.wechat { background: #2BAE85; }
.share-btn.weibo { background: #E6162D; }
.share-btn.qq { background: #12B7F5; }
.share-btn.link { background: var(--text-muted); }

.not-found {
    padding: 48px 24px;
    text-align: center;
}
.not-found-icon {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 20px;
}
.not-found h2 {
    font-size: 1.75rem;
    color: var(--text-main);
    margin-bottom: 12px;
}
.not-found p { color: var(--text-muted); margin-bottom: 24px; }
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(13, 92, 74, 0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(13, 92, 74, 0.36);
}
.btn-light {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.sidebar { position: sticky; top: 100px; }
.sidebar-widget {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid rgba(226,233,230,0.7);
}
.widget-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.widget-title i { color: var(--accent); }
.recent-list { display: flex; flex-direction: column; gap: 14px; }
.recent-item {
    padding: 14px;
    border-radius: var(--radius-md);
    background: var(--bg-light);
    transition: var(--transition);
    display: block;
}
.recent-item:hover {
    background: #EAF3F0;
    transform: translateX(4px);
}
.recent-title {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 6px;
    line-height: 1.5;
}
.recent-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    color: var(--text-muted);
}
.recent-category {
    background: rgba(13,92,74,0.1);
    color: var(--primary);
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 500;
}
.no-data { color: var(--text-muted); font-size: 0.9375rem; }
.category-list { display: flex; flex-direction: column; gap: 12px; }
.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: var(--bg-light);
    transition: var(--transition);
    border: 1px solid transparent;
}
.category-item:hover {
    background: #fff;
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}
.category-item i:first-child {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(13,92,74,0.12);
    color: var(--primary);
    font-size: 1rem;
}
.category-item span { flex: 1; font-weight: 600; color: var(--text-main); }
.category-arrow { color: var(--text-muted); font-size: 0.875rem; }

.related-section {
    padding: 48px 0 56px;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
}
.section-head {
    text-align: center;
    margin-bottom: 36px;
}
.section-head h2 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
}
.section-head p { color: var(--text-muted); font-size: 1rem; }
.related-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: block;
    height: 100%;
    border: 1px solid var(--border-color);
}
.related-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.related-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.related-card:hover .related-card-image img { transform: scale(1.06); }
.related-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}
.related-card-body { padding: 20px 22px 22px; }
.related-card-body h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.related-card-body p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.related-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
}
.related-card-meta i { color: var(--primary); }
.read-more { color: var(--primary); font-weight: 600; }

.article-cta {
    padding: 48px 0;
}
.cta-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -30%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.cta-box::after {
    content: '';
    position: absolute;
    bottom: -60%;
    left: -20%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,0.035);
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.cta-content p {
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 28px;
    font-size: 1.0625rem;
}

.site-footer {
    background: #0A2E29;
    color: rgba(255,255,255,0.85);
    padding: 56px 0 0;
}
.footer-grid { padding-bottom: 40px; }
.footer-brand { margin-bottom: 24px; }
.footer-logo {
    display: block;
    font-size: 1.375rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    margin-bottom: 0;
}
.site-footer h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--accent-light); padding-left: 4px; }
.footer-contact p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-contact i { color: var(--accent-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}
.footer-bottom p { margin-bottom: 0; }

@media (max-width: 1024px) {
    .sidebar { position: static; margin-top: 24px; }
    .article-card { padding: 24px 28px; }
    .cta-box { padding: 40px 28px; }
}
@media (max-width: 768px) {
    .site-header { padding: 12px 0; }
    .header-inner { flex-wrap: wrap; }
    .main-nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 16px 0 4px;
        gap: 8px;
    }
    .main-nav.open { display: flex; }
    .nav-link { width: 100%; padding: 12px 16px; border-radius: 12px; }
    .menu-toggle { display: inline-flex; }
    .article-banner { padding: 48px 0 36px; }
    .article-banner-content h1 { font-size: 1.5rem; }
    .article-meta { gap: 10px 16px; }
    .article-card { padding: 20px 16px; }
    .article-body { font-size: 1rem; }
    .related-card { margin-bottom: 20px; }
    .cta-box { padding: 30px 20px; }
    .cta-content h2 { font-size: 1.375rem; }
    .site-footer { padding-top: 40px; }
    .footer-grid .cell { margin-bottom: 28px; }
}
@media (max-width: 520px) {
    .grid-container { padding: 0 16px; }
    .site-logo { font-size: 1.125rem; gap: 8px; }
    .site-logo .logo-icon { width: 32px; height: 32px; font-size: 0.8rem; }
    .article-banner { padding: 40px 0 30px; }
    .article-banner-content h1 { font-size: 1.35rem; }
    .breadcrumb { font-size: 0.8125rem; }
    .article-meta { font-size: 0.8125rem; }
    .article-content-section { padding: 40px 0 24px; }
    .article-card { padding: 18px 12px; border-radius: 16px; }
    .article-body { font-size: 0.9688rem; }
    .sidebar-widget { padding: 20px; }
    .related-card-body h4 { font-size: 1rem; }
    .cta-content h2 { font-size: 1.25rem; }
    .cta-content p { font-size: 0.9375rem; }
    .footer-bottom { font-size: 0.78rem; }
}

/* roulang page: category1 */
/* ============ 设计变量 ============ */
        :root {
            --primary: #0e2238;
            --primary-deep: #081526;
            --accent: #f07c1f;
            --accent-light: #ff9f45;
            --accent-dark: #d9690d;
            --bg: #f4f6fa;
            --bg-alt: #e9edf3;
            --white: #ffffff;
            --text: #1a2a3a;
            --text-light: #64748b;
            --border: #dfe5ee;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 22px;
            --shadow-sm: 0 2px 10px rgba(14, 34, 56, .06);
            --shadow-md: 0 10px 28px rgba(14, 34, 56, .08);
            --shadow-lg: 0 18px 44px rgba(14, 34, 56, .13);
            --sp-1: 8px;
            --sp-2: 16px;
            --sp-3: 24px;
            --sp-4: 40px;
            --sp-5: 64px;
            --sp-6: 96px;
            --font: "PingFang SC", "Microsoft YaHei", -apple-system, "Segoe UI", Roboto, sans-serif;
        }

        /* ============ 基础 Reset / Base ============ */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
        body {
            font-family: var(--font);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text);
            background: var(--bg);
        }
        img { max-width: 100%; height: auto; display: block; }
        a { color: inherit; text-decoration: none; transition: color .25s ease; }
        ul, ol { list-style: none; }
        button, input, select { font-family: inherit; font-size: inherit; }
        i { line-height: 1; }

        .grid-container { max-width: 1200px; }

        /* ============ 通用容器与标题 ============ */
        .section { padding: var(--sp-5) 0; }
        .section-head { text-align: center; max-width: 720px; margin: 0 auto var(--sp-4); }
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(240, 124, 31, .12);
            color: var(--accent-dark);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            padding: 5px 16px;
            border-radius: 40px;
            margin-bottom: 14px;
            text-transform: uppercase;
        }
        .section-head h2 { font-size: clamp(28px, 3.2vw, 38px); font-weight: 800; color: var(--primary); line-height: 1.25; }
        .section-head p { color: var(--text-light); margin-top: 10px; font-size: 16px; }

        /* ============ 按钮 ============ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 40px;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all .28s ease;
            white-space: nowrap;
        }
        .btn-sm { padding: 8px 20px; font-size: 14px; border-radius: 34px; }
        .btn-accent { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; box-shadow: 0 6px 18px rgba(240, 124, 31, .35); }
        .btn-accent:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(240, 124, 31, .45); color: #fff; }
        .btn-accent:active { transform: translateY(0); }
        .btn-outline { border-color: rgba(255, 255, 255, .7); color: #fff; background: transparent; }
        .btn-outline:hover { background: rgba(255, 255, 255, .14); border-color: #fff; color: #fff; }
        .btn-primary { background: var(--primary); color: #fff; box-shadow: 0 6px 18px rgba(14, 34, 56, .25); }
        .btn-primary:hover { background: var(--primary-deep); transform: translateY(-2px); color: #fff; }
        .btn:focus-visible { outline: 3px solid rgba(240, 124, 31, .5); outline-offset: 2px; }

        /* ============ 顶部信息条 ============ */
        .topbar {
            background: var(--primary-deep);
            color: rgba(255, 255, 255, .8);
            font-size: 13px;
            padding: 6px 0;
        }
        .topbar .grid-container { display: flex; justify-content: space-between; align-items: center; }
        .topbar-left span { margin-right: 22px; }
        .topbar-left i { color: var(--accent-light); margin-right: 4px; }
        .topbar-right { display: flex; gap: 18px; }
        .topbar-right a:hover { color: var(--accent-light); }

        /* ============ 主导航 ============ */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, .92);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
        }
        .header-row { display: flex; justify-content: space-between; align-items: center; height: 74px; }
        .site-logo a { display: flex; align-items: center; font-size: 26px; font-weight: 900; color: var(--primary); letter-spacing: -0.5px; }
        .site-logo .logo-dot { width: 10px; height: 10px; background: var(--accent); border-radius: 50%; margin-left: 3px; box-shadow: 0 0 0 4px rgba(240, 124, 31, .2); }
        .main-nav { display: flex; align-items: center; gap: 6px; }
        .nav-link {
            padding: 9px 20px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
            border-radius: 40px;
            position: relative;
            transition: all .25s ease;
        }
        .nav-link:hover { color: var(--accent-dark); background: rgba(240, 124, 31, .08); }
        .nav-link.active { color: #fff; background: var(--primary); box-shadow: 0 4px 12px rgba(14, 34, 56, .22); }
        .header-actions { display: flex; align-items: center; gap: 12px; }
        .header-search { position: relative; }
        .header-search input {
            border: 1px solid var(--border);
            background: var(--bg);
            border-radius: 40px;
            padding: 8px 16px 8px 38px;
            font-size: 14px;
            width: 210px;
            transition: all .25s ease;
        }
        .header-search input:focus { outline: none; border-color: var(--accent); background: #fff; width: 240px; box-shadow: 0 0 0 4px rgba(240, 124, 31, .12); }
        .header-search i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-light); font-size: 14px; }
        .nav-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--primary); cursor: pointer; padding: 4px; }

        /* ============ Banner / Hero ============ */
        .page-banner {
            position: relative;
            background-size: cover;
            background-position: center;
            padding: 110px 0 90px;
            color: #fff;
            overflow: hidden;
        }
        .banner-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(8, 21, 38, .92) 0%, rgba(14, 34, 56, .78) 45%, rgba(14, 34, 56, .45) 100%);
        }
        .banner-inner { position: relative; z-index: 2; max-width: 760px; }
        .banner-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, .14);
            border: 1px solid rgba(255, 255, 255, .2);
            backdrop-filter: blur(6px);
            padding: 7px 18px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 600;
            color: var(--accent-light);
            margin-bottom: 22px;
        }
        .banner-inner h1 {
            font-size: clamp(34px, 4.6vw, 56px);
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 16px;
        }
        .banner-inner p { font-size: 17px; color: rgba(255, 255, 255, .82); max-width: 580px; margin-bottom: 30px; }
        .banner-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
        .banner-meta { display: flex; gap: 26px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .16); }
        .banner-meta span { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; color: rgba(255, 255, 255, .78); }
        .banner-meta i { color: var(--accent-light); }

        /* ============ 焦点赛事 ============ */
        .featured-section { background: var(--white); }
        .match-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: transform .3s ease, box-shadow .3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .match-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
        .match-card-media { position: relative; overflow: hidden; aspect-ratio: 16 / 9; }
        .match-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
        .match-card:hover .match-card-media img { transform: scale(1.06); }
        .match-status {
            position: absolute;
            top: 14px;
            left: 14px;
            background: linear-gradient(135deg, #ff4d4f, #d9363e);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 30px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            box-shadow: 0 4px 12px rgba(217, 48, 62, .4);
        }
        .match-status.live::before {
            content: "";
            width: 6px; height: 6px;
            background: #fff;
            border-radius: 50%;
            animation: pulse 1.4s infinite;
        }
        @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.7); } }
        .match-status.upcoming { background: linear-gradient(135deg, #16a34a, #15803d); box-shadow: 0 4px 12px rgba(22, 163, 74, .35); }
        .match-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
        .match-league { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--accent-dark); margin-bottom: 8px; }
        .match-card-body h3 { font-size: 18px; font-weight: 800; color: var(--primary); line-height: 1.4; margin-bottom: 14px; }
        .match-card-body h3 a:hover { color: var(--accent-dark); }
        .match-info-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
        .match-info-list li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-light); }
        .match-info-list i { color: var(--accent); width: 16px; text-align: center; }
        .match-btn {
            margin-top: auto;
            width: 100%;
            background: var(--bg);
            color: var(--primary);
            border: 1px solid var(--border);
            border-radius: 40px;
            padding: 11px 16px;
            font-weight: 700;
            text-align: center;
            transition: all .28s ease;
        }
        .match-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 18px rgba(240, 124, 31, .3); }

        /* ============ 资讯列表板块 ============ */
        .news-section { background: var(--bg); }
        .news-list { display: flex; flex-direction: column; gap: 18px; }
        .news-item {
            display: flex;
            gap: 20px;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 18px;
            transition: all .3s ease;
        }
        .news-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(240, 124, 31, .3); }
        .news-thumb { flex: 0 0 220px; border-radius: 12px; overflow: hidden; aspect-ratio: 16 / 10; }
        .news-thumb img { width: 100%; height: 100%; object-fit: cover; }
        .news-body { flex: 1; display: flex; flex-direction: column; }
        .news-meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--text-light); margin-bottom: 6px; }
        .news-meta .news-cat { color: var(--accent-dark); font-weight: 700; }
        .news-body h3 { font-size: 18px; font-weight: 700; line-height: 1.45; margin-bottom: 8px; }
        .news-body h3 a { color: var(--primary); }
        .news-body h3 a:hover { color: var(--accent-dark); }
        .news-desc { font-size: 14px; color: var(--text-light); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 10px; }
        .news-link { font-size: 14px; font-weight: 700; color: var(--accent-dark); display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }
        .news-link:hover { gap: 10px; color: var(--accent); }

        /* 侧栏 */
        .sidebar-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 26px;
            margin-bottom: 22px;
        }
        .sidebar-card h3 { font-size: 18px; font-weight: 800; color: var(--primary); margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
        .sidebar-card h3::after { content: ""; flex: 1; height: 2px; background: linear-gradient(90deg, var(--accent), transparent); border-radius: 2px; }
        .tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
        .tag-cloud a {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 30px;
            padding: 6px 14px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text);
            transition: all .25s ease;
        }
        .tag-cloud a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
        .schedule-list li { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px dashed var(--border); font-size: 14px; }
        .schedule-list li:last-child { border-bottom: none; }
        .schedule-date { color: var(--text-light); font-size: 13px; }
        .schedule-name { font-weight: 600; color: var(--primary); }
        .subscribe-card { background: linear-gradient(135deg, var(--primary), var(--primary-deep)); color: #fff; border: none; }
        .subscribe-card h3 { color: #fff; }
        .subscribe-card p { font-size: 14px; color: rgba(255, 255, 255, .75); margin-bottom: 16px; }
        .subscribe-form { display: flex; gap: 8px; }
        .subscribe-form input { flex: 1; border: none; border-radius: 40px; padding: 11px 16px; font-size: 14px; }
        .subscribe-form input:focus { outline: none; box-shadow: 0 0 0 3px rgba(240, 124, 31, .4); }
        .subscribe-form .btn { padding: 11px 20px; }

        /* ============ 数据统计深色板块 ============ */
        .stats-section {
            position: relative;
            background-image: url('/assets/images/backpic/back-3.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: var(--sp-5) 0;
            color: #fff;
        }
        .stats-overlay { position: absolute; inset: 0; background: rgba(8, 21, 38, .82); }
        .stats-inner { position: relative; z-index: 2; }
        .stats-inner .section-head h2 { color: #fff; }
        .stats-inner .section-head p { color: rgba(255, 255, 255, .7); }
        .stat-block { text-align: center; padding: 26px 14px; }
        .stat-num {
            font-size: clamp(34px, 4vw, 48px);
            font-weight: 900;
            color: var(--accent-light);
            line-height: 1.2;
            display: block;
        }
        .stat-label { font-size: 15px; color: rgba(255, 255, 255, .78); margin-top: 8px; }
        .stat-divider { width: 42px; height: 3px; background: linear-gradient(90deg, var(--accent), transparent); border-radius: 3px; margin: 14px auto 0; }

        /* ============ 赛事日历 / 时间线 ============ */
        .timeline-section { background: var(--white); }
        .timeline {
            position: relative;
            max-width: 780px;
            margin: 0 auto;
            padding-left: 30px;
        }
        .timeline::before {
            content: "";
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, var(--accent), var(--primary));
            border-radius: 3px;
        }
        .timeline-item { position: relative; padding-bottom: 30px; }
        .timeline-item:last-child { padding-bottom: 0; }
        .timeline-item::before {
            content: "";
            position: absolute;
            left: -26px;
            top: 6px;
            width: 15px;
            height: 15px;
            background: var(--white);
            border: 4px solid var(--accent);
            border-radius: 50%;
            box-shadow: 0 0 0 4px rgba(240, 124, 31, .15);
        }
        .timeline-card {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 18px 22px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 18px;
            transition: all .3s ease;
        }
        .timeline-card:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateX(4px); }
        .timeline-date { font-size: 13px; font-weight: 700; color: var(--accent-dark); display: flex; align-items: center; gap: 6px; }
        .timeline-name { font-size: 15px; font-weight: 700; color: var(--primary); margin-top: 4px; }
        .timeline-sub { font-size: 13px; color: var(--text-light); }
        .timeline-badge {
            background: rgba(240, 124, 31, .12);
            color: var(--accent-dark);
            font-size: 13px;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 30px;
            white-space: nowrap;
        }

        /* ============ FAQ ============ */
        .faq-section { background: var(--bg); }
        .faq-wrap { max-width: 800px; margin: 0 auto; }
        .faq-item {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            margin-bottom: 14px;
            overflow: hidden;
            transition: box-shadow .3s ease;
        }
        .faq-item.active { box-shadow: var(--shadow-md); border-color: rgba(240, 124, 31, .3); }
        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            background: none;
            border: none;
            padding: 20px 24px;
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
            cursor: pointer;
            text-align: left;
        }
        .faq-question .faq-icon {
            flex: 0 0 30px;
            height: 30px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(240, 124, 31, .1);
            color: var(--accent-dark);
            transition: all .3s ease;
        }
        .faq-item.active .faq-icon { background: var(--accent); color: #fff; transform: rotate(45deg); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
        .faq-item.active .faq-answer { max-height: 500px; }
        .faq-answer p { padding: 0 24px 20px; font-size: 15px; color: var(--text-light); }

        /* ============ CTA ============ */
        .cta-section {
            position: relative;
            background-image: url('/assets/images/backpic/back-2.png');
            background-size: cover;
            background-position: center;
            text-align: center;
            color: #fff;
            padding: 80px 0;
        }
        .cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8, 21, 38, .88), rgba(240, 124, 31, .68)); }
        .cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
        .cta-inner h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 900; margin-bottom: 14px; }
        .cta-inner p { color: rgba(255, 255, 255, .85); margin-bottom: 28px; font-size: 16px; }
        .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

        /* ============ 页脚 ============ */
        .site-footer { background: var(--primary-deep); color: rgba(255, 255, 255, .72); padding: 64px 0 0; font-size: 15px; }
        .footer-grid { gap: 30px 0; }
        .footer-brand .footer-logo { font-size: 24px; font-weight: 900; color: #fff; display: block; margin-bottom: 14px; }
        .footer-brand p { line-height: 1.8; max-width: 320px; }
        .site-footer h4 { color: #fff; font-size: 17px; font-weight: 700; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
        .site-footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 32px; height: 3px; border-radius: 3px; background: var(--accent); }
        .footer-links { display: flex; flex-direction: column; gap: 12px; }
        .footer-links a { color: rgba(255, 255, 255, .72); display: inline-flex; align-items: center; gap: 8px; transition: all .25s ease; }
        .footer-links a::before { content: "\f105"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 12px; color: var(--accent-light); }
        .footer-links a:hover { color: var(--accent-light); padding-left: 4px; }
        .footer-contact p { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
        .footer-contact i { color: var(--accent-light); width: 18px; text-align: center; }
        .footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 50px; padding: 20px 0; text-align: center; font-size: 14px; color: rgba(255, 255, 255, .5); }

        /* ============ .cell 内边距微调 ============ */
        .match-col { margin-bottom: 24px; }
        .news-sidebar .cell { margin-bottom: 22px; }

        /* ============ 响应式 ============ */
        @media screen and (max-width: 1024px) {
            .header-search { display: none; }
            .news-thumb { flex-basis: 180px; }
        }
        @media screen and (max-width: 768px) {
            .section { padding: var(--sp-4) 0; }
            .page-banner { padding: 80px 0 60px; }
            .main-nav {
                position: fixed;
                top: 74px;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                align-items: stretch;
                padding: 14px;
                gap: 8px;
                border-bottom: 1px solid var(--border);
                box-shadow: var(--shadow-md);
                transform: translateY(-120%);
                transition: transform .35s ease;
                z-index: 999;
            }
            .main-nav.open { transform: translateY(0); }
            .nav-link { display: block; text-align: center; padding: 12px 20px; border-radius: 12px; }
            .nav-toggle { display: block; }
            .header-actions .btn { display: none; }
            .news-item { flex-direction: column; }
            .news-thumb { flex-basis: auto; aspect-ratio: 16 / 8; }
            .timeline-card { flex-direction: column; align-items: flex-start; }
            .banner-meta { gap: 14px; }
            .stats-section { background-attachment: scroll; }
        }
        @media screen and (max-width: 520px) {
            .topbar { display: none; }
            .section-head h2 { font-size: 26px; }
            .banner-inner h1 { font-size: 32px; }
            .btn { padding: 10px 22px; font-size: 14px; }
            .subscribe-form { flex-direction: column; }
            .timeline { padding-left: 24px; }
            .timeline-item::before { left: -22px; width: 12px; height: 12px; }
            .footer-grid .cell { text-align: center; }
            .site-footer h4::after { left: 50%; transform: translateX(-50%); }
            .footer-brand p { margin: 0 auto; }
            .footer-contact p { justify-content: center; }
        }

/* roulang page: category2 */
/* ==========================================================
           设计变量与基础 Reset
           ========================================================== */
        :root {
            --primary: #FF4D30;
            --primary-dark: #E63E1F;
            --primary-light: #FFF1EC;
            --secondary: #12B76A;
            --secondary-light: #E8F9F0;
            --dark: #0F172A;
            --darker: #0B1220;
            --bg: #F8FAFB;
            --card-bg: #FFFFFF;
            --text: #1E293B;
            --text-light: #64748B;
            --text-muted: #94A3B8;
            --border: #E2E8F0;
            --radius: 16px;
            --radius-sm: 10px;
            --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
            --shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
            --shadow-lg: 0 24px 48px rgba(15, 23, 42, 0.12);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --header-height: 72px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html,
        body {
            margin: 0;
            padding: 0;
        }

        body {
            font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body.foundation {
            font-size: 1rem;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            display: block;
        }

        ul,
        ol {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        /* ==========================================================
           容器与通用排版
           ========================================================== */
        .grid-container {
            max-width: 1200px;
            padding-left: 24px;
            padding-right: 24px;
        }

        .grid-x>.cell {
            display: flex;
            flex-direction: column;
        }

        .section {
            padding: 84px 0;
        }

        .section + .section {
            border-top: 1px solid var(--border);
        }

        .section-head {
            text-align: center;
            max-width: 780px;
            margin: 0 auto 52px;
        }

        .section-tag {
            display: inline-block;
            background: var(--primary-light);
            color: var(--primary);
            font-size: 0.875rem;
            font-weight: 600;
            padding: 6px 18px;
            border-radius: 999px;
            letter-spacing: 0.04em;
            margin-bottom: 16px;
        }

        .section-head h2 {
            font-size: 2.375rem;
            font-weight: 800;
            line-height: 1.25;
            margin: 0 0 14px;
            color: var(--dark);
            letter-spacing: -0.02em;
        }

        .section-head p {
            font-size: 1.0625rem;
            color: var(--text-light);
            margin: 0 auto;
            max-width: 640px;
        }

        /* ==========================================================
           Header / 导航
           ========================================================== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border);
            height: var(--header-height);
        }

        .site-header .grid-container {
            height: 100%;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            height: 100%;
        }

        .site-logo {
            font-size: 1.45rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.02em;
            white-space: nowrap;
            position: relative;
            z-index: 2;
        }

        .site-logo::after {
            content: "";
            display: block;
            width: 100%;
            height: 3px;
            border-radius: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            margin-top: 2px;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav-link {
            padding: 9px 20px;
            border-radius: 999px;
            font-size: 0.9375rem;
            font-weight: 600;
            color: var(--text);
            transition: var(--transition);
            white-space: nowrap;
        }

        .nav-link:hover {
            background: var(--primary-light);
            color: var(--primary);
        }

        .nav-link.active {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 6px 18px rgba(255, 77, 48, 0.25);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .header-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--dark);
            color: #fff;
            font-size: 0.9375rem;
            font-weight: 600;
            padding: 11px 24px;
            border-radius: 999px;
            border: 1px solid var(--dark);
            transition: var(--transition);
            white-space: nowrap;
        }

        .header-cta:hover {
            background: var(--primary);
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255, 77, 48, 0.28);
        }

        .live-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #22C55E;
            position: relative;
        }

        .live-dot::after {
            content: "";
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 2px solid rgba(34, 197, 94, 0.5);
            animation: pulse 1.8s ease-out infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(0.6);
                opacity: 1;
            }
            100% {
                transform: scale(1.4);
                opacity: 0;
            }
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            padding: 8px;
            border-radius: 8px;
            cursor: pointer;
            color: var(--text);
            font-size: 1.25rem;
        }

        .mobile-toggle:hover {
            background: var(--primary-light);
            color: var(--primary);
        }

        /* ==========================================================
           Banner
           ========================================================== */
        .page-banner {
            position: relative;
            background-size: cover;
            background-position: center;
            padding: 110px 0 100px;
            overflow: hidden;
        }

        .banner-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.78) 45%, rgba(15, 23, 42, 0.5) 100%);
        }

        .banner-content {
            position: relative;
            z-index: 2;
            color: #fff;
            max-width: 760px;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 28px;
        }

        .breadcrumb a {
            color: rgba(255, 255, 255, 0.7);
        }

        .breadcrumb a:hover {
            color: #fff;
        }

        .breadcrumb i {
            font-size: 0.625rem;
        }

        .banner-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.18);
            color: #fff;
            font-size: 0.8125rem;
            font-weight: 600;
            padding: 7px 18px;
            border-radius: 999px;
            margin-bottom: 20px;
            letter-spacing: 0.05em;
        }

        .banner-badge i {
            color: var(--secondary);
        }

        .banner-content h1 {
            font-size: 3.75rem;
            font-weight: 800;
            line-height: 1.1;
            margin: 0 0 16px;
            letter-spacing: -0.02em;
        }

        .banner-content .banner-desc {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.75;
            margin: 0 0 36px;
            max-width: 620px;
        }

        .banner-notice {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            padding: 16px 24px;
            margin-bottom: 28px;
            width: 100%;
            max-width: 680px;
            backdrop-filter: blur(6px);
        }

        .notice-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            flex-shrink: 0;
            background: var(--primary);
            border-radius: 12px;
            color: #fff;
            font-size: 1rem;
        }

        .notice-text {
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.9);
            flex: 1;
        }

        .notice-text strong {
            color: #fff;
        }

        .notice-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--secondary);
            font-size: 0.875rem;
            font-weight: 700;
            white-space: nowrap;
        }

        .notice-link:hover {
            color: #fff;
        }

        .banner-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 28px;
        }

        .banner-meta span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.85);
        }

        .banner-meta i {
            color: var(--secondary);
        }

        /* ==========================================================
           指南体系特色卡片
           ========================================================== */
        .features-grid {
            margin-bottom: -16px;
        }

        .features-grid .cell {
            margin-bottom: 16px;
        }

        .feature-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 34px 26px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
            flex: 1;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow);
            border-color: rgba(255, 77, 48, 0.2);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 20px;
        }

        .feature-card:nth-child(2) .feature-icon {
            background: var(--secondary-light);
            color: var(--secondary);
        }

        .feature-card:nth-child(3) .feature-icon {
            background: #FEF3C7;
            color: #D97706;
        }

        .feature-card:nth-child(4) .feature-icon {
            background: #EDE9FE;
            color: #7C3AED;
        }

        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0 0 10px;
            color: var(--dark);
        }

        .feature-card p {
            font-size: 0.9375rem;
            color: var(--text-light);
            line-height: 1.7;
            margin: 0 0 20px;
            flex: 1;
        }

        .feature-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9375rem;
            font-weight: 600;
            color: var(--primary);
        }

        .feature-link i {
            transition: transform 0.3s;
        }

        .feature-link:hover {
            color: var(--primary-dark);
        }

        .feature-link:hover i {
            transform: translateX(4px);
        }

        /* ==========================================================
           训练课表时间轴
           ========================================================== */
        .schedule-section {
            background: #fff;
        }

        .schedule-list {
            max-width: 920px;
            margin: 0 auto;
            display: grid;
            gap: 14px;
        }

        .schedule-item {
            display: flex;
            align-items: center;
            gap: 28px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 22px 24px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
        }

        .schedule-item:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow);
            transform: translateX(6px);
        }

        .schedule-date {
            min-width: 120px;
            text-align: center;
            padding-right: 28px;
            border-right: 2px dashed var(--border);
            flex-shrink: 0;
        }

        .schedule-date .day {
            display: block;
            font-size: 1.375rem;
            font-weight: 800;
            color: var(--dark);
            line-height: 1.2;
        }

        .schedule-date .period {
            display: block;
            font-size: 0.8125rem;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .schedule-content {
            flex: 1;
        }

        .schedule-content h3 {
            font-size: 1.125rem;
            font-weight: 700;
            margin: 0 0 6px;
            color: var(--dark);
        }

        .schedule-content p {
            font-size: 0.9375rem;
            color: var(--text-light);
            margin: 0 0 12px;
            line-height: 1.6;
        }

        .schedule-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            border-radius: 999px;
            font-size: 0.8125rem;
            font-weight: 600;
            background: var(--bg);
            color: var(--text-light);
            border: 1px solid var(--border);
        }

        .tag-primary {
            background: var(--primary-light);
            color: var(--primary);
            border-color: transparent;
        }

        .tag-secondary {
            background: var(--secondary-light);
            color: var(--secondary);
            border-color: transparent;
        }

        .schedule-location {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.875rem;
            color: var(--text-muted);
            margin-top: 10px;
        }

        .schedule-location i {
            color: var(--primary);
        }

        .schedule-action {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 10px;
            flex-shrink: 0;
        }

        .duration {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-light);
            background: var(--bg);
            padding: 6px 14px;
            border-radius: 999px;
            border: 1px solid var(--border);
            text-align: center;
            white-space: nowrap;
        }

        /* ==========================================================
           按钮
           ========================================================== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.9375rem;
            font-weight: 700;
            padding: 12px 28px;
            border-radius: 999px;
            border: 2px solid transparent;
            cursor: pointer;
            transition: var(--transition);
            line-height: 1;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            box-shadow: 0 8px 20px rgba(255, 77, 48, 0.25);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(255, 77, 48, 0.32);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border-color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 77, 48, 0.24);
        }

        .btn-sm {
            padding: 9px 20px;
            font-size: 0.875rem;
        }

        .btn-dark {
            background: var(--dark);
            color: #fff;
            border-color: var(--dark);
        }

        .btn-dark:hover {
            background: var(--primary);
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        /* ==========================================================
           内容卡片
           ========================================================== */
        .content-section {
            background: var(--bg);
        }

        .content-grid {
            margin-bottom: -16px;
        }

        .content-grid .cell {
            margin-bottom: 16px;
        }

        .content-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .content-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow);
        }

        .card-cover {
            position: relative;
            height: 200px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .card-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .content-card:hover .card-cover img {
            transform: scale(1.06);
        }

        .card-cover::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.25));
        }

        .card-tag {
            position: absolute;
            top: 16px;
            left: 16px;
            z-index: 2;
            background: rgba(255, 255, 255, 0.95);
            color: var(--primary);
            font-size: 0.8125rem;
            font-weight: 700;
            padding: 5px 14px;
            border-radius: 999px;
            box-shadow: var(--shadow-sm);
        }

        .card-body {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .card-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 0.8125rem;
            color: var(--text-muted);
            margin-bottom: 12px;
        }

        .card-meta i {
            color: var(--primary);
        }

        .card-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .card-body h3 {
            font-size: 1.125rem;
            font-weight: 700;
            line-height: 1.45;
            margin: 0 0 10px;
            color: var(--dark);
        }

        .card-body p {
            font-size: 0.9375rem;
            color: var(--text-light);
            line-height: 1.65;
            margin: 0 0 18px;
            flex: 1;
        }

        .card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9375rem;
            font-weight: 600;
            color: var(--primary);
            margin-top: auto;
        }

        .card-link i {
            transition: transform 0.3s;
        }

        .card-link:hover {
            color: var(--primary-dark);
        }

        .card-link:hover i {
            transform: translateX(4px);
        }

        /* ==========================================================
           数据统计
           ========================================================== */
        .stats-section {
            background: var(--dark);
            color: #fff;
            padding: 70px 0;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: "";
            position: absolute;
            width: 480px;
            height: 480px;
            background: radial-gradient(circle, rgba(255, 77, 48, 0.18), transparent 65%);
            top: -160px;
            right: -100px;
        }

        .stats-section::after {
            content: "";
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(18, 183, 106, 0.15), transparent 65%);
            bottom: -160px;
            left: -80px;
        }

        .stats-grid {
            position: relative;
            z-index: 1;
        }

        .stats-grid .cell {
            margin-bottom: 16px;
        }

        .stat-block {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            display: block;
            font-size: 3.125rem;
            font-weight: 800;
            line-height: 1;
            color: var(--primary);
            margin-bottom: 10px;
            letter-spacing: -0.02em;
        }

        .stat-label {
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.75);
        }

        /* ==========================================================
           学习路径流程
           ========================================================== */
        .process-section {
            background: #fff;
        }

        .process-steps {
            max-width: 980px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .process-step {
            position: relative;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 36px 24px 28px;
            text-align: center;
            transition: var(--transition);
        }

        .process-step:hover {
            background: var(--card-bg);
            border-color: var(--primary);
            box-shadow: var(--shadow);
            transform: translateY(-6px);
        }

        .step-num {
            display: block;
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-light);
            line-height: 1;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .process-step h3 {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--dark);
            margin: 0 0 10px;
        }

        .process-step p {
            font-size: 0.9063rem;
            color: var(--text-light);
            line-height: 1.65;
            margin: 0;
        }

        .process-step .step-index {
            position: absolute;
            top: 16px;
            right: 18px;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--text-muted);
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 3px 10px;
        }

        /* ==========================================================
           FAQ
           ========================================================== */
        .faq-section {
            background: var(--bg);
        }

        .faq-list {
            max-width: 860px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            margin-bottom: 14px;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: rgba(255, 77, 48, 0.3);
            box-shadow: var(--shadow-sm);
        }

        .faq-item[open] {
            border-color: var(--primary);
            box-shadow: var(--shadow);
        }

        .faq-item summary {
            cursor: pointer;
            padding: 20px 28px;
            font-size: 1.0625rem;
            font-weight: 600;
            color: var(--dark);
            list-style: none;
            position: relative;
            display: flex;
            align-items: center;
            gap: 14px;
            user-select: none;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::before {
            content: "\f059";
            font-family: "Font Awesome 6 Free";
            font-weight: 400;
            color: var(--primary);
            flex-shrink: 0;
        }

        .faq-item summary::after {
            content: "\f078";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 0.8125rem;
            color: var(--text-muted);
            position: absolute;
            right: 24px;
            transition: transform 0.3s;
        }

        .faq-item[open] summary::after {
            transform: rotate(180deg);
            color: var(--primary);
        }

        .faq-item p {
            padding: 0 28px 24px;
            margin: 0;
            color: var(--text-light);
            font-size: 0.9375rem;
            line-height: 1.75;
        }

        /* ==========================================================
           CTA 区块
           ========================================================== */
        .cta-section {
            padding: 80px 0;
            background: #fff;
        }

        .cta-wrapper {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 28px;
            padding: 60px 48px;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 24px 60px rgba(255, 77, 48, 0.35);
        }

        .cta-wrapper::before {
            content: "";
            position: absolute;
            width: 300px;
            height: 300px;
            border: 2px dashed rgba(255, 255, 255, 0.18);
            border-radius: 50%;
            top: -120px;
            right: -80px;
        }

        .cta-wrapper::after {
            content: "";
            position: absolute;
            width: 200px;
            height: 200px;
            border: 2px dashed rgba(255, 255, 255, 0.12);
            border-radius: 50%;
            bottom: -80px;
            left: 60px;
        }

        .cta-wrapper h2 {
            font-size: 2.25rem;
            font-weight: 800;
            margin: 0 0 14px;
            position: relative;
            z-index: 1;
        }

        .cta-wrapper .cta-desc {
            font-size: 1.0625rem;
            color: rgba(255, 255, 255, 0.92);
            margin: 0 auto 32px;
            max-width: 520px;
            position: relative;
            z-index: 1;
        }

        .cta-form {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
            max-width: 680px;
            margin: 0 auto;
        }

        .cta-form input {
            border: none;
            border-radius: 999px;
            padding: 15px 24px;
            width: 220px;
            background: rgba(255, 255, 255, 0.95);
            color: var(--text);
            font-size: 0.9375rem;
            outline: none;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .cta-form input:focus {
            box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
        }

        .cta-form input::placeholder {
            color: var(--text-muted);
        }

        .cta-form .btn {
            background: var(--dark);
            border-color: var(--dark);
            color: #fff;
            padding: 15px 36px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .cta-form .btn:hover {
            background: #1E293B;
            border-color: #1E293B;
            transform: translateY(-2px);
        }

        .cta-form .btn:disabled {
            opacity: 1;
            background: var(--secondary);
            border-color: var(--secondary);
            cursor: default;
            transform: none;
        }

        .cta-note {
            position: relative;
            z-index: 1;
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 18px;
        }

        /* ==========================================================
           Footer
           ========================================================== */
        .site-footer {
            background: var(--dark);
            color: #CBD5E1;
            padding: 60px 0 20px;
        }

        .footer-grid {
            gap: 8px;
        }

        .footer-grid .cell {
            margin-bottom: 24px;
        }

        .footer-brand .footer-logo {
            display: inline-block;
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: -0.02em;
        }

        .footer-brand p {
            font-size: 0.9375rem;
            line-height: 1.75;
            color: #94A3B8;
            max-width: 320px;
        }

        .site-footer h4 {
            color: #fff;
            font-size: 1.0625rem;
            font-weight: 700;
            margin: 0 0 18px;
        }

        .footer-links a {
            display: block;
            padding: 6px 0;
            color: #94A3B8;
            font-size: 0.9375rem;
            line-height: 1.5;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: #fff;
            padding-left: 6px;
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 6px 0;
            color: #94A3B8;
            font-size: 0.9375rem;
        }

        .footer-contact i {
            width: 20px;
            color: var(--primary);
            text-align: center;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 36px;
            padding-top: 24px;
            text-align: center;
            font-size: 0.875rem;
            color: #64748B;
        }

        .footer-bottom p {
            margin: 0;
        }

        /* ==========================================================
           响应式断点
           ========================================================== */
        @media (max-width: 1024px) {
            .section {
                padding: 70px 0;
            }

            .section-head h2 {
                font-size: 2.125rem;
            }

            .banner-content h1 {
                font-size: 3.125rem;
            }

            .process-steps {
                grid-template-columns: repeat(2, 1fr);
                max-width: 680px;
            }

            .process-step {
                padding: 32px 22px 24px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --header-height: 64px;
            }

            .section {
                padding: 56px 0;
            }

            .section-head {
                margin-bottom: 36px;
            }

            .section-head h2 {
                font-size: 1.75rem;
            }

            .section-head p {
                font-size: 1rem;
            }

            .space-y {
                font-size: 0.875rem;
            }

            .header-cta {
                display: none;
            }

            .mobile-toggle {
                display: block;
                font-size: 1.25rem;
                z-index: 3;
            }

            .main-nav {
                display: none;
                position: absolute;
                top: var(--header-height);
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                flex-direction: column;
                align-items: stretch;
                gap: 6px;
                padding: 20px 24px 24px;
                box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
                border-bottom: 1px solid var(--border);
                backdrop-filter: blur(16px);
            }

            .main-nav.open {
                display: flex;
            }

            .nav-link {
                padding: 13px 20px;
                border-radius: 12px;
                font-size: 1rem;
            }

            .nav-link.active {
                box-shadow: none;
            }

            .banner-content h1 {
                font-size: 2.5rem;
            }

            .banner-content .banner-desc {
                font-size: 1.125rem;
            }

            .banner-notice {
                flex-wrap: wrap;
                padding: 14px 18px;
            }

            .schedule-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
                padding: 20px;
            }

            .schedule-date {
                border-right: none;
                border-bottom: 2px dashed var(--border);
                padding-right: 0;
                padding-bottom: 12px;
                min-width: 100%;
                text-align: left;
                display: flex;
                align-items: baseline;
                justify-content: space-between;
            }

            .schedule-content {
                width: 100%;
            }

            .schedule-action {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                width: 100%;
            }

            .cta-wrapper {
                padding: 44px 28px;
                border-radius: 20px;
            }

            .cta-wrapper h2 {
                font-size: 1.875rem;
            }

            .cta-form input {
                width: 100%;
                max-width: 340px;
            }

            .cta-form .btn {
                width: 100%;
                max-width: 340px;
            }

            .footer-grid {
                gap: 4px;
            }
        }

        @media (max-width: 520px) {
            .section {
                padding: 44px 0;
            }

            .section-head h2 {
                font-size: 1.5rem;
            }

            .site-logo {
                font-size: 1.25rem;
            }

            .banner-content h1 {
                font-size: 2rem;
            }

            .banner-content .banner-desc {
                font-size: 1rem;
            }

            .banner-notice .notice-text {
                font-size: 0.875rem;
            }

            .banner-meta {
                gap: 12px;
                flex-direction: column;
            }

            .schedule-date .day {
                font-size: 1.25rem;
            }

            .schedule-location {
                font-size: 0.8125rem;
            }

            .process-steps {
                grid-template-columns: 1fr;
                max-width: 360px;
            }

            .cta-wrapper {
                padding: 36px 20px;
            }

            .cta-wrapper h2 {
                font-size: 1.5rem;
            }

            .cta-form {
                flex-direction: column;
                gap: 10px;
            }
        }
