        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f7f9fc;
            color: #1e2a3a;
            line-height: 1.75;
            font-size: 16px;
        }
        a {
            color: #1a6b8a;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #0d3b4f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.3rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #0b1c2a;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0;
        }
        h2 {
            font-size: 1.9rem;
            border-bottom: 2px solid #d0dfe9;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.2rem;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #0b1c2a 0%, #1a3a4f 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            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;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5d37c, #f0b86c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(245, 211, 124, 0.3);
            display: inline-block;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
            -webkit-text-fill-color: transparent;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5d37c;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            font-size: 1.6rem;
            background: none;
            border: none;
            color: #f5d37c;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e8f0f8;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #f5d37c;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 5px;
            font-size: 0.85rem;
        }
        .breadcrumb {
            background: #eaf0f5;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #d0dfe9;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #6f8a9f;
            margin-right: 0.6rem;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #1a6b8a;
        }
        .breadcrumb .current {
            color: #3d5a6f;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #e3eef7 0%, #c9dde9 100%);
            padding: 2.5rem 1.5rem;
            border-radius: 18px;
            margin: 1.5rem 0 2rem;
            text-align: center;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🎯";
            position: absolute;
            right: 20px;
            bottom: 10px;
            font-size: 4rem;
            opacity: 0.12;
        }
        .hero h1 {
            font-size: 2.6rem;
            color: #0b1c2a;
            margin-bottom: 0.6rem;
        }
        .hero h1 i {
            color: #f0b86c;
            margin-right: 10px;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 780px;
            margin: 0 auto 0.8rem;
            color: #2c4257;
        }
        .hero .last-updated {
            display: inline-block;
            background: #fff;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #3d5a6f;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        .search-section {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 1.8rem 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
            border: 1px solid #e3edf5;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.85rem 1.2rem;
            border: 2px solid #dce8f0;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
            background: #f7fafc;
        }
        .search-form input[type="text"]:focus {
            border-color: #1a6b8a;
            background: #fff;
        }
        .search-form button {
            background: #1a6b8a;
            color: #fff;
            border: none;
            padding: 0.85rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #0d3b4f;
            transform: translateY(-2px);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        .main-content {
            background: #fff;
            border-radius: 18px;
            padding: 2.2rem 2.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            border: 1px solid #e8f0f6;
        }
        .main-content p {
            font-size: 1.02rem;
            color: #1e2a3a;
        }
        .main-content strong {
            color: #0b1c2a;
        }
        .main-content .highlight-box {
            background: #f2f7fb;
            border-left: 5px solid #f0b86c;
            padding: 1.2rem 1.8rem;
            border-radius: 8px;
            margin: 1.4rem 0;
        }
        .main-content .highlight-box i {
            color: #f0b86c;
            margin-right: 8px;
        }
        .main-content .screenshot-showcase {
            margin: 2rem 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
            background: #f0f5fa;
            padding: 1rem;
            text-align: center;
        }
        .main-content .screenshot-showcase img {
            border-radius: 10px;
            margin: 0 auto;
            max-width: 100%;
        }
        .main-content .screenshot-showcase figcaption {
            margin-top: 0.8rem;
            font-size: 0.9rem;
            color: #3d5a6f;
            font-style: italic;
        }
        .sidebar {
            position: sticky;
            top: 90px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem 1.6rem;
            margin-bottom: 1.6rem;
            border: 1px solid #e8f0f6;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
        }
        .sidebar-card h4 {
            font-size: 1.1rem;
            margin-top: 0;
            margin-bottom: 0.8rem;
            color: #0b1c2a;
            border-bottom: 2px solid #e3edf5;
            padding-bottom: 0.4rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #f0f5fa;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.92rem;
        }
        .sidebar-card ul li a i {
            color: #f0b86c;
            font-size: 0.75rem;
        }
        .rating-area,
        .comment-area {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 1.8rem 0;
            border: 1px solid #e8f0f6;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
        }
        .rating-area h3,
        .comment-area h3 {
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 2rem;
            margin: 0.6rem 0 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #d0dce6;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
        }
        .rating-form button,
        .comment-form button {
            background: #1a6b8a;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #0d3b4f;
            transform: translateY(-2px);
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 2px solid #dce8f0;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            resize: vertical;
            min-height: 110px;
            outline: none;
            transition: border 0.25s;
            background: #f7fafc;
            margin: 0.6rem 0 0.8rem;
        }
        .comment-form textarea:focus {
            border-color: #1a6b8a;
            background: #fff;
        }
        .comment-form .form-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 140px;
            padding: 0.7rem 1.2rem;
            border: 2px solid #dce8f0;
            border-radius: 50px;
            font-size: 0.9rem;
            outline: none;
            transition: border 0.25s;
            background: #f7fafc;
        }
        .comment-form .form-row input:focus {
            border-color: #1a6b8a;
            background: #fff;
        }
        .site-footer {
            background: #0b1c2a;
            color: #cbdae6;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 4px solid #f0b86c;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 1.8rem;
        }
        .footer-grid h4 {
            color: #f5d37c;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-grid a {
            color: #b0c8da;
        }
        .footer-grid a:hover {
            color: #f5d37c;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-grid ul li {
            padding: 0.2rem 0;
        }
        friend-link {
            display: block;
            padding: 1rem 0;
            border-top: 1px solid #1e3a4f;
            margin-top: 1rem;
            font-size: 0.9rem;
        }
        friend-link a {
            color: #b0c8da;
            margin: 0 0.6rem 0 0;
            display: inline-block;
        }
        friend-link a:hover {
            color: #f5d37c;
        }
        .copyright {
            text-align: center;
            padding-top: 1.2rem;
            border-top: 1px solid #1e3a4f;
            font-size: 0.85rem;
            color: #7f9bb3;
        }
        .copyright strong {
            color: #cbdae6;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.2rem;
                padding-top: 0.8rem;
                border-top: 1px solid rgba(255, 255, 255, 0.08);
                margin-top: 0.6rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-radius: 8px;
                width: 100%;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero {
                padding: 1.8rem 1rem;
            }
            .main-content {
                padding: 1.2rem 1.2rem;
            }
            .main-content h2 {
                font-size: 1.5rem;
            }
            .main-content h3 {
                font-size: 1.25rem;
            }
            .rating-area,
            .comment-area {
                padding: 1.2rem;
            }
            .search-section {
                padding: 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input[type="text"] {
                width: 100%;
                min-width: unset;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .breadcrumb ol {
                font-size: 0.75rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .comment-form .form-row input {
                width: 100%;
                min-width: unset;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .main-content {
                padding: 0.8rem 0.8rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.1rem;
            }
        }
        .emoji-lg {
            font-size: 1.4em;
        }
        .text-accent {
            color: #1a6b8a;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .main-nav {
            transition: all 0.3s ease;
        }
