        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f4f7fc;
            color: #1a2634;
            line-height: 1.7;
            padding: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #0066cc;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #003d7a;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4 {
            line-height: 1.3;
            color: #0b1a2a;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0b1a2a 0%, #1e3a5f 100%);
            color: #fff;
            padding: 1rem 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.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5d300, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5d300;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.75rem;
            font-weight: 400;
            -webkit-text-fill-color: rgba(255, 255, 255, 0.7);
            display: block;
            letter-spacing: 0.5px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-size: 1.6rem;
            padding: 0.4rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .primary-nav {
            display: flex;
            gap: 1.8rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .primary-nav a {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .primary-nav a:hover {
            color: #fff;
            border-bottom-color: #f5d300;
            text-decoration: none;
        }
        .primary-nav a i {
            margin-right: 0.3rem;
        }
        .breadcrumb {
            background: #e9edf2;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #dce2e9;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            gap: 0.4rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.4rem;
            color: #7a8a9e;
        }
        .breadcrumb a {
            color: #2a4b6e;
        }
        .breadcrumb .current {
            color: #0b1a2a;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #0f2a44, #1c4a76);
            color: #fff;
            padding: 3rem 0 2.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🏆";
            position: absolute;
            right: -20px;
            bottom: -30px;
            font-size: 12rem;
            opacity: 0.06;
            transform: rotate(-10deg);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 0.5rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .hero h1 span {
            background: linear-gradient(135deg, #f5d300, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 700px;
            margin: 0 auto 1rem;
            opacity: 0.9;
        }
        .hero-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 1rem;
        }
        .hero-meta i {
            margin-right: 0.4rem;
            color: #f5d300;
        }
        .search-section {
            background: #fff;
            padding: 1.8rem 0;
            border-bottom: 1px solid #e2e8f0;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            max-width: 600px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #dce2e9;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            border-color: #0066cc;
        }
        .search-form button {
            padding: 0.8rem 2rem;
            background: #0066cc;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #004d99;
            transform: scale(1.02);
        }
        .main-content {
            padding: 2.5rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.5rem;
        }
        .content-body h2 {
            font-size: 1.9rem;
            margin-top: 2.2rem;
            margin-bottom: 0.8rem;
            border-left: 5px solid #f5d300;
            padding-left: 1rem;
        }
        .content-body h3 {
            font-size: 1.4rem;
            margin-top: 1.8rem;
            margin-bottom: 0.5rem;
            color: #1e3a5f;
        }
        .content-body h4 {
            font-size: 1.15rem;
            margin-top: 1.4rem;
            margin-bottom: 0.3rem;
            color: #2a4b6e;
        }
        .content-body p {
            margin-bottom: 1.1rem;
        }
        .content-body ul,
        .content-body ol {
            margin-bottom: 1.2rem;
        }
        .content-body li {
            margin-bottom: 0.3rem;
        }
        .highlight-box {
            background: #eef5ff;
            border-left: 4px solid #0066cc;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .highlight-box strong {
            color: #003d7a;
        }
        .stat-badge {
            display: inline-block;
            background: #0b1a2a;
            color: #f5d300;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
            background: #e9edf2;
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
            min-height: 280px;
            background: #d0d8e4;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #4a5a6e;
            background: #fff;
            border-top: 1px solid #e2e8f0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin-bottom: 1.5rem;
            border: 1px solid #e8edf4;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            border-bottom: 2px solid #f0f4fa;
            padding-bottom: 0.5rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 0.5rem;
        }
        .sidebar-card li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 0;
            font-size: 0.92rem;
            border-bottom: 1px solid #f0f4fa;
        }
        .sidebar-card li a i {
            color: #f5d300;
            width: 1.2rem;
            text-align: center;
        }
        .rating-section {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #e8edf4;
            margin: 2rem 0;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 2rem;
            color: #dce2e9;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f5b400;
        }
        .rating-stars i {
            transition: transform 0.15s, color 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 1rem;
        }
        .rating-form textarea {
            padding: 0.8rem 1rem;
            border: 2px solid #dce2e9;
            border-radius: 12px;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 80px;
            font-family: inherit;
        }
        .rating-form textarea:focus {
            border-color: #0066cc;
            outline: none;
        }
        .rating-form button {
            align-self: flex-start;
            padding: 0.6rem 2rem;
            background: #0b1a2a;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-form button:hover {
            background: #1e3a5f;
        }
        .comments-section {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #e8edf4;
            margin: 2rem 0;
        }
        .comments-section h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 0.8rem 1rem;
            border: 2px solid #dce2e9;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #0066cc;
            outline: none;
        }
        .comment-form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .comment-form button {
            align-self: flex-start;
            padding: 0.6rem 2rem;
            background: #0066cc;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #004d99;
        }
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .comment-item {
            padding: 1rem;
            background: #f7faff;
            border-radius: 12px;
            border-left: 3px solid #0066cc;
        }
        .comment-item .meta {
            font-size: 0.8rem;
            color: #6a7a8e;
            display: flex;
            gap: 1rem;
            margin-bottom: 0.3rem;
        }
        .comment-item .meta strong {
            color: #0b1a2a;
        }
        .site-footer {
            background: #0b1a2a;
            color: rgba(255, 255, 255, 0.8);
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #f5d300;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
        }
        .footer-inner a {
            color: rgba(255, 255, 255, 0.7);
        }
        .footer-inner a:hover {
            color: #f5d300;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.2rem;
            margin-top: 2rem;
            text-align: center;
            font-size: 0.85rem;
        }
        friend-link {
            display: block;
            margin-top: 0.5rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 0.8rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0 0.5rem;
                gap: 0.8rem;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 0.8rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .search-form {
                flex-direction: column;
                align-items: stretch;
            }
            .search-form button {
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
            .container {
                padding: 0 14px;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
        }
        .text-muted {
            color: #6a7a8e;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.85rem;
            color: #6a7a8e;
            background: #f0f4fa;
            padding: 0.3rem 1rem;
            border-radius: 20px;
        }
