        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
            background: #f5f7fc;
            color: #1a1a2e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #e63946;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #b71c1c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0d1b2a 0%, #1b2838 100%);
            color: #fff;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: #ffbe0b;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 2px 8px rgba(255, 190, 11, 0.3);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            color: #ffd60a;
            text-decoration: none;
        }
        .my-logo span {
            color: #fff;
            font-weight: 300;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #e0e6ed;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.25s;
            position: relative;
        }
        .nav-menu a:hover,
        .nav-menu a:focus {
            background: rgba(255, 190, 11, 0.15);
            color: #ffbe0b;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 6px 10px;
            background: transparent;
            border: none;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #ffbe0b;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        .breadcrumb {
            background: #fff;
            padding: 12px 20px;
            border-radius: 12px;
            margin: 20px 0 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            font-size: 0.9rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb a {
            color: #457b9d;
        }
        .breadcrumb a:hover {
            color: #1d3557;
        }
        .breadcrumb span.sep {
            color: #999;
            margin: 0 4px;
        }
        .breadcrumb .current {
            color: #e63946;
            font-weight: 600;
        }
        main {
            padding: 20px 0 40px;
        }
        article {
            background: #fff;
            border-radius: 20px;
            padding: 30px 30px 40px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #0d1b2a;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }
        h1 i {
            color: #ffbe0b;
            margin-right: 10px;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1b2838;
            margin: 2.2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ffbe0b;
            display: inline-block;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #2c3e50;
            margin: 1.8rem 0 0.8rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #34495e;
            margin: 1.2rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            color: #2d3748;
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            color: #718096;
            font-size: 0.9rem;
            margin: 8px 0 24px;
            padding: 12px 0;
            border-top: 1px solid #edf2f7;
            border-bottom: 1px solid #edf2f7;
        }
        .meta-info i {
            margin-right: 5px;
            color: #e63946;
        }
        .last-updated {
            font-weight: 600;
            color: #2d3748;
        }
        .featured-image {
            margin: 24px 0 28px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .featured-image img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #f8fafc;
            padding: 12px 18px;
            font-size: 0.9rem;
            color: #4a5568;
            text-align: center;
            border-top: 1px solid #edf2f7;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fffbeb, #fef3c7);
            border-left: 5px solid #ffbe0b;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 20px 0;
            font-weight: 500;
        }
        .highlight-box strong {
            color: #b45309;
        }
        .tip-box {
            background: #eef2ff;
            border-left: 5px solid #4f46e5;
            padding: 18px 22px;
            border-radius: 12px;
            margin: 20px 0;
        }
        .tip-box i {
            color: #4f46e5;
            margin-right: 8px;
        }
        .btn-cta {
            display: inline-block;
            background: #e63946;
            color: #fff;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.25s;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 14px rgba(230, 57, 70, 0.3);
        }
        .btn-cta:hover {
            background: #c1121f;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
            text-decoration: none;
            color: #fff;
        }
        .btn-cta i {
            margin-right: 8px;
        }
        .link-group {
            background: #f8fafc;
            border-radius: 14px;
            padding: 20px 24px;
            margin: 20px 0;
            border: 1px solid #e2e8f0;
        }
        .link-group h4 {
            margin-top: 0;
        }
        .link-group ul {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 8px 16px;
        }
        .link-group ul li a {
            display: block;
            padding: 8px 14px;
            background: #fff;
            border-radius: 8px;
            border: 1px solid #edf2f7;
            transition: all 0.2s;
            font-weight: 500;
        }
        .link-group ul li a:hover {
            background: #fffbeb;
            border-color: #ffbe0b;
            transform: translateX(4px);
            text-decoration: none;
        }
        .link-group ul li a i {
            color: #e63946;
            margin-right: 8px;
            font-size: 0.8rem;
        }
        .search-section {
            background: #fff;
            border-radius: 20px;
            padding: 28px 30px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            max-width: 640px;
            margin: 12px 0 0;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #e63946;
        }
        .search-form button {
            background: #e63946;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
        }
        .search-form button:hover {
            background: #c1121f;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 30px 0;
        }
        @media (max-width: 700px) {
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-box,
        .score-box {
            background: #fff;
            border-radius: 16px;
            padding: 24px 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #edf2f7;
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
            border-bottom: 2px solid #ffbe0b;
            padding-bottom: 8px;
            display: inline-block;
        }
        .comment-box textarea,
        .score-box select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            outline: none;
            transition: border 0.3s;
            margin: 8px 0 12px;
        }
        .comment-box textarea:focus,
        .score-box select:focus {
            border-color: #e63946;
        }
        .comment-box textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-box .btn-submit,
        .score-box .btn-submit {
            background: #1b2838;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-box .btn-submit:hover,
        .score-box .btn-submit:hover {
            background: #0d1b2a;
        }
        .site-footer {
            background: #0d1b2a;
            color: #cbd5e1;
            padding: 36px 0 24px;
            margin-top: 40px;
            border-top: 4px solid #ffbe0b;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        @media (max-width: 768px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .footer-inner h4 {
            color: #ffbe0b;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .footer-inner a {
            color: #a0afc0;
            display: inline-block;
            margin-bottom: 6px;
        }
        .footer-inner a:hover {
            color: #ffbe0b;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.04);
            padding: 16px 20px;
            border-radius: 12px;
            margin-top: 12px;
            border: 1px solid rgba(255, 190, 11, 0.15);
        }
        friend-link a {
            margin-right: 16px;
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            margin-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.85rem;
            color: #8899aa;
        }
        .schema-hidden {
            display: none;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 16px 0 8px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 12px 18px;
                border-radius: 8px;
                text-align: center;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            article {
                padding: 20px 16px;
            }
            .search-section {
                padding: 20px 16px;
            }
            .comment-box,
            .score-box {
                padding: 18px 16px;
            }
            .link-group ul {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 10px 14px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            .search-form input[type="text"] {
                min-width: 140px;
            }
            .btn-cta {
                padding: 10px 22px;
                font-size: 0.9rem;
            }
        }
        .tag {
            display: inline-block;
            background: #e63946;
            color: #fff;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-right: 6px;
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 8px;
        }
        .stat-number {
            font-weight: 800;
            color: #e63946;
            font-size: 1.2rem;
        }
        .player-quote {
            background: #f1f5f9;
            padding: 20px 24px;
            border-radius: 16px;
            font-style: italic;
            border-left: 5px solid #e63946;
            margin: 20px 0;
            position: relative;
        }
        .player-quote::before {
            content: '\201C';
            font-size: 3rem;
            color: #e63946;
            position: absolute;
            top: -8px;
            left: 12px;
            opacity: 0.3;
        }
        .player-quote .author {
            font-style: normal;
            font-weight: 600;
            text-align: right;
            margin-top: 8px;
            color: #1b2838;
        }
        .data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .data-card {
            background: #f8fafc;
            border-radius: 14px;
            padding: 18px 16px;
            text-align: center;
            border: 1px solid #e2e8f0;
            transition: transform 0.2s;
        }
        .data-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        }
        .data-card .number {
            font-size: 2rem;
            font-weight: 800;
            color: #e63946;
        }
        .data-card .label {
            font-size: 0.9rem;
            color: #4a5568;
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #e63946;
            color: #fff;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.4rem;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
            transition: all 0.3s;
            opacity: 0;
            visibility: hidden;
            z-index: 999;
        }
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        .scroll-top:hover {
            background: #c1121f;
            transform: translateY(-3px);
        }
