/* roulang page: index */
/* ===== 设计变量 ===== */
        :root {
            --color-primary: #C8102E;
            --color-primary-dark: #8B0D20;
            --color-primary-mid: #A30E24;
            --color-accent: #FFD700;
            --color-bg: #0A0E14;
            --color-bg-secondary: #121821;
            --color-bg-tertiary: #1B2430;
            --color-text: #EDEDED;
            --color-text-secondary: #9AA5B1;
            --color-text-weak: #5C6672;
            --color-border: rgba(255, 255, 255, 0.08);
            --color-border-light: rgba(255, 255, 255, 0.06);
            --color-text-body: #1E1E1E;
            --color-text-body-muted: #4A5568;
            --color-light-bg: #F7F3EE;
            --color-light-border: #E8E2DA;
            --radius-btn: 4px;
            --radius-card: 8px;
            --radius-badge: 999px;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.55);
            --shadow-glow: 0 0 16px rgba(200, 16, 46, 0.35);
            --shadow-glow-hover: 0 0 28px rgba(200, 16, 46, 0.55);
            --transition-base: all 0.3s ease;
            --font-main: -apple-system, BlinkMacSystemFont, "Inter", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
        }

        /* ===== Reset / Base ===== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-main);
            background: var(--color-bg);
            color: var(--color-text);
            line-height: 1.75;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #fff;
        }
        button,
        input {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
            background: none;
        }
        ul,
        ol {
            list-style: none;
        }

        /* ===== 容器 ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .container-narrow {
            max-width: 860px;
        }

        /* ===== 按钮 ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            font-weight: 700;
            font-size: 15px;
            letter-spacing: 1px;
            border-radius: var(--radius-btn);
            cursor: pointer;
            transition: var(--transition-base);
            border: 1px solid transparent;
            white-space: nowrap;
            line-height: 1.4;
        }
        .btn:focus-visible {
            outline: 2px solid rgba(200, 16, 46, 0.6);
            outline-offset: 2px;
        }
        .btn-primary {
            background: var(--color-primary);
            color: #fff;
            box-shadow: 0 0 16px rgba(200, 16, 46, 0.35);
        }
        .btn-primary:hover {
            background: var(--color-primary-dark);
            box-shadow: 0 0 28px rgba(200, 16, 46, 0.55);
            transform: translateY(-2px);
            color: #fff;
        }
        .btn-outline {
            background: transparent;
            color: #fff;
            border-color: var(--color-primary);
        }
        .btn-outline:hover {
            background: var(--color-primary);
            color: #fff;
            box-shadow: var(--shadow-glow);
        }
        .btn-gold {
            background: var(--color-accent);
            color: #111;
            font-weight: 800;
        }
        .btn-gold:hover {
            background: #e6c200;
            color: #111;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
            transform: translateY(-2px);
        }
        .btn-sm {
            padding: 8px 18px;
            font-size: 14px;
            letter-spacing: 0.5px;
        }

        /* ===== 徽章 ===== */
        .badge {
            display: inline-flex;
            align-items: center;
            height: 22px;
            padding: 0 12px;
            border-radius: var(--radius-badge);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.5px;
            line-height: 1;
            white-space: nowrap;
        }
        .badge-red {
            background: var(--color-primary);
            color: #fff;
        }
        .badge-dark {
            background: rgba(0, 0, 0, 0.75);
            color: var(--color-accent);
            border: 1px solid rgba(255, 215, 0, 0.3);
            backdrop-filter: blur(4px);
        }
        .badge-gold {
            background: var(--color-accent);
            color: #111;
        }

        /* ===== Header / Nav ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 72px;
            background: rgba(10, 14, 20, 0.92);
            border-bottom: 1px solid rgba(200, 16, 46, 0.3);
            backdrop-filter: blur(10px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            gap: 24px;
        }
        .brand {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
            flex-shrink: 0;
        }
        .brand-name {
            font-size: 18px;
            font-weight: 800;
            color: var(--color-text);
            letter-spacing: 0.5px;
        }
        .brand-sub {
            font-size: 10px;
            color: var(--color-accent);
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 600;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 28px;
            margin-left: auto;
        }
        .nav-link {
            position: relative;
            color: var(--color-text-secondary);
            font-size: 15px;
            font-weight: 500;
            padding: 8px 2px;
            transition: color 0.25s ease;
        }
        .nav-link:hover {
            color: #fff;
        }
        .nav-link.active {
            color: var(--color-primary);
            text-shadow: 0 0 8px rgba(200, 16, 46, 0.6);
            font-weight: 700;
        }
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--color-primary);
            box-shadow: 0 0 8px rgba(200, 16, 46, 0.5);
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }
        .header-actions .btn {
            padding: 8px 20px;
            font-size: 14px;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            background: transparent;
            border: none;
        }
        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--color-primary);
            border-radius: 2px;
            box-shadow: 0 0 6px rgba(200, 16, 46, 0.5);
            transition: all 0.3s ease;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ===== Hero ===== */
        .hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, var(--color-bg) 100%);
            z-index: 1;
        }
        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.25);
            z-index: 1;
        }
        .hero-inner {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            padding: 0 24px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            min-height: 90vh;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--color-accent);
            border: 1px solid var(--color-primary);
            padding: 5px 16px;
            border-radius: 2px;
            letter-spacing: 2px;
            margin-bottom: 24px;
            animation: fadeInUp 0.6s ease 0.1s both;
            background: rgba(10, 14, 20, 0.5);
        }
        .hero-badge i {
            font-size: 8px;
            color: var(--color-primary);
        }
        .hero-title {
            font-size: 48px;
            font-weight: 900;
            line-height: 1.2;
            color: #fff;
            margin-bottom: 12px;
            animation: fadeInUp 0.6s ease 0.2s both;
        }
        .hero-title-line-1 {
            display: block;
            font-size: 22px;
            font-weight: 700;
            color: var(--color-primary);
            letter-spacing: 4px;
            margin-bottom: 6px;
            text-shadow: 0 0 12px rgba(200, 16, 46, 0.5);
        }
        .hero-title-line-2 {
            display: block;
            font-size: 48px;
            font-weight: 900;
            letter-spacing: 2px;
        }
        .hero-sub {
            font-size: 18px;
            color: var(--color-text-secondary);
            max-width: 520px;
            margin-bottom: 36px;
            line-height: 1.7;
            animation: fadeInUp 0.6s ease 0.3s both;
        }
        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeInUp 0.6s ease 0.4s both;
        }
        .live-badge {
            position: absolute;
            bottom: 48px;
            right: 36px;
            z-index: 3;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 700;
            color: #111;
            background: var(--color-accent);
            padding: 7px 14px;
            border-radius: 999px;
            letter-spacing: 1px;
            animation: pulse 2s ease-in-out infinite;
        }
        .live-badge i {
            font-size: 8px;
            color: #C8102E;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes pulse {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.5);
            }
            50% {
                box-shadow: 0 0 0 12px rgba(255, 215, 0, 0);
            }
        }

        /* ===== 通用板块 ===== */
        .section {
            padding: clamp(56px, 7vw, 96px) 0;
            background: var(--color-bg);
        }
        .section-alt {
            background: var(--color-bg-secondary);
        }
        .section-dark {
            background: var(--color-bg);
        }
        .section-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 36px;
            gap: 20px;
            flex-wrap: wrap;
        }
        .section-header h2 {
            font-size: 30px;
            font-weight: 800;
            line-height: 1.3;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .section-eyebrow {
            display: block;
            font-size: 13px;
            color: var(--color-primary);
            letter-spacing: 3px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 6px;
        }
        .section-link {
            font-size: 15px;
            color: var(--color-text-secondary);
            transition: color 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .section-link:hover {
            color: var(--color-primary);
        }
        .marker {
            display: inline-block;
            width: 10px;
            height: 10px;
            background: var(--color-primary);
            box-shadow: 0 0 8px rgba(200, 16, 46, 0.5);
            border-radius: 2px;
        }

        /* ===== 横滑片库 ===== */
        .focus-carousel {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-bottom: 8px;
        }
        .focus-carousel::-webkit-scrollbar {
            display: none;
        }
        .focus-card {
            flex: 0 0 260px;
            scroll-snap-align: start;
            border-radius: var(--radius-card);
            overflow: hidden;
            background: var(--color-bg-tertiary);
            border: 1px solid var(--color-border);
            transition: var(--transition-base);
            display: block;
            text-decoration: none;
        }
        .focus-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card);
            border-color: rgba(200, 16, 46, 0.3);
        }
        .focus-card-media {
            position: relative;
            height: 160px;
            overflow: hidden;
        }
        .focus-card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .focus-card:hover .focus-card-media img {
            transform: scale(1.03);
        }
        .focus-card-shade {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.7) 100%);
        }
        .focus-card-media .badge {
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 2;
        }
        .focus-card-title {
            font-size: 14px;
            font-weight: 600;
            line-height: 1.5;
            color: var(--color-text);
            padding: 14px 16px 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 48px;
        }
        .focus-card-time {
            display: block;
            font-size: 12px;
            color: var(--color-text-weak);
            padding: 0 16px 14px;
            font-style: normal;
        }

        /* ===== 热门赛事推荐 ===== */
        .hot-card {
            background: var(--color-bg-secondary);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: var(--transition-base);
            height: 100%;
        }
        .hot-card:hover {
            box-shadow: var(--shadow-card);
            transform: translateY(-4px);
            border-color: rgba(200, 16, 46, 0.4);
        }
        .hot-card-media {
            height: 100%;
            min-height: 220px;
            overflow: hidden;
            position: relative;
        }
        .hot-card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
        }
        .hot-card-body {
            padding: 28px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            justify-content: center;
            height: 100%;
        }
        .hot-card-body h3 {
            font-size: 22px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--color-text);
        }
        .hot-card-body p {
            font-size: 14px;
            color: var(--color-text-secondary);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .hot-card-meta {
            display: flex;
            gap: 14px;
            font-size: 12px;
            color: var(--color-text-weak);
            flex-wrap: wrap;
        }
        .hot-card-meta span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .hot-card-meta i {
            color: var(--color-primary);
            font-size: 10px;
        }
        .text-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--color-primary);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.25s ease;
        }
        .text-link:hover {
            color: #fff;
            gap: 10px;
        }
        .hot-small-card {
            background: var(--color-bg-secondary);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: var(--transition-base);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .hot-small-card:hover {
            box-shadow: var(--shadow-card);
            transform: translateY(-4px);
            border-color: var(--color-primary);
        }
        .hot-small-media {
            height: 180px;
            overflow: hidden;
            position: relative;
        }
        .hot-small-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .hot-small-card:hover .hot-small-media img {
            transform: scale(1.03);
        }
        .hot-small-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .hot-small-body h3 {
            font-size: 17px;
            font-weight: 700;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .hot-small-body p {
            font-size: 13px;
            color: var(--color-text-secondary);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
        }
        .hot-small-body .text-link {
            margin-top: auto;
        }
        .hot-grid {
            margin-bottom: 28px;
        }

        /* ===== 片单分区 ===== */
        .channel-row {
            display: grid;
            grid-template-columns: 200px 1fr 150px;
            gap: 28px;
            align-items: center;
            padding: 24px 28px;
            border: 1px solid var(--color-border);
            border-radius: var(--radius-card);
            background: var(--color-bg-secondary);
            transition: var(--transition-base);
        }
        .channel-row:nth-child(even) {
            background: var(--color-bg);
        }
        .channel-row:hover {
            border-color: rgba(200, 16, 46, 0.3);
        }
        .channel-tag {
            border-left: 3px solid var(--color-primary);
            padding-left: 16px;
        }
        .channel-tag h3 {
            font-size: 26px;
            font-weight: 800;
            line-height: 1.2;
            color: var(--color-text);
        }
        .channel-tag p {
            font-size: 13px;
            color: var(--color-text-weak);
            margin-top: 4px;
        }
        .channel-thumbs {
            display: flex;
            gap: 10px;
            overflow: hidden;
        }
        .channel-thumbs img {
            width: 140px;
            height: 90px;
            object-fit: cover;
            border-radius: 4px;
            filter: brightness(0.85);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        .channel-thumbs img:hover {
            filter: brightness(1);
            transform: scale(1.02);
        }
        .channel-btn {
            justify-self: end;
        }

        /* ===== 最新动态 ===== */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .news-item {
            display: flex;
            gap: 18px;
            padding: 18px;
            background: var(--color-bg-secondary);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-card);
            transition: var(--transition-base);
        }
        .news-item:hover {
            border-left: 3px solid var(--color-primary);
            box-shadow: var(--shadow-card);
            transform: translateX(4px);
        }
        .news-thumb {
            flex: 0 0 120px;
            width: 120px;
            height: 80px;
            border-radius: 4px;
            overflow: hidden;
        }
        .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .news-body {
            flex: 1;
            min-width: 0;
        }
        .news-body .badge {
            margin-bottom: 6px;
            display: inline-flex;
        }
        .news-body h3 {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 6px;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-body h3 a:hover {
            color: var(--color-primary);
        }
        .news-body p {
            font-size: 14px;
            color: var(--color-text-secondary);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 10px;
        }
        .news-meta {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 12px;
            color: var(--color-text-weak);
        }
        .news-meta time {
            color: var(--color-text-weak);
        }
        .news-meta a {
            color: var(--color-primary);
            font-weight: 600;
            margin-left: auto;
        }
        .news-meta a:hover {
            color: #fff;
        }

        /* ===== 侧栏 ===== */
        .sidebar-card {
            background: var(--color-bg-secondary);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-card);
            padding: 26px;
            margin-bottom: 24px;
        }
        .sidebar-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--color-border-light);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar-card h3::before {
            content: '';
            width: 4px;
            height: 16px;
            background: var(--color-primary);
            border-radius: 2px;
        }
        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag-link {
            display: inline-block;
            padding: 6px 14px;
            background: var(--color-bg-tertiary);
            border: 1px solid var(--color-border);
            border-radius: 999px;
            font-size: 12px;
            color: var(--color-text-secondary);
            transition: var(--transition-base);
        }
        .tag-link:hover {
            background: var(--color-primary);
            border-color: var(--color-primary);
            color: #fff;
            box-shadow: 0 0 12px rgba(200, 16, 46, 0.3);
        }
        .subscribe-card p {
            font-size: 14px;
            color: var(--color-text-secondary);
            margin-bottom: 16px;
        }
        .sidebar-form {
            display: flex;
            gap: 8px;
        }
        .sidebar-form input {
            flex: 1;
            padding: 10px 14px;
            background: var(--color-bg);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-btn);
            color: var(--color-text);
            font-size: 14px;
        }
        .sidebar-form input:focus {
            outline: 2px solid rgba(200, 16, 46, 0.6);
            outline-offset: 2px;
            border-color: var(--color-primary);
        }
        .sidebar-form input::placeholder {
            color: var(--color-text-weak);
        }

        /* ===== CTA ===== */
        .cta-section {
            position: relative;
            background: var(--color-bg-secondary);
            padding: clamp(56px, 7vw, 96px) 0;
            overflow: hidden;
            border-top: 1px solid var(--color-border-light);
            border-bottom: 1px solid var(--color-border-light);
        }
        .cta-section::before {
            content: 'FORZA MILAN';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 120px;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.03);
            white-space: nowrap;
            letter-spacing: 20px;
            pointer-events: none;
            z-index: 0;
        }
        .cta-section::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--color-primary);
            box-shadow: 0 0 16px rgba(200, 16, 46, 0.6);
        }
        .cta-section .container {
            position: relative;
            z-index: 1;
            text-align: center;
        }
        .cta-section h2 {
            font-size: 34px;
            font-weight: 900;
            color: var(--color-text);
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .cta-section p {
            font-size: 16px;
            color: var(--color-text-secondary);
            margin-bottom: 32px;
        }
        .cta-form {
            display: flex;
            gap: 12px;
            max-width: 480px;
            margin: 0 auto;
        }
        .cta-form input {
            flex: 1;
            padding: 14px 18px;
            background: var(--color-bg);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-btn);
            color: var(--color-text);
            font-size: 15px;
            transition: border-color 0.25s ease;
        }
        .cta-form input:focus {
            outline: 2px solid rgba(200, 16, 46, 0.6);
            outline-offset: 2px;
            border-color: var(--color-primary);
        }
        .cta-form input::placeholder {
            color: var(--color-text-weak);
        }

        /* ===== FAQ ===== */
        .faq-accordion {
            background: transparent;
        }
        .faq-accordion .accordion-item {
            background: var(--color-bg-secondary);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            margin-bottom: 12px;
            transition: border-color 0.3s ease;
        }
        .faq-accordion .accordion-item.is-active {
            border-color: var(--color-primary);
        }
        .faq-accordion .accordion-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--color-text);
            padding: 18px 24px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 12px;
            line-height: 1.5;
        }
        .faq-accordion .accordion-title::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--color-primary);
            border-radius: 50%;
            flex-shrink: 0;
            box-shadow: 0 0 6px rgba(200, 16, 46, 0.5);
        }
        .faq-accordion .accordion-title::after {
            content: '+';
            margin-left: auto;
            font-size: 24px;
            color: var(--color-primary);
            font-weight: 300;
            transition: transform 0.3s ease;
        }
        .faq-accordion .accordion-item.is-active .accordion-title::after {
            transform: rotate(45deg);
        }
        .faq-accordion .accordion-content {
            color: var(--color-text-secondary);
            font-size: 14px;
            line-height: 1.7;
            padding: 0 24px 18px 42px;
            border-left: 2px solid var(--color-primary);
            margin: 0 20px 0 30px;
        }

        /* ===== 致密信息块 ===== */
        .info-section {
            background: var(--color-bg);
            border-top: 1px solid var(--color-border-light);
            padding: 60px 0;
        }
        .info-block {
            padding: 20px 0;
        }
        .info-block h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--color-text);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .info-block h3::before {
            content: '';
            width: 4px;
            height: 16px;
            background: var(--color-primary);
            border-radius: 2px;
        }
        .info-block p {
            font-size: 14px;
            line-height: 1.7;
            color: var(--color-text-secondary);
            margin-bottom: 10px;
        }
        .quick-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .quick-links a {
            font-size: 14px;
            color: var(--color-text-secondary);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: color 0.25s ease, padding-left 0.25s ease;
        }
        .quick-links a i {
            font-size: 8px;
            color: var(--color-primary);
        }
        .quick-links a:hover {
            color: var(--color-primary);
            padding-left: 6px;
        }
        .stat-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .stat-item {
            text-align: left;
        }
        .stat-num {
            font-size: 26px;
            font-weight: 900;
            color: var(--color-primary);
            line-height: 1.2;
            text-shadow: 0 0 12px rgba(200, 16, 46, 0.3);
        }
        .stat-label {
            font-size: 12px;
            color: var(--color-text-weak);
        }

        /* ===== Footer ===== */
        .site-footer {
            background: #060A0F;
            border-top: 1px solid rgba(255, 215, 0, 0.2);
            padding: 56px 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
            gap: 40px;
            padding-bottom: 40px;
        }
        .footer-brand .brand-name {
            font-size: 20px;
        }
        .footer-brand .brand-sub {
            margin-bottom: 14px;
        }
        .footer-brand p {
            font-size: 13px;
            color: var(--color-text-weak);
            line-height: 1.7;
            margin-bottom: 18px;
        }
        .social-icons {
            display: flex;
            gap: 12px;
        }
        .social-icons a {
            width: 36px;
            height: 36px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--color-bg-tertiary);
            border-radius: 50%;
            color: var(--color-text-secondary);
            font-size: 14px;
            transition: var(--transition-base);
            text-decoration: none;
        }
        .social-icons a:hover {
            background: var(--color-primary);
            color: #fff;
            box-shadow: 0 0 12px rgba(200, 16, 46, 0.4);
        }
        .footer-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--color-text);
            margin-bottom: 18px;
        }
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer-links a {
            font-size: 13px;
            color: var(--color-text-secondary);
            transition: color 0.25s ease;
        }
        .footer-links a:hover {
            color: var(--color-primary);
        }
        .footer-info-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 13px;
            color: var(--color-text-secondary);
            margin-bottom: 12px;
        }
        .footer-info-item i {
            color: var(--color-primary);
            margin-top: 3px;
            width: 14px;
        }
        .footer-copyright {
            border-top: 1px solid var(--color-border-light);
            padding: 20px 0;
            text-align: center;
            font-size: 12px;
            color: var(--color-text-weak);
            line-height: 1.8;
        }
        .footer-copyright a {
            color: var(--color-text-weak);
        }
        .footer-copyright a:hover {
            color: var(--color-primary);
        }
        .footer-copyright .site-declare {
            display: block;
            margin-top: 4px;
            font-size: 11px;
            color: rgba(255, 255, 255, 0.3);
        }

        /* ===== 空态 ===== */
        .empty-state {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 160px;
            width: 100%;
            padding: 40px;
        }
        .empty-circle {
            width: 80px;
            height: 80px;
            border: 2px solid var(--color-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 14px;
            font-size: 12px;
            color: var(--color-text-weak);
            line-height: 1.5;
            box-shadow: 0 0 16px rgba(200, 16, 46, 0.2);
        }
        .empty-text-only {
            text-align: center;
            font-size: 14px;
            color: var(--color-text-weak);
            padding: 40px;
        }

        /* ===== 响应式断点 ===== */
        @media (max-width: 1024px) {
            .channel-row {
                grid-template-columns: 1fr 1fr 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
            .hot-card-media {
                min-height: 180px;
            }
            .hero-title-line-2 {
                font-size: 38px;
            }
        }
        @media (max-width: 768px) {
            .main-nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--color-bg);
                flex-direction: column;
                align-items: flex-start;
                padding: 96px 36px 36px;
                gap: 0;
                transition: right 0.4s ease;
                z-index: 999;
                border-left: 1px solid var(--color-border);
                box-shadow: -20px 0 40px rgba(0, 0, 0, 0.5);
                margin: 0;
            }
            .main-nav.open {
                right: 0;
            }
            .nav-link {
                font-size: 20px;
                line-height: 3em;
                width: 100%;
                border-bottom: 1px solid var(--color-border-light);
            }
            .nav-link.active::after {
                left: 0;
                right: auto;
                width: 3px;
                height: 100%;
                top: 0;
                bottom: auto;
                box-shadow: 0 0 8px rgba(200, 16, 46, 0.5);
            }
            .hamburger {
                display: flex;
            }
            .header-actions .btn {
                display: none;
            }
            .hero-title-line-2 {
                font-size: 32px;
            }
            .hero-title-line-1 {
                font-size: 18px;
            }
            .hero-sub {
                font-size: 15px;
            }
            .hero-actions {
                flex-direction: column;
                width: 100%;
                max-width: 320px;
            }
            .hero-actions .btn {
                width: 100%;
            }
            .live-badge {
                bottom: 24px;
                right: 20px;
                font-size: 10px;
                padding: 5px 10px;
            }
            .focus-card {
                flex: 0 0 200px;
            }
            .channel-row {
                grid-template-columns: 1fr;
                gap: 16px;
                padding: 20px;
            }
            .channel-btn {
                justify-self: start;
            }
            .channel-thumbs {
                overflow-x: auto;
            }
            .news-item {
                flex-direction: column;
                gap: 12px;
            }
            .news-thumb {
                width: 100%;
                height: 140px;
            }
            .news-thumb img {
                border-radius: 4px;
            }
            .section-header h2 {
                font-size: 26px;
            }
            .cta-form {
                flex-direction: column;
            }
            .cta-form .btn {
                width: 100%;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .faq-accordion .accordion-content {
                padding-left: 20px;
            }
        }
        @media (max-width: 520px) {
            .brand-name {
                font-size: 15px;
            }
            .brand-sub {
                font-size: 8px;
                letter-spacing: 2px;
            }
            .hero-title-line-2 {
                font-size: 26px;
            }
            .hero-title-line-1 {
                font-size: 16px;
            }
            .section-header h2 {
                font-size: 22px;
            }
            .container {
                padding: 0 16px;
            }
        }

/* roulang page: category1 */
/* ========== 设计变量 ========== */
:root {
  --color-primary: #C8102E;
  --color-primary-dark: #8B0D20;
  --color-primary-mid: #A30E24;
  --color-accent: #FFD700;
  --color-bg: #0A0E14;
  --color-bg-secondary: #121821;
  --color-bg-tertiary: #1B2430;
  --color-bg-footer: #060A0F;
  --color-text: #EDEDED;
  --color-text-sub: #9AA5B1;
  --color-text-weak: #5C6672;
  --color-text-read: #1E1E1E;
  --color-text-read-sub: #4A5568;
  --color-border: rgba(255,255,255,0.08);
  --color-border-light: #E8E2DA;
  --radius-btn: 4px;
  --radius-card: 8px;
  --radius-badge: 999px;
  --shadow-card: 0 8px 32px rgba(0,0,0,0.55);
  --shadow-neon: 0 0 16px rgba(200,16,46,0.35);
  --shadow-neon-hover: 0 0 28px rgba(200,16,46,0.55);
  --spacing-section: clamp(56px, 7vw, 96px);
  --font-cn: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --font-en: "Inter", -apple-system, "Segoe UI", sans-serif;
}

/* ========== Reset & Base ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-cn);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--color-text); text-decoration: none; transition: color .3s ease; }
a:hover { color: #fff; }
ul, ol { list-style: none; }
button, input { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 {
  line-height: 1.3;
  font-weight: 700;
  font-family: var(--font-cn);
}
h1 { font-size: 34px; }
h2 { font-size: 28px; }
h3 { font-size: 20px; }
h4 { font-size: 16px; }

/* ========== 按钮 ========== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s ease;
  text-align: center;
  line-height: 1.4;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-neon);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
  box-shadow: var(--shadow-neon-hover);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-neon);
}
.btn-gold {
  background: var(--color-accent);
  color: #111;
  font-weight: 800;
}
.btn-gold:hover {
  background: #E6C200;
  color: #111;
  box-shadow: 0 0 20px rgba(255,215,0,0.4);
  transform: translateY(-2px);
}
.btn:focus-visible, input:focus-visible {
  outline: 2px solid rgba(200,16,46,0.6);
  outline-offset: 2px;
}

/* ========== 徽章 ========== */
.badge {
  display: inline-block;
  height: 22px;
  line-height: 22px;
  padding: 0 10px;
  border-radius: var(--radius-badge);
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.badge-gold {
  background: #111;
  color: var(--color-accent);
  border: 1px solid rgba(255,215,0,0.4);
}
.badge-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--color-text-sub);
}

