        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f5f7fc;
            color: #1a1a2e;
            line-height: 1.7;
            font-size: 16px;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #e94560;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #b82a42;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            color: #fff;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            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.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fff;
            background: linear-gradient(90deg, #f7971e, #ffd200);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            background: none;
            -webkit-text-fill-color: #f7971e;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e0e0ff;
            padding: 0.5rem 0.9rem;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(255, 255, 255, 0.12);
            color: #ffd200;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.35rem;
        }
        .hamburger {
            display: none;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .breadcrumb {
            background: #eef0f7;
            padding: 0.7rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #dce1ec;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #888;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #e94560;
        }
        .breadcrumb .current {
            color: #444;
            font-weight: 500;
        }
        main {
            padding: 2.5rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: #fff;
            border-radius: 24px;
            padding: 2.2rem 2.5rem;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
        }
        @media (max-width: 640px) {
            article {
                padding: 1.5rem 1.2rem;
            }
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 0.75rem;
            color: #0f0c29;
            letter-spacing: -0.5px;
        }
        h1 i {
            color: #f7971e;
            margin-right: 0.4rem;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 2.2rem 0 1rem 0;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid #f0f2f8;
            color: #1a1a2e;
        }
        h2 i {
            color: #e94560;
            margin-right: 0.5rem;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            margin: 1.8rem 0 0.7rem 0;
            color: #2d2d44;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 1.2rem 0 0.4rem 0;
            color: #3d3d5c;
        }
        p {
            margin-bottom: 1.1rem;
            color: #2c2c3e;
        }
        .feature-img {
            border-radius: 16px;
            margin: 1.6rem 0;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
            width: 100%;
        }
        .highlight-box {
            background: #f8f9ff;
            border-left: 5px solid #e94560;
            padding: 1.2rem 1.6rem;
            border-radius: 0 16px 16px 0;
            margin: 1.5rem 0;
        }
        .highlight-box strong {
            color: #e94560;
        }
        .emoji-big {
            font-size: 1.3rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fafbff;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e4e7f0;
        }
        th {
            background: #0f0c29;
            color: #fff;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f0f2fa;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
        }
        .sidebar-card h3 {
            font-size: 1.15rem;
            margin-top: 0;
            margin-bottom: 0.8rem;
            border-bottom: 2px solid #f0f2f8;
            padding-bottom: 0.5rem;
        }
        .sidebar-link-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-link-list li {
            margin-bottom: 0.5rem;
            border-bottom: 1px solid #f0f2f8;
            padding-bottom: 0.5rem;
        }
        .sidebar-link-list li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .sidebar-link-list a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #1a1a2e;
            font-weight: 500;
            transition: all 0.2s;
        }
        .sidebar-link-list a:hover {
            color: #e94560;
            text-decoration: none;
            padding-left: 4px;
        }
        .sidebar-link-list a i {
            color: #e94560;
            font-size: 0.85rem;
            width: 1.2rem;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 2px solid #dce1ec;
            border-radius: 40px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.25s;
        }
        .search-form input:focus {
            border-color: #e94560;
        }
        .search-form button {
            background: #e94560;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.7rem 1.3rem;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s;
        }
        .search-form button:hover {
            background: #b82a42;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #ddd;
            cursor: pointer;
            margin: 0.5rem 0 0.8rem;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f5a623;
            transform: scale(1.1);
        }
        .rating-stars i.active {
            color: #f5a623;
        }
        .rating-display {
            font-size: 0.95rem;
            color: #555;
            margin-bottom: 1rem;
        }
        .rating-display span {
            font-weight: 700;
            color: #f5a623;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #dce1ec;
            border-radius: 16px;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border 0.25s;
            font-family: inherit;
        }
        .comment-form textarea:focus {
            border-color: #e94560;
        }
        .comment-form .form-actions {
            display: flex;
            gap: 0.8rem;
            margin-top: 0.7rem;
            flex-wrap: wrap;
        }
        .comment-form button {
            background: #0f0c29;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.7rem 1.8rem;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .comment-form button:hover {
            background: #302b63;
            transform: translateY(-1px);
        }
        .comment-form button[type="reset"] {
            background: #e4e7f0;
            color: #333;
        }
        .comment-form button[type="reset"]:hover {
            background: #d0d4e2;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0 0.4rem;
            border-top: 2px solid #e4e7f0;
            margin-top: 1rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1.2rem 0.3rem 0;
            color: #e94560;
            font-weight: 500;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        friend-link .fl-title {
            font-weight: 700;
            font-size: 1rem;
            color: #1a1a2e;
            display: block;
            margin-bottom: 0.4rem;
        }
        .site-footer {
            background: #0f0c29;
            color: #bbb;
            padding: 2rem 0 1.5rem;
            font-size: 0.9rem;
            margin-top: 1.5rem;
        }
        .site-footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.2rem;
        }
        .site-footer .copy {
            color: #999;
        }
        .site-footer a {
            color: #ffd200;
        }
        .site-footer a:hover {
            color: #fff;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 0.8rem;
                gap: 0.1rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1rem;
                border-radius: 10px;
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
            .sidebar {
                order: 2;
            }
            article {
                order: 1;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            article {
                padding: 1.2rem 0.9rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .comment-form .form-actions {
                flex-direction: column;
            }
            .comment-form .form-actions button {
                width: 100%;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-small {
            font-size: 0.85rem;
            color: #666;
        }
        .last-updated {
            display: inline-block;
            background: #f0f2f8;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #555;
            margin-bottom: 1.2rem;
        }
        .last-updated i {
            margin-right: 0.3rem;
        }
        .anchor-offset {
            scroll-margin-top: 90px;
        }
