        *,
        *::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, BlinkMacSystemFont, sans-serif;
            background: #f5f7fb;
            color: #1e1e2f;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #2563eb;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #1e40af;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #0f172a;
        }
        h1 {
            font-size: 2.2rem;
            margin-bottom: 0.75rem;
        }
        h2 {
            font-size: 1.7rem;
            margin-top: 2.5rem;
            margin-bottom: 0.6rem;
            border-bottom: 3px solid #e2e8f0;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 1.8rem;
            margin-bottom: 0.4rem;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.2rem;
            margin-bottom: 0.3rem;
            color: #334155;
        }
        p {
            margin-bottom: 1rem;
        }
        ul,
        ol {
            margin-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.3rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #f1f5f9;
            padding: 0 0 0.3rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 0.8rem 0;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #facc15, #fb923c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            transition: opacity 0.2s;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #facc15;
            font-size: 1.6rem;
        }
        nav.main-nav {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            flex-wrap: wrap;
        }
        nav.main-nav a {
            color: #e2e8f0;
            padding: 0.5rem 1rem;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            text-decoration: none;
        }
        nav.main-nav a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #facc15;
            text-decoration: none;
        }
        nav.main-nav a i {
            margin-right: 6px;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f1f5f9;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .breadcrumb {
            background: #e9edf4;
            padding: 0.5rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #d1d9e6;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 10px;
            color: #64748b;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #2563eb;
        }
        .breadcrumb .current {
            color: #334155;
            font-weight: 600;
        }
        main {
            flex: 1;
            padding: 2rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.5rem;
        }
        @media(max-width:992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background: #ffffff;
            padding: 2rem 2.2rem;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
        }
        @media(max-width:768px) {
            .article-body {
                padding: 1.2rem 1rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            h3 {
                font-size: 1.15rem;
            }
        }
        .featured-image {
            margin: 1.5rem 0 2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.6rem 1rem;
            background: #f1f5f9;
            font-size: 0.85rem;
            color: #475569;
            font-style: italic;
        }
        .last-updated {
            display: inline-block;
            background: #eef2ff;
            color: #4338ca;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
            border: 1px solid #c7d2fe;
        }
        .last-updated i {
            margin-right: 6px;
        }
        .highlight-box {
            background: #fef9c3;
            border-left: 5px solid #eab308;
            padding: 1rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .highlight-box strong {
            color: #854d0e;
        }
        .tip-card {
            background: #f0fdf4;
            border: 1px solid #bbf7d0;
            border-radius: 14px;
            padding: 1.2rem 1.5rem;
            margin: 1.2rem 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
        }
        .tip-card i {
            color: #16a34a;
            margin-right: 8px;
        }
        .player-quote {
            background: #f1f5f9;
            padding: 1.5rem 2rem;
            border-radius: 16px;
            margin: 1.8rem 0;
            position: relative;
            font-style: italic;
            border-left: 4px solid #3b82f6;
        }
        .player-quote::before {
            content: "\201C";
            font-size: 3.5rem;
            color: #3b82f6;
            position: absolute;
            top: -0.2rem;
            left: 0.6rem;
            opacity: 0.3;
            font-family: serif;
        }
        .player-quote .attribution {
            font-style: normal;
            font-weight: 600;
            margin-top: 0.6rem;
            color: #1e293b;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        .sidebar-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 1.4rem 1.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
            border: 1px solid #e9edf4;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            margin-top: 0;
            margin-bottom: 0.8rem;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 0.4rem;
        }
        .sidebar-card ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 0.5rem;
            padding: 0.2rem 0;
            border-bottom: 1px dashed #e9edf4;
        }
        .sidebar-card li a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.92rem;
        }
        .sidebar-card li a i {
            color: #f59e0b;
            font-size: 0.8rem;
        }
        .search-form {
            display: flex;
            gap: 0.4rem;
            margin-top: 0.3rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.6rem 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 40px;
            font-size: 0.9rem;
            outline: none;
            transition: border 0.2s;
            background: #f8fafc;
        }
        .search-form input:focus {
            border-color: #3b82f6;
        }
        .search-form button {
            background: #2563eb;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.6rem 1.2rem;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.2s;
            font-weight: 600;
        }
        .search-form button:hover {
            background: #1d4ed8;
        }
        .search-form button i {
            margin-right: 4px;
        }
        .comment-section,
        .rating-section {
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 2px solid #e2e8f0;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
            font-family: inherit;
            resize: vertical;
            transition: border 0.2s;
            background: #f8fafc;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #3b82f6;
            outline: none;
        }
        .comment-form .row2 {
            display: flex;
            gap: 0.8rem;
        }
        .comment-form .row2 input {
            flex: 1;
        }
        .comment-form button {
            background: #0f172a;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.7rem 2rem;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover {
            background: #1e293b;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #d1d5db;
            cursor: pointer;
            margin: 0.6rem 0 1rem;
            transition: color 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f59e0b;
        }
        .rating-stars i {
            transition: transform 0.1s, color 0.15s;
        }
        .rating-stars i:hover {
            transform: scale(1.15);
        }
        .btn-score {
            background: #f59e0b;
            color: #1e1e2f;
            border: none;
            border-radius: 40px;
            padding: 0.6rem 1.8rem;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .btn-score:hover {
            background: #d97706;
        }
        friend-link {
            display: block;
            background: #1e293b;
            color: #e2e8f0;
            padding: 2rem 0;
            margin-top: 2rem;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 2.5rem;
            justify-content: center;
        }
        friend-link a {
            color: #94a3b8;
            font-size: 0.9rem;
            transition: color 0.2s;
            text-decoration: none;
            border-bottom: 1px dotted transparent;
        }
        friend-link a:hover {
            color: #facc15;
            border-bottom-color: #facc15;
            text-decoration: none;
        }
        friend-link .flabel {
            font-weight: 600;
            color: #f1f5f9;
            margin-right: 0.5rem;
        }
        footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 1.8rem 0;
            text-align: center;
            font-size: 0.85rem;
            border-top: 2px solid #1e293b;
        }
        footer .copyright {
            color: #64748b;
        }
        footer .copyright strong {
            color: #e2e8f0;
        }
        @media(max-width:768px) {
            .hamburger {
                display: block;
            }
            nav.main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 0.8rem 0 0.2rem;
                gap: 0.2rem;
                border-top: 1px solid rgba(255, 255, 255, 0.06);
                margin-top: 0.6rem;
            }
            nav.main-nav.open {
                display: flex;
            }
            nav.main-nav a {
                padding: 0.7rem 1rem;
                border-radius: 8px;
            }
            .header-inner {
                padding: 0.6rem 0;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .comment-form .row2 {
                flex-direction: column;
            }
            .sidebar {
                order: 2;
            }
            .article-body {
                order: 1;
            }
            .content-grid {
                gap: 1.5rem;
            }
        }
        @media(max-width:480px) {
            .container {
                padding: 0 12px;
            }
            .article-body {
                padding: 0.8rem 0.8rem;
            }
            h1 {
                font-size: 1.4rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
        }
        .emoji-lg {
            font-size: 1.3em;
        }
        .badge {
            background: #dbeafe;
            color: #1e40af;
            border-radius: 40px;
            padding: 0.15rem 0.7rem;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-item {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 14px;
            padding: 1rem;
            text-align: center;
        }
        .stat-item .num {
            font-size: 1.8rem;
            font-weight: 800;
            color: #0f172a;
            display: block;
        }
        .stat-item .label {
            font-size: 0.8rem;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .inline-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            margin: 0.8rem 0;
        }
        .inline-link-list a {
            background: #f1f5f9;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            font-size: 0.85rem;
            border: 1px solid #e2e8f0;
            transition: background 0.2s;
        }
        .inline-link-list a:hover {
            background: #e2e8f0;
            text-decoration: none;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        th,
        td {
            padding: 0.6rem 0.8rem;
            border: 1px solid #e2e8f0;
            text-align: left;
        }
        th {
            background: #f1f5f9;
            font-weight: 700;
        }