/* ========== 导航 ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,14,20,0.92);
  border-bottom: 1px solid rgba(200,16,46,0.25);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
}
.brand-name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}
.brand-sub {
  font-size: 10px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 2px;
  font-family: var(--font-en);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  position: relative;
  color: var(--color-text-sub);
  font-size: 15px;
  font-weight: 500;
  padding: 6px 0;
  letter-spacing: 0.3px;
  transition: color .3s ease;
}
.nav-link:hover {
  color: #fff;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  box-shadow: 0 0 8px rgba(200,16,46,0.6);
  transition: width .3s ease;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
.nav-link.active {
  color: var(--color-primary);
  text-shadow: 0 0 8px rgba(200,16,46,0.6);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.search-btn {
  background: transparent;
  border: none;
  color: var(--color-text-sub);
  font-size: 16px;
  cursor: pointer;
  padding: 8px;
  transition: color .3s ease;
}
.search-btn:hover { color: var(--color-primary); }
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  box-shadow: 0 0 6px rgba(200,16,46,0.5);
  transition: all .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== 杂志Hero ========== */
.magazine-hero {
  position: relative;
  height: 320px;
  background: url('/assets/images/backpic/back-1.webp') center right / cover no-repeat;
  background-color: var(--color-bg);
  overflow: hidden;
}
.magazine-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 60%;
  background: linear-gradient(100deg, var(--color-primary) 60%, rgba(200,16,46,0.92) 80%, transparent 100%);
  z-index: 1;
}
.magazine-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(10,14,20,0.5) 0%, transparent 30%);
  z-index: 0;
}
.magazine-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
  padding-left: 56px;
}
.hero-badge {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  border: 1px solid rgba(255,215,0,0.4);
  padding: 5px 14px;
  border-radius: var(--radius-badge);
  width: fit-content;
}
.magazine-hero-content h1 {
  color: #fff;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 14px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.magazine-hero-content p {
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  line-height: 1.7;
  max-width: 440px;
}

