        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
            background: #f5f7fa;
            color: #1a1a2e;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            background-image: radial-gradient(ellipse at 10% 20%, rgba(226, 35, 55, 0.03) 0%, transparent 60%),
                radial-gradient(ellipse at 90% 80%, rgba(39, 84, 156, 0.04) 0%, transparent 60%);
            min-height: 100vh;
        }
        a {
            color: #e22337;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #b51b2c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #0b0b1a 0%, #1a1a3e 100%);
            color: #fff;
            padding: 0 0 4px 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 3px solid #e22337;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 14px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #e22337, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(226, 35, 55, 0.2);
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: 'Segoe UI', system-ui, sans-serif;
        }
        .my-logo i {
            -webkit-text-fill-color: #fff;
            font-size: 1.6rem;
            background: none;
            color: #e22337;
        }
        .my-logo a {
            color: inherit;
            -webkit-text-fill-color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        nav a {
            color: #e8e8f0;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 14px;
            border-radius: 40px;
            transition: all 0.25s ease;
            position: relative;
        }
        nav a:hover {
            background: rgba(226, 35, 55, 0.18);
            color: #fff;
            text-decoration: none;
        }
        nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.06);
        }
        .breadcrumb {
            background: #fff;
            padding: 12px 20px;
            border-bottom: 1px solid #e2e8f0;
            font-size: 0.88rem;
            color: #4a5568;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb i {
            margin: 0 6px;
            color: #a0aec0;
            font-size: 0.7rem;
        }
        .breadcrumb a {
            color: #2d3748;
        }
        .breadcrumb a:hover {
            color: #e22337;
        }
        .breadcrumb .current {
            color: #e22337;
            font-weight: 600;
        }
        .hero-img-wrapper {
            max-width: 1100px;
            margin: 30px auto 20px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
            background: #0b0b1a;
            position: relative;
        }
        .hero-img-wrapper img {
            width: 100%;
            height: auto;
            min-height: 320px;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }
        .hero-img-wrapper:hover img {
            transform: scale(1.01);
        }
        .hero-img-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
            padding: 30px 24px 18px;
            color: #fff;
            font-weight: 500;
            font-size: 0.95rem;
        }
        main {
            padding: 10px 20px 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        article {
            background: #fff;
            border-radius: 24px;
            padding: 40px 36px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 12px;
            color: #0b0b1a;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #0b0b1a 30%, #e22337 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 800;
            margin-top: 48px;
            margin-bottom: 16px;
            color: #0b0b1a;
            padding-bottom: 8px;
            border-bottom: 3px solid #e22337;
            display: inline-block;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-top: 32px;
            margin-bottom: 12px;
            color: #1a1a3e;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-top: 24px;
            margin-bottom: 8px;
            color: #2d3748;
        }
        p {
            margin-bottom: 16px;
            color: #2d3748;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.25rem;
            color: #4a5568;
            font-weight: 400;
            line-height: 1.8;
            margin-bottom: 24px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff5f5, #fff);
            border-left: 5px solid #e22337;
            padding: 20px 24px;
            border-radius: 0 16px 16px 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #e22337;
        }
        ul,
        ol {
            margin: 12px 0 20px 24px;
            color: #2d3748;
        }
        li {
            margin-bottom: 6px;
        }
        .emoji-big {
            font-size: 1.6rem;
            vertical-align: middle;
            margin-right: 8px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
            border-radius: 14px;
            border: 1px solid #e2e8f0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.98rem;
            min-width: 640px;
        }
        th {
            background: #0b0b1a;
            color: #fff;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 12px 18px;
            border-bottom: 1px solid #e2e8f0;
            color: #2d3748;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #fef2f2;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 18px;
            margin: 28px 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #f8fafc, #fff);
            border-radius: 16px;
            padding: 22px 16px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            border: 1px solid #edf2f7;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(226, 35, 55, 0.08);
        }
        .stat-card i {
            font-size: 2.2rem;
            color: #e22337;
            margin-bottom: 10px;
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 900;
            color: #0b0b1a;
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #4a5568;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0 20px;
        }
        .interact-card {
            background: #f8fafc;
            border-radius: 18px;
            padding: 24px 28px;
            border: 1px solid #edf2f7;
            transition: box-shadow 0.2s;
        }
        .interact-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
        }
        .interact-card h4 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3rem;
        }
        .interact-card form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 12px;
        }
        .interact-card input,
        .interact-card textarea,
        .interact-card select {
            padding: 12px 16px;
            border: 1px solid #d1d9e6;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            background: #fff;
            transition: border 0.2s;
            width: 100%;
        }
        .interact-card input:focus,
        .interact-card textarea:focus,
        .interact-card select:focus {
            outline: none;
            border-color: #e22337;
            box-shadow: 0 0 0 3px rgba(226, 35, 55, 0.08);
        }
        .interact-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .btn {
            background: #e22337;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
        }
        .btn:hover {
            background: #b51b2c;
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(226, 35, 55, 0.25);
        }
        .btn-outline {
            background: transparent;
            color: #e22337;
            border: 2px solid #e22337;
        }
        .btn-outline:hover {
            background: #e22337;
            color: #fff;
        }
        .search-wrap {
            background: #fff;
            border-radius: 60px;
            display: flex;
            align-items: center;
            max-width: 500px;
            margin: 16px 0 24px;
            border: 1px solid #e2e8f0;
            transition: box-shadow 0.2s;
        }
        .search-wrap:focus-within {
            box-shadow: 0 0 0 3px rgba(226, 35, 55, 0.12);
            border-color: #e22337;
        }
        .search-wrap input {
            flex: 1;
            padding: 14px 20px;
            border: none;
            border-radius: 60px 0 0 60px;
            font-size: 1rem;
            background: transparent;
            outline: none;
            font-family: inherit;
        }
        .search-wrap button {
            border: none;
            background: #e22337;
            color: #fff;
            padding: 14px 24px;
            border-radius: 0 60px 60px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.2s;
        }
        .search-wrap button:hover {
            background: #b51b2c;
        }
        friend-link {
            display: block;
            padding: 32px 0 20px;
            border-top: 2px solid #e2e8f0;
            margin-top: 30px;
        }
        friend-link .fl-head {
            font-size: 1.2rem;
            font-weight: 700;
            color: #0b0b1a;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        friend-link .fl-list li a {
            color: #2d3748;
            font-weight: 500;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.2s;
        }
        friend-link .fl-list li a:hover {
            color: #e22337;
            border-bottom-color: #e22337;
            text-decoration: none;
        }
        footer {
            background: #0b0b1a;
            color: #cbd5e0;
            padding: 32px 20px 28px;
            text-align: center;
            font-size: 0.92rem;
            border-top: 4px solid #e22337;
        }
        footer .container {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        footer a {
            color: #fc8181;
        }
        footer a:hover {
            color: #fff;
        }
        footer .copy {
            letter-spacing: 0.3px;
        }
        footer .copy i {
            color: #e22337;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px 28px;
            margin-top: 4px;
        }
        @media (max-width: 900px) {
            article {
                padding: 28px 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .interact-grid {
                grid-template-columns: 1fr;
            }
            .header-inner {
                padding: 10px 16px;
            }
        }
        @media (max-width: 720px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 12px 0 6px;
                gap: 4px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 16px;
                width: 100%;
                border-radius: 10px;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 10px 16px;
                overflow-x: auto;
                white-space: nowrap;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            h1 {
                font-size: 1.9rem;
            }
            .hero-img-wrapper img {
                min-height: 180px;
            }
            .table-wrap table {
                font-size: 0.88rem;
                min-width: 480px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            article {
                padding: 20px 14px;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .stat-card .num {
                font-size: 1.5rem;
            }
            .interact-card {
                padding: 18px 16px;
            }
            .search-wrap input {
                font-size: 0.9rem;
                padding: 12px 16px;
            }
            .search-wrap button {
                padding: 12px 18px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        .mt-1 {
            margin-top: 8px;
        }
        .mt-2 {
            margin-top: 16px;
        }
        .mt-3 {
            margin-top: 28px;
        }
        .mb-2 {
            margin-bottom: 16px;
        }
        .text-center {
            text-align: center;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tag {
            display: inline-block;
            background: #fef2f2;
            color: #e22337;
            padding: 2px 14px;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .last-updated {
            color: #718096;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 8px;
        }
        .last-updated i {
            color: #e22337;
        }
