        *, *::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, 'Helvetica Neue', Arial, sans-serif;
            background: #f5f7fa;
            color: #1e1e2f;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        a { color: #0d47a1; text-decoration: none; transition: color 0.2s; }
        a:hover { color: #1565c0; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; border-radius: 12px; }
        ul, ol { padding-left: 1.5rem; margin: 1rem 0; }
        li { margin-bottom: 0.4rem; }
        h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; margin-top: 2rem; margin-bottom: 0.75rem; color: #0a0a1a; }
        h1 { font-size: 2.4rem; margin-top: 0.5rem; }
        h2 { font-size: 1.8rem; border-left: 5px solid #b71c1c; padding-left: 1rem; }
        h3 { font-size: 1.35rem; color: #1a237e; }
        h4 { font-size: 1.1rem; color: #283593; }
        p { margin-bottom: 1.2rem; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
        .badge { display: inline-block; background: #b71c1c; color: #fff; font-size: 0.7rem; padding: 0.2rem 0.7rem; border-radius: 20px; font-weight: 600; letter-spacing: 0.3px; }
        .site-header {
            background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
            color: #fff;
            padding: 0.75rem 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;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            background: linear-gradient(145deg, #ffd54f, #ffb300);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 0 20px rgba(255, 179, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i { font-size: 1.6rem; -webkit-text-fill-color: #ffb300; }
        .my-logo:hover { opacity: 0.9; text-decoration: none; }
        .my-logo small { font-size: 0.5rem; font-weight: 400; display: block; letter-spacing: 2px; color: #aaa; -webkit-text-fill-color: #aaa; }
        .nav-toggle { display: none; background: none; border: 2px solid rgba(255,255,255,0.25); color: #fff; font-size: 1.5rem; padding: 0.4rem 0.8rem; border-radius: 8px; cursor: pointer; transition: 0.2s; }
        .nav-toggle:hover { border-color: #ffb300; }
        .nav-menu { display: flex; align-items: center; gap: 0.2rem; flex-wrap: wrap; }
        .nav-menu a {
            color: #e0e0e0;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .nav-menu a:hover { background: rgba(255,255,255,0.1); color: #ffd54f; text-decoration: none; }
        .nav-menu a.active { background: rgba(255,179,0,0.15); color: #ffd54f; }
        .breadcrumb {
            background: #e8eaf0;
            padding: 0.6rem 1.25rem;
            font-size: 0.85rem;
            border-bottom: 1px solid #d0d4dc;
        }
        .breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.3rem 0.6rem; margin: 0; padding: 0; }
        .breadcrumb li { margin: 0; }
        .breadcrumb li+li::before { content: "›"; margin-right: 0.6rem; color: #888; }
        .breadcrumb a { color: #0d47a1; }
        .breadcrumb .current { color: #555; font-weight: 600; }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        .main-article { min-width: 0; }
        .sidebar { position: sticky; top: 90px; align-self: start; }
        @media (max-width: 992px) {
            .sidebar { position: static; }
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border: 1px solid #eef0f4;
        }
        .sidebar-card h3 { font-size: 1.1rem; margin-top: 0; border-bottom: 2px solid #b71c1c; padding-bottom: 0.5rem; margin-bottom: 1rem; }
        .link-list { list-style: none; padding: 0; margin: 0; }
        .link-list li { padding: 0.4rem 0; border-bottom: 1px solid #f0f0f5; margin: 0; }
        .link-list li:last-child { border-bottom: none; }
        .link-list a { font-size: 0.9rem; display: block; padding: 0.2rem 0; }
        .link-list a:hover { color: #b71c1c; }
        .search-form { display: flex; gap: 0.5rem; margin: 1rem 0; }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 2px solid #d0d4dc;
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            transition: 0.2s;
            background: #fff;
        }
        .search-form input[type="text"]:focus { border-color: #b71c1c; box-shadow: 0 0 0 3px rgba(183,28,28,0.1); }
        .search-form button {
            background: #b71c1c;
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 0.6rem 1.4rem;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            font-weight: 600;
        }
        .search-form button:hover { background: #8e0000; transform: scale(1.02); }
        .comment-box, .rating-box {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            padding: 1.8rem;
            margin: 2rem 0;
            border: 1px solid #eef0f4;
        }
        .comment-box h3, .rating-box h3 { margin-top: 0; }
        .form-group { margin-bottom: 1rem; }
        .form-group label { display: block; font-weight: 600; margin-bottom: 0.3rem; font-size: 0.9rem; }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #d0d4dc;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: 0.2s;
            background: #fafafa;
        }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: #b71c1c; box-shadow: 0 0 0 3px rgba(183,28,28,0.08); outline: none; }
        .form-group textarea { min-height: 100px; resize: vertical; }
        .btn-primary {
            background: linear-gradient(145deg, #b71c1c, #8e0000);
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(183,28,28,0.3); }
        .star-rating { display: flex; gap: 0.3rem; font-size: 1.8rem; cursor: pointer; color: #ccc; }
        .star-rating i { transition: 0.15s; }
        .star-rating i.active, .star-rating i:hover { color: #ffb300; }
        .featured-image {
            margin: 1.8rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        }
        .featured-image figcaption { background: #f0f2f5; padding: 0.6rem 1rem; font-size: 0.85rem; color: #555; text-align: center; font-style: italic; }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.05);
        }
        .data-table th { background: #1a1a2e; color: #fff; padding: 0.75rem 1rem; text-align: left; font-weight: 600; }
        .data-table td { padding: 0.7rem 1rem; border-bottom: 1px solid #eef0f4; }
        .data-table tr:nth-child(even) { background: #f8f9fc; }
        .data-table tr:hover { background: #fff8e1; }
        .player-quote {
            background: linear-gradient(145deg, #f5f0ff, #ede7f6);
            border-left: 5px solid #7b1fa2;
            padding: 1.5rem 2rem;
            border-radius: 0 16px 16px 0;
            margin: 1.8rem 0;
            font-style: italic;
            position: relative;
        }
        .player-quote::before { content: "“"; font-size: 3rem; color: #7b1fa2; opacity: 0.3; position: absolute; top: -0.2rem; left: 0.5rem; }
        .player-quote cite { display: block; margin-top: 0.8rem; font-style: normal; font-weight: 600; color: #4a148c; }
        .site-footer {
            background: #0a0a1a;
            color: #ccc;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 4px solid #b71c1c;
        }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
        @media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
        .site-footer h4 { color: #ffd54f; margin-top: 0; font-size: 1.1rem; }
        .site-footer a { color: #bbb; }
        .site-footer a:hover { color: #ffd54f; }
        .friend-links { list-style: none; padding: 0; margin: 0; }
        .friend-links li { padding: 0.3rem 0; }
        .copyright { border-top: 1px solid #2a2a3e; padding-top: 1.5rem; text-align: center; font-size: 0.85rem; color: #888; }
        @media (max-width: 768px) {
            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.4rem; }
            .header-inner { flex-wrap: wrap; }
            .nav-toggle { display: block; }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #12122a;
                padding: 1rem 0;
                border-radius: 0 0 16px 16px;
                margin-top: 0.5rem;
            }
            .nav-menu.open { display: flex; }
            .nav-menu a { padding: 0.6rem 1.2rem; }
            .sidebar { margin-top: 2rem; }
            .data-table { font-size: 0.8rem; }
            .data-table th, .data-table td { padding: 0.5rem 0.6rem; }
            .star-rating { font-size: 1.4rem; }
            .search-form { flex-direction: column; }
            .search-form button { width: 100%; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 1rem; }
            h1 { font-size: 1.5rem; }
            .my-logo { font-size: 1.4rem; }
        }
        .text-muted { color: #777; }
        .mt-2 { margin-top: 2rem; }
        .mb-1 { margin-bottom: 1rem; }
        .flex-center { display: flex; align-items: center; gap: 0.5rem; }
        .last-updated { font-size: 0.85rem; color: #888; display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.5rem; }
        .divider { height: 2px; background: linear-gradient(90deg, #b71c1c, transparent); margin: 2rem 0; }
        .highlight-box { background: #fff8e1; border: 1px solid #ffe082; border-radius: 12px; padding: 1.2rem 1.5rem; margin: 1.5rem 0; }
        .icon-list { list-style: none; padding: 0; }
        .icon-list li { padding: 0.3rem 0; display: flex; align-items: center; gap: 0.6rem; }
        .icon-list li i { color: #b71c1c; width: 1.2rem; }
        .btn-sm { padding: 0.3rem 1rem; font-size: 0.8rem; border-radius: 20px; background: #e0e0e0; border: none; cursor: pointer; transition: 0.2s; }
        .btn-sm:hover { background: #ccc; }
        .tag { display: inline-block; background: #e8eaf0; padding: 0.2rem 0.8rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; color: #333; margin-right: 0.3rem; }
        .schema-hidden { display: none; }