/* ========== 板块标题 ========== */
.section-title-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}
.section-title {
  font-size: 28px;
  color: #fff;
  position: relative;
  padding-left: 16px;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: var(--color-primary);
  box-shadow: 0 0 8px rgba(200,16,46,0.5);
}
.section-sub {
  font-size: 13px;
  color: var(--color-text-weak);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ========== 头条卡 ========== */
.headline-section {
  padding: var(--spacing-section) 0 0;
}
.headline-card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow .4s ease, transform .4s ease;
}
.headline-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.headline-media {
  height: 100%;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.headline-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,14,20,0.15) 0%, transparent 50%);
}
.headline-content {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.headline-content .badge { margin-bottom: 16px; width: fit-content; }
.headline-content h2 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
}
.headline-content .excerpt {
  color: var(--color-text-sub);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--color-text-weak);
  margin-bottom: 22px;
}
.meta-row i { margin-right: 4px; font-size: 12px; }

/* ========== 资讯卡 ========== */
.news-grid-section {
  padding: var(--spacing-section) 0 0;
}
.news-card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 24px;
  transition: box-shadow .4s ease, transform .4s ease;
  height: 100%;
}
.news-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.news-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform .6s ease;
}
.news-card:hover .news-card-img { transform: scale(1.03); }
.news-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,20,0.4) 0%, transparent 60%);
}
.news-card-img .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}
.news-card-body {
  padding: 20px;
}
.news-card-body h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .3s ease;
}
.news-card:hover .news-card-body h3 { color: var(--color-primary); }
.news-card-body p {
  color: var(--color-text-sub);
  font-size: 14px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}
.news-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--color-text-weak);
}
.news-card-bottom .read-link {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 13px;
}
.news-card-bottom .read-link:hover { color: var(--color-accent); }

/* ========== 加载更多 ========== */
.load-more-wrap {
  text-align: center;
  margin-top: 20px;
  padding-bottom: 10px;
}

/* ========== 荣誉数据 ========== */
.stats-section {
  padding: var(--spacing-section) 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-secondary) 100%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-panel {
  background: var(--color-bg-tertiary);
  border-top: 3px solid var(--color-primary);
  padding: 28px 20px;
  text-align: center;
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  transition: transform .3s ease, box-shadow .3s ease;
}
.stat-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.stat-num {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  font-family: var(--font-en);
}
.stat-label {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: var(--color-text-sub);
  letter-spacing: 1px;
}

/* ========== 订阅 CTA ========== */
.newsletter-cta {
  padding: var(--spacing-section) 0;
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}
.newsletter-cta::before {
  content: 'FORZA MILAN';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 96px;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  letter-spacing: 4px;
  white-space: nowrap;
  font-family: var(--font-en);
  pointer-events: none;
}
.newsletter-cta::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-primary);
  box-shadow: 0 0 20px rgba(200,16,46,0.6);
}
.newsletter-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.newsletter-inner h2 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 12px;
}
.newsletter-inner > p {
  color: var(--color-text-sub);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 15px;
  transition: border-color .3s ease;
}
.newsletter-form input::placeholder { color: var(--color-text-weak); }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 8px rgba(200,16,46,0.2);
}

/* ========== FAQ ========== */
.faq-section {
  padding: var(--spacing-section) 0;
}
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}
.faq-accordion .accordion-item {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  margin-bottom: 12px;
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color .3s ease;
}
.faq-accordion .accordion-item.is-active {
  border-color: rgba(200,16,46,0.4);
}
.faq-accordion .accordion-title {
  display: block;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  position: relative;
  padding-right: 48px;
  transition: color .3s ease;
}
.faq-accordion .accordion-title:hover { color: var(--color-primary); }
.faq-accordion .accordion-title::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--color-primary);
  transition: transform .3s ease;
}
.faq-accordion .accordion-item.is-active .accordion-title::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-accordion .accordion-content {
  padding: 0 22px 18px;
  color: var(--color-text-sub);
  font-size: 15px;
  line-height: 1.7;
}

/* ========== 致密信息块 ========== */
.about-block {
  padding: 56px 0;
  background: var(--color-bg-footer);
  border-top: 1px solid var(--color-border);
}
.about-block .block-title {
  font-size: 18px;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  padding-left: 14px;
}
.about-block .block-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 3px;
  background: var(--color-primary);
}
.about-block p {
  color: var(--color-text-sub);
  font-size: 14px;
  line-height: 1.7;
}
.quick-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quick-links a {
  color: var(--color-text-sub);
  font-size: 14px;
  transition: color .3s ease, padding-left .3s ease;
}
.quick-links a:hover {
  color: var(--color-primary);
  padding-left: 6px;
}
.stat-mini {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
  color: var(--color-text-sub);
}
.stat-mini span {
  color: var(--color-accent);
  font-weight: 700;
  font-family: var(--font-en);
  margin-right: 4px;
}

