        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
            background: #f4f6fa;
            color: #1a1e2b;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #2a6df4;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #1a4fbf;
            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.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin: 1.8rem 0 0.8rem;
            color: #0f1419;
        }
        h1 {
            font-size: 2.2rem;
            margin-top: 0.2rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 3px solid #2a6df4;
            padding-bottom: 0.4rem;
            display: inline-block;
        }
        h3 {
            font-size: 1.4rem;
        }
        h4 {
            font-size: 1.15rem;
        }
        p {
            margin: 0 0 1.2rem;
        }
        strong {
            font-weight: 700;
            color: #0f1419;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0f1419 0%, #1a2a3a 100%);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 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: 900;
            color: #fff;
            letter-spacing: -0.5px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f9d423, #ff4e50);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            text-decoration: none !important;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none !important;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #8899aa;
            color: #8899aa;
            letter-spacing: 1px;
            font-weight: 400;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #ccdbe9;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            text-decoration: none;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 6px 12px;
            border-radius: 8px;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .breadcrumb {
            background: #e8ecf2;
            padding: 12px 0;
            font-size: 0.85rem;
            color: #556677;
        }
        .breadcrumb a {
            color: #2a6df4;
        }
        .breadcrumb span {
            margin: 0 6px;
            color: #99aabb;
        }
        .hero {
            padding: 40px 0 20px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.6rem;
            background: linear-gradient(135deg, #1a2a3a, #2a6df4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.4rem;
        }
        .hero .subtitle {
            font-size: 1.1rem;
            color: #556677;
            max-width: 700px;
            margin: 0 auto 1.2rem;
        }
        .hero .last-updated {
            display: inline-block;
            background: #e8ecf2;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #334455;
        }
        .hero .last-updated i {
            margin-right: 6px;
            color: #2a6df4;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin: 30px 0 40px;
        }
        .stat-card {
            background: #fff;
            padding: 24px 18px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #eef1f6;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
        }
        .stat-card .stat-icon {
            font-size: 2rem;
            color: #2a6df4;
            margin-bottom: 8px;
        }
        .stat-card .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #0f1419;
            line-height: 1.2;
        }
        .stat-card .stat-label {
            font-size: 0.9rem;
            color: #778899;
            margin-top: 4px;
        }
        .stat-card .stat-change {
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 6px;
        }
        .stat-card .stat-change.up {
            color: #1c9b5e;
        }
        .stat-card .stat-change.down {
            color: #d93838;
        }
        .content-section {
            background: #fff;
            border-radius: 20px;
            padding: 36px 32px;
            margin: 28px 0;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.03);
            border: 1px solid #eef1f6;
        }
        .content-section .section-icon {
            font-size: 1.8rem;
            margin-right: 12px;
            vertical-align: middle;
        }
        .image-card {
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden;
            background: #f8faff;
            border: 1px solid #e4e9f0;
        }
        .image-card img {
            width: 100%;
            border-radius: 16px 16px 0 0;
        }
        .image-card .img-caption {
            padding: 14px 20px;
            font-size: 0.9rem;
            color: #556677;
            background: #f8faff;
            font-style: italic;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
        }
        .data-table th {
            background: #1a2a3a;
            color: #fff;
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #eef1f6;
        }
        .data-table tr:hover td {
            background: #f4f7fc;
        }
        .data-table .highlight {
            font-weight: 700;
            color: #2a6df4;
        }
        .search-box {
            display: flex;
            gap: 10px;
            max-width: 580px;
            margin: 18px 0 10px;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid #dde3ec;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
            min-width: 180px;
        }
        .search-box input:focus {
            border-color: #2a6df4;
        }
        .search-box button {
            padding: 14px 32px;
            background: #2a6df4;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
        }
        .search-box button:hover {
            background: #1a4fbf;
            transform: scale(1.02);
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            max-width: 620px;
            margin: 18px 0 10px;
        }
        .comment-form textarea,
        .comment-form input,
        .rating-form select,
        .rating-form input {
            padding: 14px 18px;
            border: 2px solid #dde3ec;
            border-radius: 12px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
            font-family: inherit;
            background: #fafcff;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .rating-form select:focus,
        .rating-form input:focus {
            border-color: #2a6df4;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            align-self: flex-start;
            padding: 12px 32px;
            background: #1a2a3a;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #0f1419;
            transform: scale(1.02);
        }
        .rating-stars {
            font-size: 1.6rem;
            color: #f9d423;
            letter-spacing: 4px;
        }
        friend-link {
            display: block;
            padding: 28px 0 10px;
            border-top: 2px solid #e4e9f0;
            margin-top: 20px;
        }
        friend-link .friend-title {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 14px;
            color: #0f1419;
        }
        friend-link .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
            list-style: none;
            padding: 0;
        }
        friend-link .friend-list li {
            margin: 0;
        }
        friend-link .friend-list a {
            color: #2a6df4;
            font-size: 0.95rem;
        }
        friend-link .friend-list a:hover {
            text-decoration: underline;
        }
        .site-footer {
            background: #0f1419;
            color: #99aabb;
            padding: 32px 0 24px;
            margin-top: 40px;
            text-align: center;
            font-size: 0.9rem;
        }
        .site-footer a {
            color: #ccdbe9;
        }
        .site-footer .copyright {
            margin-top: 12px;
            border-top: 1px solid #2a3a4a;
            padding-top: 18px;
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1a2a3a;
                padding: 12px 0 18px;
                border-radius: 0 0 16px 16px;
                margin-top: 6px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 20px;
                width: 100%;
                text-align: center;
                border-radius: 0;
            }
            .nav-toggle {
                display: block;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .content-section {
                padding: 24px 16px;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .stat-card .stat-number {
                font-size: 1.6rem;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 10px 10px;
            }
            .search-box input,
            .search-box button {
                width: 100%;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 10px 0;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-card {
                padding: 16px 12px;
            }
            .stat-card .stat-number {
                font-size: 1.3rem;
            }
            .container {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            .content-section {
                padding: 18px 12px;
                margin: 16px 0;
            }
        }
        .inline-link {
            font-weight: 600;
            color: #2a6df4;
        }
        .tag {
            display: inline-block;
            background: #eef3ff;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #2a6df4;
            font-weight: 600;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #2a6df4, transparent);
            margin: 32px 0;
            opacity: 0.2;
        }
        .eeat-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #e8f5e9;
            color: #1c6b3a;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .eeat-badge i {
            font-size: 1rem;
        }
        .stars-display {
            color: #f9d423;
            letter-spacing: 2px;
            font-size: 1.2rem;
        }
