* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f5f3ef;
            color: #2d2a24;
            line-height: 1.7;
            font-size: 1.05rem;
        }
        a {
            color: #1a6b8a;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #0d4a5f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 24px;
        }
        header {
            background: linear-gradient(145deg, #1a2f3a 0%, #0f1e26 100%);
            color: #f0ede8;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f0ede8;
            background: linear-gradient(135deg, #f5c542, #e8a823);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5c542;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-list a {
            color: #d6d0c8;
            padding: 8px 16px;
            border-radius: 40px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .nav-list a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            text-decoration: none;
        }
        .nav-list a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0ede8;
            font-size: 1.7rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background: #ece8e0;
            padding: 12px 0;
            font-size: 0.88rem;
            color: #5a5248;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #a09888;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #1a6b8a;
        }
        .breadcrumb .current {
            color: #3d3528;
            font-weight: 600;
        }
        .hero {
            padding: 48px 0 32px;
            background: #f0ece4;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: #1a2f3a;
            margin-bottom: 16px;
        }
        .hero h1 i {
            color: #e8a823;
            margin-right: 10px;
        }
        .hero .sub {
            font-size: 1.15rem;
            color: #4a4238;
            max-width: 720px;
            margin-bottom: 24px;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px 32px;
            font-size: 0.92rem;
            color: #6a6258;
        }
        .hero-meta span i {
            margin-right: 6px;
            color: #1a6b8a;
        }
        .last-updated {
            background: #e8e0d6;
            padding: 4px 14px;
            border-radius: 40px;
            font-weight: 600;
        }
        .search-section {
            background: #fff;
            padding: 28px 0;
            border-bottom: 1px solid #e0d8ce;
        }
        .search-form {
            display: flex;
            gap: 12px;
            max-width: 560px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 14px 20px;
            border: 2px solid #d6cec2;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            background: #faf8f6;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #1a6b8a;
        }
        .search-form button {
            padding: 14px 32px;
            background: #1a6b8a;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #0d4a5f;
            transform: scale(1.02);
        }
        .content {
            padding: 40px 0 56px;
        }
        .content h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1a2f3a;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #e8a823;
            display: inline-block;
        }
        .content h2 i {
            color: #e8a823;
            margin-right: 10px;
        }
        .content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1f3e4a;
            margin: 32px 0 12px;
        }
        .content h3 i {
            color: #1a6b8a;
            margin-right: 8px;
            font-size: 1.3rem;
        }
        .content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2d4d5a;
            margin: 24px 0 10px;
        }
        .content p {
            margin-bottom: 16px;
            color: #2d2a24;
        }
        .content p b,
        .content p strong {
            color: #1a2f3a;
        }
        .content ul,
        .content ol {
            margin: 12px 0 20px 28px;
        }
        .content li {
            margin-bottom: 8px;
        }
        .content .feature-box {
            background: #faf8f6;
            border-left: 5px solid #e8a823;
            padding: 20px 24px;
            border-radius: 8px;
            margin: 24px 0;
        }
        .content .feature-box h4 {
            margin-top: 0;
        }
        .content .img-wrapper {
            margin: 28px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
        }
        .content .img-wrapper figcaption {
            background: #f0ece4;
            padding: 10px 16px;
            font-size: 0.88rem;
            color: #4a4238;
            text-align: center;
        }
        .interact-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 20px 40px;
            background: #faf8f6;
            padding: 24px 28px;
            border-radius: 16px;
            margin: 40px 0 20px;
            border: 1px solid #e0d8ce;
            align-items: center;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #d6cec2;
            cursor: pointer;
        }
        .rating-stars i.active {
            color: #e8a823;
        }
        .rating-stars i:hover {
            color: #e8a823;
            transform: scale(1.15);
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-score {
            font-weight: 700;
            font-size: 1.2rem;
            color: #1a2f3a;
        }
        .comment-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 20px 0 30px;
            background: #faf8f6;
            padding: 20px 24px;
            border-radius: 16px;
            border: 1px solid #e0d8ce;
        }
        .comment-form input,
        .comment-form textarea {
            flex: 1 1 100%;
            padding: 12px 18px;
            border: 2px solid #d6cec2;
            border-radius: 10px;
            font-size: 0.95rem;
            outline: none;
            background: #fff;
            transition: border 0.2s;
            font-family: inherit;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #1a6b8a;
        }
        .comment-form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .comment-form .row2 {
            display: flex;
            gap: 12px;
            flex: 1 1 100%;
            flex-wrap: wrap;
        }
        .comment-form .row2 input {
            flex: 1;
            min-width: 140px;
        }
        .comment-form button {
            padding: 12px 32px;
            background: #1a6b8a;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover {
            background: #0d4a5f;
            transform: scale(1.02);
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            background: #f0ece4;
            padding: 16px 20px;
            border-radius: 12px;
            margin: 24px 0;
        }
        .link-list-inline a {
            background: #fff;
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 0.88rem;
            font-weight: 500;
            border: 1px solid #d6cec2;
            transition: all 0.2s;
        }
        .link-list-inline a:hover {
            background: #1a6b8a;
            color: #fff;
            border-color: #1a6b8a;
            text-decoration: none;
        }
        footer {
            background: #1a2f3a;
            color: #c8c0b4;
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 32px 48px;
            justify-content: space-between;
        }
        footer .footer-col {
            flex: 1 1 200px;
        }
        footer h4 {
            color: #f0ede8;
            font-size: 1.1rem;
            margin-bottom: 12px;
            font-weight: 700;
        }
        footer a {
            color: #b0a898;
            display: block;
            padding: 3px 0;
            font-size: 0.92rem;
        }
        footer a:hover {
            color: #f5c542;
            text-decoration: none;
        }
        friend-link {
            display: block;
            background: #0f1e26;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 16px 0 24px;
        }
        friend-link a {
            display: inline-block;
            padding: 6px 16px;
            margin: 4px 6px 4px 0;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 40px;
            font-size: 0.9rem;
            color: #c8c0b4;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.2s;
        }
        friend-link a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #f5c542;
            border-color: #f5c542;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            margin-top: 24px;
            font-size: 0.85rem;
            color: #888074;
        }
        .copyright strong {
            color: #b0a898;
        }
        @media (max-width: 820px) {
            .hero h1 {
                font-size: 2rem;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f1e26;
                padding: 16px 12px;
                border-radius: 12px;
                margin-top: 12px;
                gap: 4px;
            }
            .nav-list.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-wrapper {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }
            .nav-wrapper .nav-list a {
                padding: 10px 16px;
                border-radius: 8px;
            }
            .content h2 {
                font-size: 1.6rem;
            }
            .content h3 {
                font-size: 1.25rem;
            }
            .interact-bar {
                flex-direction: column;
                align-items: flex-start;
            }
            .comment-form .row2 {
                flex-direction: column;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-form button {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
            .search-form input {
                padding: 12px 16px;
            }
            .content h2 {
                font-size: 1.35rem;
            }
            .content h3 {
                font-size: 1.1rem;
            }
            .interact-bar {
                padding: 16px 18px;
            }
            .rating-stars {
                font-size: 1.3rem;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .mt-1 {
            margin-top: 8px;
        }
        .mt-2 {
            margin-top: 16px;
        }
        .mb-1 {
            margin-bottom: 8px;
        }
        .mb-2 {
            margin-bottom: 16px;
        }
        .text-center {
            text-align: center;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