/* ========== 页脚 ========== */
.site-footer {
  background: var(--color-bg-footer);
  border-top: 1px solid rgba(255,215,0,0.15);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.8fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand .brand-name {
  font-size: 18px;
  color: #fff;
}
.footer-brand .brand-sub {
  font-size: 10px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--color-text-weak);
  line-height: 1.6;
  margin-top: 14px;
}
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-text-sub);
  font-size: 14px;
  transition: all .3s ease;
}
.social-icons a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: var(--shadow-neon);
}
.footer-title {
  font-size: 16px;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--color-text-sub);
  font-size: 14px;
  transition: color .3s ease;
}
.footer-links a:hover { color: var(--color-primary); }
.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-sub);
  margin-top: 12px;
  line-height: 1.6;
}
.footer-info-item i {
  color: var(--color-primary);
  margin-top: 3px;
  width: 16px;
  text-align: center;
}
.footer-info-item a { color: var(--color-text-sub); }
.footer-info-item a:hover { color: var(--color-primary); }
.footer-copyright {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-weak);
}
.site-declare {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
}

/* ========== 响应式 ========== */
@media screen and (max-width: 1024px) {
  .header-inner { gap: 16px; }
  .main-nav { gap: 18px; }
  .brand-name { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .magazine-hero-content h1 { font-size: 30px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: rgba(10,14,20,0.98);
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 40px 32px;
    transition: right .4s ease;
    z-index: -1;
  }
  .main-nav.open { right: 0; }
  .nav-link { font-size: 20px; line-height: 3em; width: 100%; }
  .hamburger { display: flex; }
  .header-actions .btn { display: none; }
  .magazine-hero { height: auto; min-height: 380px; background-position: center; }
  .magazine-hero::before {
    width: 100%;
    background: linear-gradient(160deg, rgba(200,16,46,0.95) 0%, rgba(200,16,46,0.75) 50%, rgba(10,14,20,0.4) 100%);
  }
  .magazine-hero-content {
    max-width: 100%;
    padding: 40px 28px;
    justify-content: flex-end;
  }
  .magazine-hero-content h1 { font-size: 26px; }
  .headline-media { min-height: 220px; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-copyright { flex-direction: column; text-align: center; }
  .container { padding: 0 16px; }
}

@media screen and (max-width: 520px) {
  .section-title { font-size: 24px; }
  .stats-grid { grid-template-columns: 1fr; }
  .magazine-hero-content { padding: 32px 20px; }
  .magazine-hero-content h1 { font-size: 22px; }
  .headline-content { padding: 24px 20px; }
  .headline-content h2 { font-size: 20px; }
  .news-card-img { height: 160px; }
  .newsletter-inner h2 { font-size: 22px; }
  .btn { padding: 12px 20px; font-size: 14px; }
}

/* roulang page: article */
:root {
            --color-primary: #C8102E;
            --color-primary-dark: #8B0D20;
            --color-primary-mid: #A30E24;
            --color-accent: #FFD700;
            --bg-dark: #0A0E14;
            --bg-secondary: #121821;
            --bg-tertiary: #1B2430;
            --bg-light-read: #F7F3EE;
            --text-dark-main: #1E1E1E;
            --text-dark-secondary: #4A5568;
            --text-light-main: #EDEDED;
            --text-light-secondary: #9AA5B1;
            --text-light-weak: #5C6672;
            --border-dark: rgba(255, 255, 255, 0.08);
            --border-light: #E8E2DA;
            --radius-btn: 4px;
            --radius-card: 8px;
            --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Helvetica Neue", Arial, sans-serif;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.55);
            --shadow-neon: 0 0 16px rgba(200, 16, 46, 0.35);
            --shadow-neon-hover: 0 0 28px rgba(200, 16, 46, 0.55);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg-dark);
            color: var(--text-light-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button,
        input {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
            background: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: clamp(56px, 7vw, 96px) 0;
        }

        .text-center {
            text-align: center;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            font-weight: 700;
            font-size: 15px;
            letter-spacing: 1px;
            border-radius: var(--radius-btn);
            cursor: pointer;
            transition: all 0.3s ease;
            line-height: 1.2;
        }

        .btn-primary {
            background: var(--color-primary);
            color: #fff;
        }

        .btn-primary:hover {
            background: var(--color-primary-dark);
            box-shadow: var(--shadow-neon-hover);
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            color: var(--color-primary);
            border: 1px solid var(--color-primary);
        }

        .btn-outline:hover {
            background: var(--color-primary);
            color: #fff;
            box-shadow: var(--shadow-neon);
        }

        .btn-accent {
            background: var(--color-accent);
            color: #111;
            font-weight: 800;
        }

        .btn-accent:hover {
            background: #ffd700;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
            transform: translateY(-2px);
        }

        .btn:focus-visible,
        input:focus-visible,
        a:focus-visible {
            outline: 2px solid rgba(200, 16, 46, 0.6);
            outline-offset: 2px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            height: 22px;
            padding: 0 12px;
            background: var(--color-primary);
            color: #fff;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .badge-gold {
            background: rgba(255, 215, 0, 0.12);
            color: var(--color-accent);
            border: 1px solid rgba(255, 215, 0, 0.5);
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(10, 14, 20, 0.94);
            border-bottom: 1px solid rgba(200, 16, 46, 0.35);
            backdrop-filter: blur(8px);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            gap: 24px;
        }

        .brand {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
            flex-shrink: 0;
        }

        .brand-name {
            font-size: 18px;
            font-weight: 800;
            color: var(--text-light-main);
            letter-spacing: 1px;
            white-space: nowrap;
        }

        .brand-sub {
            font-size: 10px;
            color: var(--color-accent);
            letter-spacing: 3px;
            margin-top: 3px;
            text-transform: uppercase;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 28px;
            margin: 0 auto;
        }

        .nav-link {
            position: relative;
            padding: 0 4px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-light-secondary);
            line-height: 72px;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

        .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--color-primary);
            box-shadow: 0 0 8px rgba(200, 16, 46, 0.6);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: #fff;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link.active {
            color: var(--color-primary);
            text-shadow: 0 0 8px rgba(200, 16, 46, 0.6);
        }

        .nav-link.active::after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-shrink: 0;
        }

        .header-search {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            color: var(--text-light-secondary);
            font-size: 16px;
            border-radius: 50%;
            transition: color 0.3s, background 0.3s;
        }

        .header-search:hover {
            color: var(--color-primary);
            background: rgba(200, 16, 46, 0.1);
        }

        .btn-nav {
            padding: 9px 20px;
            font-size: 13px;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 38px;
            height: 38px;
            padding: 8px;
            background: transparent;
            cursor: pointer;
            border-radius: 4px;
        }

        .nav-toggle span {
            display: block;
            height: 2px;
            background: var(--color-primary);
            box-shadow: 0 0 6px rgba(200, 16, 46, 0.8);
            border-radius: 2px;
        }

        .mobile-drawer {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 14, 20, 0.98);
            padding: 40px 28px;
            z-index: 999;
            flex-direction: column;
            justify-content: flex-start;
            overflow-y: auto;
        }

        .mobile-drawer.open {
            display: flex;
        }

        .mobile-drawer .nav-link {
            font-size: 20px;
            line-height: 3em;
            color: var(--text-light-main);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .mobile-drawer .nav-link.active {
            color: var(--color-primary);
        }

        .mobile-drawer .btn {
            margin-top: 32px;
            width: 100%;
        }

        /* Article Hero */
        .article-hero {
            background: var(--bg-dark) url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            position: relative;
            padding: 72px 0;
            border-bottom: 2px solid var(--color-primary);
        }

        .article-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.72);
        }

        .article-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, var(--bg-dark) 100%);
        }

        .article-hero .container {
            position: relative;
            z-index: 2;
            max-width: 860px;
        }

        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 12px;
            color: var(--text-light-secondary);
            margin-bottom: 20px;
        }

        .breadcrumb a {
            color: var(--text-light-secondary);
            transition: color 0.3s;
        }

        .breadcrumb a:hover {
            color: var(--color-primary);
        }

        .breadcrumb .active-item {
            color: var(--text-light-main);
            max-width: 300px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .article-hero .badge {
            margin-bottom: 18px;
        }

        .article-hero h1 {
            font-size: 36px;
            line-height: 1.3;
            font-weight: 800;
            color: #fff;
            margin-bottom: 18px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            font-size: 13px;
            color: var(--text-light-secondary);
            align-items: center;
        }

        .article-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .article-meta i {
            color: var(--color-primary);
        }

        /* Article Read Area */
        .article-read-area {
            background: var(--bg-light-read);
            color: var(--text-dark-main);
            padding: 56px 0;
        }

        .article-content {
            max-width: 860px;
            margin: 0 auto;
            padding: 0 24px;
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-dark-main);
        }

        .article-content p {
            margin-bottom: 24px;
        }

        .article-content h2 {
            font-size: 28px;
            font-weight: 800;
            line-height: 1.3;
            margin: 40px 0 18px;
            color: var(--text-dark-main);
            position: relative;
            padding-left: 20px;
        }

        .article-content h2::before {
            content: "";
            position: absolute;
            left: 0;
            top: 8px;
            width: 8px;
            height: 8px;
            background: var(--color-primary);
            border-radius: 2px;
        }

        .article-content h3 {
            font-size: 20px;
            font-weight: 700;
            line-height: 1.4;
            margin: 32px 0 14px;
            color: var(--text-dark-main);
        }

        .article-content h4 {
            font-size: 18px;
            font-weight: 700;
            margin: 24px 0 12px;
        }

        .article-content a {
            color: var(--color-primary);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .article-content a:hover {
            color: var(--color-primary-dark);
        }

        .article-content blockquote {
            border-left: 4px solid var(--color-primary);
            background: rgba(200, 16, 46, 0.05);
            padding: 18px 24px;
            margin: 28px 0;
            color: var(--text-dark-secondary);
            font-size: 15px;
            border-radius: 0 8px 8px 0;
        }

        .article-content blockquote p:last-child {
            margin-bottom: 0;
        }

        .article-content img {
            width: 100%;
            border-radius: var(--radius-card);
            margin: 28px 0 8px;
        }

        .article-content figcaption,
        .article-content .wp-caption-text {
            font-size: 13px;
            color: var(--text-light-weak);
            text-align: center;
            margin-bottom: 24px;
        }

        .article-content ul,
        .article-content ol {
            margin: 0 0 24px 22px;
        }

        .article-content ul li {
            list-style: none;
            position: relative;
            padding-left: 12px;
            margin-bottom: 8px;
        }

        .article-content ul li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            width: 6px;
            height: 6px;
            background: var(--color-primary);
            border-radius: 50%;
        }

        .article-content ol li {
            margin-bottom: 8px;
        }

        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 28px 0;
            font-size: 14px;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
        }

        .article-content table th,
        .article-content table td {
            border: 1px solid var(--border-light);
            padding: 10px 14px;
            text-align: left;
        }

        .article-content table th {
            background: var(--bg-secondary);
            color: #fff;
            font-weight: 700;
        }

        .article-content pre,
        .article-content code {
            background: var(--bg-secondary);
            color: #f0f0f0;
            font-family: 'SFMono-Regular', Consolas, monospace;
            border-radius: 6px;
        }

        .article-content code {
            padding: 2px 6px;
            font-size: 14px;
            border: 1px solid rgba(200, 16, 46, 0.3);
        }

        .article-content pre {
            padding: 20px;
            overflow-x: auto;
            margin: 28px 0;
            border-left: 2px solid var(--color-primary);
        }

        .article-content pre code {
            padding: 0;
            border: none;
            background: transparent;
        }

        .article-content hr {
            border: none;
            border-top: 1px solid var(--border-light);
            margin: 40px 0;
        }

        /* Article Tags */
        .article-tags {
            max-width: 860px;
            margin: 40px auto 0;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag-item {
            display: inline-flex;
            align-items: center;
            padding: 6px 16px;
            background: transparent;
            border: 1px solid rgba(200, 16, 46, 0.4);
            border-radius: 999px;
            font-size: 12px;
            color: var(--text-dark-secondary);
            transition: all 0.3s ease;
        }

        .tag-item:hover {
            background: var(--color-primary);
            color: #fff;
            border-color: var(--color-primary);
        }

        /* Not Found */
        .not-found {
            text-align: center;
            padding: 80px 24px;
            max-width: 860px;
            margin: 0 auto;
            background: rgba(200, 16, 46, 0.03);
            border: 2px solid rgba(200, 16, 46, 0.2);
            border-radius: var(--radius-card);
        }

        .not-found-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            border: 2px solid var(--color-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--color-primary);
        }

        .not-found h2 {
            font-size: 28px;
            margin-bottom: 12px;
            color: var(--text-dark-main);
        }

        .not-found p {
            color: var(--text-dark-secondary);
            margin-bottom: 24px;
        }

        /* Related */
        .related-section {
            background: var(--bg-dark);
            position: relative;
            overflow: hidden;
        }

        .related-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(200, 16, 46, 0.5), transparent);
        }

        .related-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 36px;
        }

        .related-header h2 {
            font-size: 30px;
            font-weight: 800;
            color: var(--text-light-main);
        }

        .related-header h2 span {
            display: block;
            font-size: 13px;
            font-weight: 400;
            color: var(--text-light-weak);
            letter-spacing: 3px;
            margin-top: 6px;
            text-transform: uppercase;
        }

        .related-back {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: var(--text-light-secondary);
            transition: color 0.3s;
        }

        .related-back:hover {
            color: var(--color-primary);
        }

        .related-card {
            position: relative;
            border-radius: var(--radius-card);
            overflow: hidden;
            background: var(--bg-secondary);
            border: 1px solid var(--border-dark);
            transition: all 0.4s ease;
            display: block;
            height: 100%;
        }

        .related-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card);
            border-color: rgba(200, 16, 46, 0.4);
        }

        .related-card-main .related-card-img {
            height: 280px;
        }

        .related-card-list .related-card-img {
            width: 120px;
            height: 100px;
            flex-shrink: 0;
        }

        .related-card-img {
            overflow: hidden;
            position: relative;
            background: var(--bg-tertiary);
        }

        .related-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .related-card:hover .related-card-img img {
            transform: scale(1.04);
        }

        .related-card-body {
            padding: 18px;
        }

        .related-card-list {
            display: flex;
            background: var(--bg-secondary);
            border: 1px solid var(--border-dark);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: all 0.3s ease;
            margin-bottom: 16px;
            height: 100%;
        }

        .related-card-list:hover {
            border-color: rgba(200, 16, 46, 0.4);
            box-shadow: var(--shadow-card);
            transform: translateY(-2px);
        }

        .related-card-list .related-card-body {
            padding: 14px 18px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            flex: 1;
        }

        .related-card-body .badge {
            margin-bottom: 10px;
        }

        .related-card-body h3 {
            font-size: 16px;
            font-weight: 700;
            line-height: 1.4;
            color: var(--text-light-main);
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .related-card-main .related-card-body h3 {
            font-size: 22px;
        }

        .related-card-body p {
            font-size: 13px;
            color: var(--text-light-secondary);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .related-meta {
            display: flex;
            gap: 12px;
            font-size: 12px;
            color: var(--text-light-weak);
            margin-top: 12px;
        }

        /* About block */
        .about-block {
            background: var(--bg-dark);
            border-top: 1px solid var(--border-dark);
            padding: 56px 0;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 5fr 4fr 3fr;
            gap: 40px;
        }

        .about-block h3 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-light-main);
            margin-bottom: 14px;
            letter-spacing: 1px;
        }

        .about-block p {
            font-size: 13px;
            color: var(--text-light-secondary);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .quick-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .quick-links a {
            font-size: 14px;
            color: var(--text-light-secondary);
            transition: color 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .quick-links a::before {
            content: "";
            width: 4px;
            height: 4px;
            background: var(--color-primary);
            border-radius: 50%;
        }

        .quick-links a:hover {
            color: var(--color-primary);
        }

        .stat-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .stat-item {
            text-align: center;
            padding: 16px 8px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-dark);
            border-top: 2px solid var(--color-primary);
            border-radius: var(--radius-card);
        }

        .stat-item strong {
            display: block;
            font-size: 24px;
            font-weight: 800;
            color: var(--text-light-main);
            line-height: 1.2;
        }

        .stat-item span {
            font-size: 12px;
            color: var(--text-light-weak);
            margin-top: 4px;
            display: block;
        }

        /* Footer */
        .site-footer {
            background: #060A0F;
            border-top: 1px solid rgba(255, 215, 0, 0.4);
            padding: 60px 0 28px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1.4fr 1fr;
            gap: 40px;
            margin-bottom: 48px;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
        }

        .footer-brand .brand {
            margin-bottom: 4px;
        }

        .footer-brand p {
            font-size: 13px;
            line-height: 1.8;
            color: var(--text-light-weak);
        }

        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 18px;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-dark);
            border-radius: 50%;
            color: var(--text-light-secondary);
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            color: var(--color-primary);
            border-color: var(--color-primary);
            box-shadow: var(--shadow-neon);
        }

        .footer-title {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-light-main);
            margin-bottom: 18px;
            letter-spacing: 1px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            font-size: 14px;
            color: var(--text-light-secondary);
            transition: color 0.3s, transform 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--color-primary);
            transform: translateX(3px);
        }

        .footer-info-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--text-light-secondary);
            margin-top: 12px;
            line-height: 1.6;
        }

        .footer-info-item i {
            color: var(--color-primary);
            width: 16px;
            text-align: center;
        }

        .footer-info-item a {
            color: var(--text-light-secondary);
            transition: color 0.3s;
        }

        .footer-info-item a:hover {
            color: var(--color-primary);
        }

        .footer-copyright {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 12px;
            color: var(--text-light-weak);
        }

        .site-declare {
            letter-spacing: 0.5px;
        }

        /* Responsive */
        @media screen and (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }

            .about-grid {
                grid-template-columns: 1fr 1fr;
            }

            .main-nav {
                gap: 20px;
            }
        }

        @media screen and (max-width: 768px) {
            .main-nav {
                display: none;
            }

            .nav-toggle {
                display: flex;
            }

            .btn-nav {
                display: none;
            }

            .header-inner {
                height: 64px;
            }

            .brand-name {
                font-size: 15px;
            }

            .brand-sub {
                font-size: 9px;
            }

            .article-hero {
                padding: 48px 0;
            }

            .article-hero h1 {
                font-size: 28px;
            }

            .article-content {
                font-size: 15px;
                padding: 0 18px;
            }

            .article-content h2 {
                font-size: 24px;
            }

            .related-header h2 {
                font-size: 24px;
            }

            .related-card-main .related-card-img {
                height: 200px;
            }

            .related-card-list .related-card-img {
                width: 100px;
                height: 90px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .stat-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media screen and (max-width: 520px) {
            .container {
                padding: 0 16px;
            }

            .header-actions {
                gap: 8px;
            }

            .article-hero h1 {
                font-size: 24px;
            }

            .article-meta {
                gap: 10px;
                font-size: 12px;
            }

            .related-card-list {
                flex-direction: column;
            }

            .related-card-list .related-card-img {
                width: 100%;
                height: 140px;
            }

            .related-card-main .related-card-img {
                height: 160px;
            }

            .related-card-body {
                padding: 14px;
            }

            .related-card-main .related-card-body h3 {
                font-size: 18px;
            }

            .stat-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }

            .stat-item strong {
                font-size: 20px;
            }

            .footer-copyright {
                flex-direction: column;
                text-align: center;
            }
        }

        @media screen and (max-width: 375px) {
            .article-hero h1 {
                font-size: 22px;
            }

            .breadcrumb .active-item {
                max-width: 160px;
            }

            .brand-name {
                font-size: 14px;
                letter-spacing: 0;
            }
        }

        /* Motion */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease both;
        }

/* roulang page: category3 */
/* ===== 设计变量 ===== */
:root {
  --color-primary: #C8102E;
  --color-primary-dark: #8B0D20;
  --color-primary-mid: #A30E24;
  --color-accent: #FFD700;
  --color-bg: #0A0E14;
  --color-bg-secondary: #121821;
  --color-bg-tertiary: #1B2430;
  --color-bg-light: #F7F3EE;
  --color-text: #EDEDED;
  --color-text-secondary: #9AA5B1;
  --color-text-weak: #5C6672;
  --color-border: rgba(255,255,255,0.08);
  --color-border-light: #E8E2DA;
  --radius-btn: 4px;
  --radius-card: 8px;
  --shadow-card: 0 8px 32px rgba(0,0,0,0.55);
  --transition: 0.3s ease;
}

/* ===== Reset ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Helvetica Neue", Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input { font-family: inherit; }

/* ===== 容器 ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== 按钮 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  transition: all var(--transition);
  line-height: 1.2;
  font-size: 15px;
}
.btn:focus-visible {
  outline: 2px solid rgba(200,16,46,0.6);
  outline-offset: 2px;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 0 16px rgba(200,16,46,0.35);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 0 28px rgba(200,16,46,0.55);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.btn-gold {
  background: var(--color-accent);
  color: #1A1A1A;
  border-color: var(--color-accent);
  font-weight: 800;
}
.btn-gold:hover {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 0 28px rgba(255,215,0,0.55);
  transform: translateY(-1px);
}
.btn-small { padding: 8px 18px; font-size: 13px; }
.btn-large { padding: 14px 36px; font-size: 16px; }

/* ===== Header / 导航 ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,14,20,0.92);
  border-bottom: 1px solid rgba(200,16,46,0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
}
.brand-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.brand-sub {
  font-size: 10px;
  color: var(--color-accent);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 2px;
}
.main-nav {
  display: flex;
  gap: 4px;
  align-items: stretch;
}
.nav-link {
  display: inline-block;
  padding: 26px 14px 22px;
  color: var(--color-text-secondary);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav-link:hover { color: #fff; }
.nav-link.active {
  color: var(--color-text);
  border-bottom-color: var(--color-primary);
  text-shadow: 0 0 8px rgba(200,16,46,0.6);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -2px;
  height: 2px;
  background: var(--color-primary);
  box-shadow: 0 0 8px rgba(200,16,46,0.6);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-primary);
  box-shadow: 0 0 6px rgba(200,16,46,0.5);
  border-radius: 2px;
  width: 100%;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== 板块标题 ===== */
.section-title {
  font-size: 28px;
  line-height: 1.3;
  color: #1E1E1E;
  position: relative;
  padding-left: 16px;
  font-weight: 800;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: var(--color-primary);
  box-shadow: 0 0 8px rgba(200,16,46,0.5);
}
.section-title.dark { color: var(--color-text); }
.section-title.dark::before { background: var(--color-accent); box-shadow: 0 0 8px rgba(255,215,0,0.4); }
.section-sub {
  color: var(--color-text-weak);
  font-size: 14px;
  margin-top: 6px;
}

/* ===== Hero ===== */
.comm-hero {
  background: var(--color-bg-light);
  padding: 68px 0 60px;
  position: relative;
  overflow: hidden;
}
.comm-hero::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 48px solid rgba(200,16,46,0.08);
  right: -80px;
  top: -120px;
  pointer-events: none;
}
.comm-hero::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(10,14,20,0.04);
  transform: rotate(45deg);
  right: 180px;
  bottom: -80px;
  pointer-events: none;
}
.comm-hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.comm-hero h1 {
  font-size: 36px;
  line-height: 1.3;
  color: #1E1E1E;
  max-width: 820px;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.comm-hero p {
  color: #4A5568;
  font-size: 16px;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 560px;
}
.comm-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.comm-hero-actions .btn-primary { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.comm-hero-actions .btn-primary:hover { background: var(--color-primary-dark); }
.comm-hero-actions .btn-outline { border-color: rgba(0,0,0,0.25); color: #1E1E1E; }
.comm-hero-actions .btn-outline:hover { border-color: var(--color-primary); color: #fff; }
.gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-accent);
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 800;
  padding: 8px 22px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(255,215,0,0.35);
  flex-shrink: 0;
  margin-top: 12px;
}
.gold-badge i { font-size: 12px; }

/* ===== 社区内容区 ===== */
.community-section {
  background: var(--color-bg-light);
  padding: 0 0 72px;
}
.community-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-top: 48px;
}
.community-grid .cell { margin-bottom: 32px; }
.community-col:nth-child(even) .post-card { margin-top: 32px; }

/* ===== 帖子卡片 ===== */
.post-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(200,16,46,0.35);
}
.post-media {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.post-card:hover .post-media img { transform: scale(1.03); }
.post-body {
  padding: 20px 20px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.post-tag {
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  height: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.post-author {
  color: var(--color-text-weak);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post-title {
  color: #1E1E1E;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 8px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-summary {
  color: #4A5568;
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-weak);
  font-size: 13px;
  border-top: 1px solid #F0ECE5;
  padding-top: 12px;
}
.post-link {
  margin-left: auto;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
}
.post-link:hover { color: var(--color-primary-dark); text-decoration: underline; }

/* ===== 热门侧栏 ===== */
.hot-sidebar {
  background: var(--color-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  position: sticky;
  top: 96px;
  border: 1px solid var(--color-border);
}
.hot-sidebar-head {
  padding: 20px 20px 14px;
  border-bottom: 1px solid var(--color-border);
}
.hot-sidebar-head h3 {
  color: var(--color-text);
  font-size: 18px;
  font-weight: 700;
}
.hot-sidebar-head p {
  color: var(--color-text-weak);
  font-size: 12px;
  margin-top: 4px;
}
.hot-list { padding: 8px 0 16px; }
.hot-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--transition);
}
.hot-list li:last-child { border-bottom: none; }
.hot-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
  font-style: italic;
  min-width: 32px;
}
.hot-list a {
  color: var(--color-text-secondary);
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hot-list li:hover { background: var(--color-bg-tertiary); }
.hot-list li:hover a { color: #fff; }

/* ===== 版块列表 ===== */
.boards-section {
  background: var(--color-bg);
  padding: 64px 0;
}
.boards-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}
.board-row {
  display: grid;
  grid-template-columns: 150px 1fr auto auto;
  align-items: center;
  gap: 24px;
  background: var(--color-bg-secondary);
  border-left: 3px solid var(--color-primary);
  padding: 18px 24px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 12px;
  transition: background var(--transition), transform var(--transition);
}
.board-row:last-child { margin-bottom: 0; }
.board-row:hover {
  background: var(--color-bg-tertiary);
  transform: translateX(4px);
}
.board-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  padding-left: 8px;
  position: relative;
}
.board-name::before {
  content: '▶';
  color: var(--color-primary);
  font-size: 10px;
  margin-right: 6px;
}
.board-desc {
  color: var(--color-text-secondary);
  font-size: 14px;
}
.board-count {
  color: var(--color-text-weak);
  font-size: 13px;
  background: rgba(255,255,255,0.04);
  padding: 4px 12px;
  border-radius: 999px;
}
.board-enter {
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 600;
}
.board-enter:hover { text-decoration: underline; }

/* ===== 统计指标 ===== */
.stats-section {
  background: var(--color-bg-secondary);
  padding: 48px 0;
}
.stats-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-item {
  background: var(--color-bg);
  border-top: 3px solid var(--color-primary);
  padding: 22px 16px;
  text-align: center;
  border-radius: 0 0 6px 6px;
  transition: transform var(--transition);
}
.stat-item:hover { transform: translateY(-4px); }
.stat-item strong {
  font-size: 32px;
  color: var(--color-text);
  display: block;
  line-height: 1.2;
  font-weight: 800;
}
.stat-item span {
  font-size: 14px;
  color: var(--color-text-weak);
  display: block;
  margin-top: 6px;
}

/* ===== CTA区 ===== */
.cta-join {
  background: var(--color-bg-secondary);
  padding: 56px 0;
  border-top: 3px solid var(--color-accent);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
.cta-join::after {
  content: 'FORZA MILAN';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(-6deg);
  font-size: 72px;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 4px;
}
.cta-join-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.cta-join h2 {
  color: var(--color-text);
  font-size: 28px;
  line-height: 1.3;
}
.cta-join p {
  color: var(--color-text-secondary);
  font-size: 15px;
  margin-top: 6px;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--color-bg);
  padding: 64px 0 72px;
}
.faq-title-row {
  margin-bottom: 32px;
}
.accordion .accordion-item {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.accordion .accordion-item:hover { border-color: rgba(200,16,46,0.4); }
.accordion .accordion-item.is-active { border-left: 3px solid var(--color-primary); }
.accordion-title {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 600;
  padding: 18px 20px;
  border-bottom: none !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-title:hover { background: var(--color-bg-tertiary); color: #fff; }
.accordion-title::after {
  content: '+';
  font-size: 22px;
  color: var(--color-primary);
}
.accordion-item.is-active .accordion-title::after {
  content: '−';
  color: var(--color-accent);
}
.accordion-content {
  color: var(--color-text-secondary);
  font-size: 14px;
  padding: 16px 20px;
  border-top: 1px solid var(--color-border);
  background: rgba(255,255,255,0.02);
}
.accordion-content p { margin-bottom: 6px; }
.accordion-content p:last-child { margin-bottom: 0; }

/* ===== About 信息块 ===== */
.about-block {
  background: var(--color-bg-secondary);
  padding: 56px 0;
  border-top: 1px solid var(--color-border);
}
.about-block h3 {
  color: var(--color-text);
  font-size: 18px;
  margin-bottom: 16px;
  position: relative;
  padding-left: 14px;
}
.about-block h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: var(--color-accent);
}
.about-block p {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.75;
  max-width: 420px;
}
.about-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-links a {
  color: var(--color-text-secondary);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.about-links a:hover { color: var(--color-primary); }
.about-links a::before { content: '›'; color: var(--color-primary); font-weight: 700; }
.about-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-stats div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 8px;
  color: var(--color-text-secondary);
  font-size: 14px;
}
.about-stats strong { color: var(--color-text); }

/* ===== 页脚 ===== */
.site-footer {
  background: #060A0F;
  border-top: 1px solid rgba(255,215,0,0.35);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 0.9fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.7;
}
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--color-text-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all var(--transition);
}
.social-icons a:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}
.footer-title {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--color-text-secondary);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--color-primary); }
.footer-links a::before { content: '›'; color: var(--color-primary); }
.footer-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-secondary);
  font-size: 14px;
  margin-top: 12px;
}
.footer-info-item i { color: var(--color-accent); width: 16px; }
.footer-info-item a:hover { color: #fff; }
.footer-copyright {
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--color-text-weak);
  font-size: 13px;
}
.site-declare { font-size: 12px; }

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .brand-name { font-size: 16px; }
  .nav-link { padding: 26px 10px 22px; font-size: 14px; }
  .board-row { grid-template-columns: 130px 1fr auto; }
  .board-enter { display: none; }
  .stats-panel { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .header-inner { height: 64px; }
  .site-header { height: auto; }
  .nav-toggle { display: flex; }
  .header-actions { display: none; }
  .main-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,14,20,0.97);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 28px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-link {
    padding: 14px 0;
    font-size: 20px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-secondary);
  }
  .nav-link.active::after { display: none; }
  .comm-hero { padding: 48px 0 44px; }
  .comm-hero h1 { font-size: 28px; }
  .comm-hero-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .gold-badge { margin-top: 0; }
  .community-grid .cell { margin-bottom: 24px; }
  .community-col:nth-child(even) .post-card { margin-top: 0; }
  .community-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section-title { font-size: 24px; }
  .hot-sidebar { position: static; margin-top: 8px; }
  .board-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 20px;
  }
  .board-name { font-size: 16px; }
  .board-count { display: inline-block; width: fit-content; }
  .stats-panel { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cta-join { padding: 44px 0; }
  .cta-join-inner { flex-direction: column; align-items: flex-start; }
  .cta-join h2 { font-size: 24px; }
  .btn-large { width: 100%; }
  .faq-section { padding: 48px 0; }
  .about-block { padding: 40px 0; }
  .about-block .cell { margin-bottom: 28px; }
  .about-block .cell:last-child { margin-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .footer-copyright { flex-direction: column; gap: 8px; }
}

@media (max-width: 520px) {
  .brand-name { font-size: 15px; }
  .comm-hero h1 { font-size: 24px; }
  .comm-hero p { font-size: 14px; }
  .comm-hero-actions { flex-direction: column; }
  .comm-hero-actions .btn { width: 100%; }
  .stats-panel { grid-template-columns: 1fr 1fr; }
  .stat-item strong { font-size: 26px; }
  .stat-item span { font-size: 13px; }
  .post-media { height: 150px; }
  .board-row { padding: 14px 16px; }
  .footer-info-item { font-size: 13px; }
  .site-declare { font-size: 11px; }
}

/* roulang page: category2 */
/* ===== Design Variables ===== */
        :root {
            --color-primary: #C8102E;
            --color-primary-dark: #8B0D20;
            --color-primary-mid: #A30E24;
            --color-accent: #FFD700;
            --color-bg: #0A0E14;
            --color-bg-alt: #121821;
            --color-bg-hover: #1B2430;
            --color-text: #EDEDED;
            --color-text-secondary: #9AA5B1;
            --color-text-weak: #5C6672;
            --color-border: rgba(255, 255, 255, 0.08);
            --color-light-bg: #F7F3EE;
            --radius-btn: 4px;
            --radius-card: 8px;
            --radius-badge: 999px;
            --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.55);
            --shadow-neon: 0 0 16px rgba(200, 16, 46, 0.35);
            --shadow-neon-hover: 0 0 28px rgba(200, 16, 46, 0.55);
            --transition: all 0.3s ease;
            --header-height: 72px;
        }

        /* ===== Reset & Base ===== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Helvetica Neue", Arial, sans-serif;
            background: var(--color-bg);
            color: var(--color-text);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        ul,
        ol {
            list-style: none;
        }

        button,
        input {
            font-family: inherit;
            font-size: 100%;
        }

        ::selection {
            background: rgba(200, 16, 46, 0.7);
            color: #fff;
        }

        /* ===== Container ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== Header / Nav ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(10, 14, 20, 0.92);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(200, 16, 46, 0.25);
            height: var(--header-height);
            display: flex;
            align-items: center;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 24px;
        }

        .brand {
            display: flex;
            flex-direction: column;
            line-height: 1.25;
            flex-shrink: 0;
        }

        .brand-name {
            font-size: 18px;
            font-weight: 800;
            color: var(--color-text);
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .brand-sub {
            font-size: 10px;
            color: var(--color-accent);
            letter-spacing: 2px;
            margin-top: 2px;
            font-weight: 600;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 28px;
            margin: 0 auto;
        }

        .nav-link {
            font-size: 15px;
            color: var(--color-text-secondary);
            position: relative;
            padding: 8px 2px;
            font-weight: 500;
            line-height: 1.6;
        }

        .nav-link:hover {
            color: #fff;
        }

        .nav-link.active {
            color: var(--color-primary);
            font-weight: 600;
            text-shadow: 0 0 8px rgba(200, 16, 46, 0.6);
        }

        .nav-link.active::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--color-primary);
            box-shadow: 0 0 8px rgba(200, 16, 46, 0.5);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .search-btn {
            background: none;
            border: none;
            color: var(--color-text-secondary);
            font-size: 16px;
            cursor: pointer;
            padding: 8px 10px;
            border-radius: 4px;
        }

        .search-btn:hover {
            color: #fff;
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
            padding: 10px;
            border-radius: 4px;
        }

        .hamburger span {
            width: 22px;
            height: 2px;
            background: var(--color-primary);
            box-shadow: 0 0 8px rgba(200, 16, 46, 0.6);
            display: block;
            transition: var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .nav-cta {
            display: none;
        }

        /* ===== Buttons ===== */
        .btn {
            display: inline-block;
            font-weight: 700;
            letter-spacing: 1px;
            border-radius: var(--radius-btn);
            transition: var(--transition);
            cursor: pointer;
            text-align: center;
            border: none;
            line-height: 1.4;
        }

        .btn-primary {
            background: var(--color-primary);
            color: #fff;
            padding: 12px 28px;
        }

        .btn-primary:hover {
            background: var(--color-primary-dark);
            box-shadow: var(--shadow-neon-hover);
        }

        .btn-outline {
            background: transparent;
            color: var(--color-primary);
            border: 1px solid var(--color-primary);
            padding: 11px 26px;
        }

        .btn-outline:hover {
            background: var(--color-primary);
            color: #fff;
            box-shadow: var(--shadow-neon);
        }

        .btn-gold {
            background: var(--color-accent);
            color: #111;
            padding: 12px 28px;
        }

        .btn-gold:hover {
            background: #e6c200;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }

        .btn-sm {
            padding: 8px 18px;
            font-size: 13px;
        }

        .btn:focus,
        .search-btn:focus,
        .hamburger:focus,
        input:focus,
        .accordion-title:focus {
            outline: 2px solid rgba(200, 16, 46, 0.6);
            outline-offset: 2px;
        }

        /* ===== Hero (Category 2 - Data Panel Style) ===== */
        .hero-report {
            position: relative;
            padding: clamp(72px, 9vw, 140px) 0;
            background: url('/assets/images/backpic/back-2.png') center/cover no-repeat, var(--color-bg-alt);
            text-align: center;
            overflow: hidden;
        }

        .hero-report::before {
            content: "";
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(135deg, transparent 0 24px, rgba(200, 16, 46, 0.07) 24px 26px);
            z-index: 1;
        }

        .hero-report::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 14, 20, 0.55) 0%, rgba(10, 14, 20, 0.35) 50%, rgba(10, 14, 20, 0.85) 100%);
            z-index: 1;
        }

        .hero-report-inner {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            font-size: 12px;
            letter-spacing: 2px;
            color: var(--color-accent);
            border: 1px solid rgba(255, 215, 0, 0.5);
            border-radius: var(--radius-badge);
            padding: 4px 14px;
            margin-bottom: 20px;
            background: rgba(10, 14, 20, 0.6);
        }

        .hero-title {
            font-size: clamp(28px, 4.5vw, 42px);
            font-weight: 800;
            line-height: 1.3;
            color: #fff;
            max-width: 860px;
            margin: 0 auto 16px;
        }

        .hero-subtitle {
            font-size: 16px;
            color: var(--color-text-secondary);
            max-width: 620px;
            margin: 0 auto;
        }

        .season-label {
            display: block;
            margin-top: 26px;
            font-size: 14px;
            letter-spacing: 3px;
            color: var(--color-accent);
            font-weight: 600;
        }

        .hero-line {
            width: 60px;
            height: 2px;
            background: var(--color-primary);
            margin: 28px auto 0;
            box-shadow: 0 0 8px rgba(200, 16, 46, 0.5);
        }

        /* ===== Section ===== */
        .section {
            padding: clamp(56px, 7vw, 96px) 0;
        }

        .section-bg-alt {
            background: var(--color-bg-alt);
        }

        .section-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 36px;
            gap: 16px;
            flex-wrap: wrap;
        }

        .section-kicker {
            font-size: 12px;
            letter-spacing: 2px;
            color: var(--color-primary);
            font-weight: 700;
            text-transform: uppercase;
        }

        .section-title {
            font-size: clamp(24px, 3vw, 30px);
            font-weight: 800;
            line-height: 1.3;
            margin-top: 4px;
            color: var(--color-text);
        }

        /* ===== Badge ===== */
        .badge {
            display: inline-block;
            height: 22px;
            line-height: 22px;
            padding: 0 10px;
            border-radius: var(--radius-badge);
            font-size: 11px;
            font-weight: 600;
            white-space: nowrap;
            vertical-align: middle;
        }

        .badge-primary {
            background: var(--color-primary);
            color: #fff;
        }

        /* ===== Result Panels ===== */
        .results-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .result-panel {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            background: var(--color-bg-alt);
            border: 1px solid var(--color-border);
            border-left: 3px solid var(--color-primary);
            border-radius: var(--radius-card);
            padding: 22px 28px;
            transition: var(--transition);
        }

        .result-panel:hover {
            background: var(--color-bg-hover);
            transform: translateY(-2px);
            box-shadow: var(--shadow-card-hover);
        }

        .result-teams {
            display: flex;
            align-items: center;
            gap: 24px;
            min-width: 0;
            flex-wrap: wrap;
        }

        .result-team-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--color-text);
        }

        .result-score {
            font-size: 40px;
            font-weight: 800;
            color: var(--color-primary);
            text-shadow: 0 0 12px rgba(200, 16, 46, 0.35);
            letter-spacing: 2px;
        }

        .result-meta {
            font-size: 13px;
            color: var(--color-text-weak);
            text-align: center;
        }

        .result-meta span {
            display: block;
        }

        .result-status {
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: var(--radius-badge);
            white-space: nowrap;
        }

        .status-closed {
            background: rgba(255, 215, 0, 0.1);
            color: var(--color-accent);
            border: 1px solid rgba(255, 215, 0, 0.3);
        }

        .status-live {
            background: rgba(200, 16, 46, 0.15);
            color: var(--color-primary);
            border: 1px solid rgba(200, 16, 46, 0.4);
        }

        /* ===== Stats Panel & Timeline ===== */
        .stats-panel,
        .events-panel {
            background: var(--color-bg);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-card);
            padding: 26px;
            height: 100%;
            transition: var(--transition);
        }

        .stats-panel h3,
        .events-panel h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--color-text);
            border-bottom: 1px solid var(--color-border);
            padding-bottom: 12px;
        }

        .stat-line {
            margin-bottom: 20px;
        }

        .stat-line-head {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            color: var(--color-text-secondary);
            margin-bottom: 6px;
        }

        .stat-line-head .team-name {
            font-weight: 600;
            color: var(--color-text);
        }

        .progress-track {
            height: 6px;
            background: var(--color-bg-hover);
            border-radius: 4px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            border-radius: 4px;
            transition: width 0.8s ease;
        }

        .progress-fill.home {
            background: var(--color-primary);
            box-shadow: 0 0 8px rgba(200, 16, 46, 0.5);
        }

        .progress-fill.away {
            background: #3E4A5A;
        }

        .timeline {
            position: relative;
            padding-left: 0;
        }

        .timeline-item {
            position: relative;
            padding-left: 28px;
            padding-bottom: 22px;
        }

        .timeline-item::before {
            content: "";
            position: absolute;
            left: 6px;
            top: 6px;
            bottom: 2px;
            width: 2px;
            background: rgba(255, 255, 255, 0.08);
        }

        .timeline-item::after {
            content: "";
            position: absolute;
            left: 0;
            top: 8px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--color-primary);
            box-shadow: 0 0 8px rgba(200, 16, 46, 0.5);
        }

        .timeline-item:last-child {
            padding-bottom: 0;
        }

        .timeline-item:last-child::before {
            display: none;
        }

        .timeline-time {
            font-size: 13px;
            font-weight: 700;
            color: var(--color-accent);
            display: inline-block;
            margin-bottom: 2px;
        }

        .timeline-content strong {
            display: block;
            font-size: 15px;
            color: #fff;
            line-height: 1.4;
        }

        .timeline-content p {
            font-size: 13px;
            color: var(--color-text-weak);
            margin-top: 2px;
        }

        /* ===== Stat Cards ===== */
        .stat-card {
            background: var(--color-bg-alt);
            border-top: 3px solid var(--color-primary);
            border-radius: var(--radius-card);
            padding: 24px 16px;
            text-align: center;
            transition: var(--transition);
            height: 100%;
        }

        .stat-card:hover {
            background: var(--color-bg-hover);
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
        }

        .stat-label {
            font-size: 14px;
            color: var(--color-text-secondary);
            display: block;
        }

        .stat-value {
            font-size: 38px;
            font-weight: 800;
            color: var(--color-text);
            display: block;
            margin-top: 8px;
            line-height: 1.2;
        }

        .stat-value .unit {
            font-size: 18px;
            font-weight: 600;
            color: var(--color-accent);
        }

        /* ===== Report Feature Card ===== */
        .report-feature {
            display: flex;
            background: var(--color-bg-alt);
            border-radius: var(--radius-card);
            overflow: hidden;
            height: 100%;
            border: 1px solid var(--color-border);
            transition: var(--transition);
        }

        .report-feature:hover {
            border-color: var(--color-primary);
            box-shadow: var(--shadow-card-hover);
        }

        .report-cover {
            width: 45%;
            min-height: 260px;
            overflow: hidden;
        }

        .report-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .report-feature:hover .report-cover img {
            transform: scale(1.03);
        }

        .report-body {
            flex: 1;
            padding: 26px;
            display: flex;
            flex-direction: column;
        }

        .report-body h3 {
            font-size: 20px;
            font-weight: 700;
            line-height: 1.4;
            margin: 12px 0 8px;
            color: var(--color-text);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .report-body p {
            font-size: 14px;
            color: var(--color-text-secondary);
            line-height: 1.75;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .report-meta {
            margin-top: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            padding-top: 16px;
        }

        .report-meta span {
            font-size: 13px;
            color: var(--color-text-weak);
        }

        .report-meta a {
            font-size: 14px;
            color: var(--color-primary);
            font-weight: 600;
        }

        .report-meta a:hover {
            text-decoration: underline;
        }

        /* ===== Report Small Cards ===== */
        .report-wrap {
            display: flex;
            flex-direction: column;
            gap: 16px;
            height: 100%;
        }

        .report-small {
            display: flex;
            gap: 16px;
            background: var(--color-bg-alt);
            border-radius: var(--radius-card);
            padding: 16px;
            border: 1px solid var(--color-border);
            transition: var(--transition);
            flex: 1;
        }

        .report-small:hover {
            background: var(--color-bg-hover);
            transform: translateY(-2px);
            box-shadow: var(--shadow-card-hover);
            border-color: var(--color-primary);
        }

        .report-small img {
            width: 120px;
            height: 90px;
            object-fit: cover;
            border-radius: 4px;
            flex-shrink: 0;
        }

        .report-small-body {
            min-width: 0;
        }

        .report-small-body h4 {
            font-size: 15px;
            font-weight: 600;
            line-height: 1.5;
            margin: 8px 0 4px;
            color: var(--color-text);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .report-time {
            font-size: 13px;
            color: var(--color-text-weak);
        }

        /* ===== CMS Reports List ===== */
        .reports-cms-list {
            margin-top: 28px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .report-cms-item {
            display: flex;
            gap: 18px;
            background: var(--color-bg-alt);
            border-radius: var(--radius-card);
            padding: 16px;
            border: 1px solid var(--color-border);
            transition: var(--transition);
        }

        .report-cms-item:hover {
            background: var(--color-bg-hover);
            border-color: var(--color-primary);
        }

        .report-cms-cover {
            width: 140px;
            height: 96px;
            flex-shrink: 0;
            overflow: hidden;
            border-radius: 4px;
        }

        .report-cms-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .report-cms-content {
            min-width: 0;
            flex: 1;
        }

        .report-cms-content h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--color-text);
            margin: 6px 0 6px;
            line-height: 1.4;
        }

        .report-cms-content p {
            font-size: 13px;
            color: var(--color-text-secondary);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .report-cms-content .report-meta {
            margin-top: 8px;
            padding-top: 0;
        }

        /* ===== Empty State ===== */
        .empty-state {
            display: flex;
            justify-content: center;
            padding: 48px 0;
        }

        .empty-circle {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            border: 2px dashed var(--color-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-size: 14px;
            color: var(--color-text-secondary);
            padding: 28px;
            line-height: 1.6;
        }

        /* ===== Fixtures ===== */
        .fixtures-list {
            display: flex;
            flex-direction: column;
        }

        .fixture-item {
            display: flex;
            align-items: center;
            gap: 24px;
            padding: 18px 24px;
            border-bottom: 1px solid var(--color-border);
            transition: background 0.3s ease;
        }

        .fixture-item:hover {
            background: var(--color-bg-hover);
        }

        .fixture-date {
            width: 58px;
            font-weight: 700;
            color: var(--color-accent);
            font-size: 14px;
            flex-shrink: 0;
        }

        .fixture-teams {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
        }

        .fixture-vs {
            margin: 0 12px;
            font-size: 12px;
            color: var(--color-text-weak);
        }

        .fixture-competition {
            margin-left: auto;
            font-size: 13px;
            color: var(--color-text-secondary);
            flex-shrink: 0;
        }

        /* ===== CTA ===== */
        .cta-panel {
            position: relative;
            background: var(--color-bg-alt);
            border-radius: var(--radius-card);
            padding: 56px 32px;
            text-align: center;
            overflow: hidden;
            border-left: 3px solid var(--color-primary);
            box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.25);
        }

        .watermark {
            position: absolute;
            right: 24px;
            bottom: -24px;
            font-size: 84px;
            font-weight: 800;
            letter-spacing: 6px;
            color: rgba(255, 255, 255, 0.04);
            pointer-events: none;
            user-select: none;
            line-height: 1;
            white-space: nowrap;
        }

        .cta-panel h2 {
            font-size: clamp(22px, 3vw, 30px);
            font-weight: 800;
            color: #fff;
            line-height: 1.3;
            position: relative;
            z-index: 1;
        }

        .cta-panel p {
            color: var(--color-text-secondary);
            margin: 10px 0 28px;
            position: relative;
            z-index: 1;
        }

        .cta-form {
            display: flex;
            gap: 12px;
            max-width: 480px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-form input {
            flex: 1;
            min-width: 0;
            background: var(--color-bg);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-btn);
            padding: 12px 16px;
            color: #fff;
            transition: var(--transition);
        }

        .cta-form input::placeholder {
            color: var(--color-text-weak);
        }

        .cta-form input:focus {
            border-color: var(--color-primary);
            box-shadow: 0 0 12px rgba(200, 16, 46, 0.2);
        }

        /* ===== FAQ ===== */
        .faq-list .accordion-title {
            background: var(--color-bg-alt);
            color: var(--color-text);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-card);
            padding: 16px 20px;
            font-size: 15px;
            font-weight: 600;
            transition: var(--transition);
        }

        .faq-list .accordion-title:hover {
            background: var(--color-bg-hover);
            color: #fff;
        }

        .faq-list .accordion-item.is-active .accordion-title {
            background: var(--color-bg-hover);
            color: #fff;
            border-left: 3px solid var(--color-primary);
            border-radius: var(--radius-card) var(--radius-card) 0 0;
        }

        .faq-list .accordion-item.is-active .accordion-title::before,
        .faq-list .accordion-item.is-active .accordion-title::after {
            background: var(--color-primary);
        }

        .faq-list .accordion-content {
            background: var(--color-bg);
            color: var(--color-text-secondary);
            border: 1px solid var(--color-border);
            border-top: none;
            border-radius: 0 0 var(--radius-card) var(--radius-card);
            padding: 18px 20px;
            font-size: 14px;
            line-height: 1.75;
        }

        .faq-list .accordion-content p {
            max-width: 90%;
        }

        /* ===== About ===== */
        .section-about {
            border-top: 1px solid var(--color-border);
            background: var(--color-bg-alt);
        }

        .about-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .about-links a {
            color: var(--color-text-secondary);
            font-size: 14px;
            border-left: 2px solid transparent;
            padding-left: 0;
        }

        .about-links a:hover {
            color: var(--color-primary);
            border-left-color: var(--color-primary);
            padding-left: 10px;
        }

        .about-stats span {
            display: block;
            font-size: 14px;
            color: var(--color-text-secondary);
            margin-bottom: 8px;
        }

        .about-stats strong {
            color: var(--color-accent);
            font-weight: 700;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: #060A0F;
            border-top: 1px solid rgba(255, 215, 0, 0.3);
            padding: 48px 0 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.2fr 0.8fr;
            gap: 40px;
        }

        .footer-brand .brand {
            margin-bottom: 14px;
        }

        .footer-brand p {
            margin-top: 14px;
            font-size: 13px;
            color: var(--color-text-weak);
            line-height: 1.7;
        }

        .footer-title {
            font-size: 15px;
            color: #fff;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: 1px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            color: var(--color-text-secondary);
            font-size: 13px;
        }

        .footer-links a:hover {
            color: var(--color-primary);
            padding-left: 4px;
        }

        .footer-info-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--color-text-secondary);
            margin-top: 10px;
        }

        .footer-info-item i {
            color: var(--color-primary);
            width: 16px;
            text-align: center;
        }

        .footer-info-item a {
            color: var(--color-text-secondary);
        }

        .footer-info-item a:hover {
            color: var(--color-primary);
        }

        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 16px;
        }

        .social-icons a {
            width: 36px;
            height: 36px;
            border-radius: var(--radius-badge);
            border: 1px solid var(--color-border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-text-secondary);
            font-size: 14px;
            transition: var(--transition);
        }

        .social-icons a:hover {
            border-color: var(--color-primary);
            color: var(--color-primary);
            box-shadow: 0 0 12px rgba(200, 16, 46, 0.3);
        }

        .footer-copyright {
            margin-top: 36px;
            padding-top: 18px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: var(--color-text-weak);
            flex-wrap: wrap;
            gap: 8px;
        }

        .site-declare {
            color: var(--color-text-weak);
        }

        /* ===== Foundation Accordion Overrides ===== */
        .accordion .accordion-item {
            margin-bottom: 12px;
            border: none;
            background: transparent;
        }

        .accordion .accordion-title {
            min-height: auto;
        }

        .accordion .accordion-content {
            border: none;
            background: transparent;
            color: var(--color-text-secondary);
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .main-nav {
                gap: 18px;
            }
            .brand-name {
                font-size: 16px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
        }

        @media (max-width: 768px) {
            .main-nav {
                position: fixed;
                top: var(--header-height);
                right: -100%;
                width: 100%;
                height: calc(100vh - var(--header-height));
                background: rgba(10, 14, 20, 0.98);
                flex-direction: column;
                align-items: flex-start;
                padding: 24px 28px;
                gap: 0;
                transition: right 0.35s ease;
                z-index: 999;
                overflow-y: auto;
                margin: 0;
            }

            .main-nav.nav-open {
                right: 0;
            }

            .main-nav .nav-link {
                font-size: 20px;
                line-height: 3em;
                width: 100%;
                border-bottom: 1px solid var(--color-border);
            }

            .main-nav .nav-cta {
                display: inline-block;
                margin-top: 24px;
            }

            .nav-cta {
                display: inline-block;
            }

            .hamburger {
                display: flex;
            }

            .header-actions .search-btn {
                display: none;
            }

            .header-actions .btn-sm {
                display: none;
            }

            .hero-title {
                font-size: 28px;
            }

            .result-panel {
                flex-wrap: wrap;
                padding: 18px 20px;
            }

            .result-meta {
                order: 3;
                width: 100%;
                text-align: left;
            }

            .result-score {
                font-size: 32px;
            }

            .report-feature {
                flex-direction: column;
            }

            .report-cover {
                width: 100%;
                min-height: 180px;
            }

            .cta-form {
                flex-direction: column;
            }

            .section-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .footer-copyright {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 640px) {
            .container {
                padding: 0 16px;
            }

            .brand-name {
                font-size: 14px;
                letter-spacing: 0;
            }

            .brand-sub {
                font-size: 9px;
                letter-spacing: 1px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .fixture-item {
                flex-wrap: wrap;
                gap: 10px;
                padding: 16px 12px;
            }

            .fixture-competition {
                margin-left: 0;
                width: 100%;
                padding-left: 70px;
            }

            .report-small {
                flex-direction: column;
            }

            .report-small img {
                width: 100%;
                height: 140px;
            }

            .stat-value {
                font-size: 30px;
            }

            .cta-panel {
                padding: 40px 20px;
            }

            .watermark {
                font-size: 56px;
                right: 12px;
                bottom: -12px;
            }

            .report-cms-item {
                flex-direction: column;
            }

            .report-cms-cover {
                width: 100%;
                height: 160px;
            }
        }
