        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f5f7fa;
            color: #1e293b;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #0f3b5e;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #d97706;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            color: #0c2033;
        }
        h1 {
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }
        h2 {
            font-size: 1.6rem;
            margin-top: 2.4rem;
            margin-bottom: 0.6rem;
            border-left: 5px solid #d97706;
            padding-left: 16px;
        }
        h3 {
            font-size: 1.25rem;
            margin-top: 1.8rem;
            margin-bottom: 0.4rem;
        }
        h4 {
            font-size: 1.05rem;
            margin-top: 1.2rem;
            margin-bottom: 0.3rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            border-radius: 20px;
            padding: 20px 24px 32px;
        }
        @media (min-width: 768px) {
            body {
                padding: 20px 32px;
            }
            .container {
                padding: 32px 48px 48px;
            }
            h1 {
                font-size: 2.6rem;
            }
            h2 {
                font-size: 1.9rem;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0 16px;
            border-bottom: 2px solid #e2e8f0;
            position: relative;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #0f3b5e, #d97706);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            text-decoration: none !important;
        }
        .my-logo:hover {
            -webkit-text-fill-color: #d97706;
            text-decoration: none !important;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #475569;
            display: block;
            font-weight: 400;
            letter-spacing: 0.4px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-links {
            display: none;
            flex-direction: column;
            gap: 4px;
            list-style: none;
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
            padding: 16px 20px;
            position: absolute;
            top: 100%;
            right: 0;
            left: 0;
            z-index: 99;
            margin-top: 8px;
            border: 1px solid #e2e8f0;
        }
        .nav-links.show {
            display: flex;
        }
        .nav-links li a {
            display: block;
            padding: 8px 4px;
            font-weight: 500;
            border-radius: 8px;
            color: #1e293b;
        }
        .nav-links li a:hover {
            background: #f1f5f9;
            color: #d97706;
            text-decoration: none;
        }
        .hamburger {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 6px 10px;
            border-radius: 10px;
            color: #0f3b5e;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #e2e8f0;
        }
        @media (min-width: 768px) {
            .nav-wrapper {
                gap: 24px;
            }
            .nav-links {
                display: flex !important;
                flex-direction: row;
                position: static;
                box-shadow: none;
                border: none;
                padding: 0;
                background: transparent;
                gap: 18px;
            }
            .nav-links li a {
                padding: 4px 0;
                border-radius: 0;
                border-bottom: 2px solid transparent;
            }
            .nav-links li a:hover {
                background: transparent;
                border-bottom-color: #d97706;
            }
            .hamburger {
                display: none !important;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 12px 0 8px;
            font-size: 0.85rem;
            color: #64748b;
        }
        .breadcrumb a {
            color: #0f3b5e;
        }
        .breadcrumb a:hover {
            color: #d97706;
        }
        .breadcrumb .sep {
            color: #94a3b8;
        }
        .search-box {
            background: #f1f5f9;
            border-radius: 40px;
            padding: 4px 4px 4px 20px;
            display: flex;
            align-items: center;
            margin: 20px 0 12px;
            border: 1px solid #e2e8f0;
            transition: box-shadow 0.2s;
            max-width: 520px;
        }
        .search-box:focus-within {
            box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.25);
            border-color: #d97706;
        }
        .search-box input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 12px 0;
            font-size: 0.95rem;
            outline: none;
            font-family: inherit;
        }
        .search-box button {
            background: #0f3b5e;
            border: none;
            color: #fff;
            padding: 10px 20px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .search-box button:hover {
            background: #d97706;
        }
        .feature-image {
            margin: 24px 0 20px;
            border-radius: 16px;
            overflow: hidden;
            background: #e2e8f0;
        }
        .feature-image img {
            width: 100%;
            object-fit: cover;
            max-height: 420px;
        }
        .feature-image figcaption {
            padding: 10px 16px;
            font-size: 0.85rem;
            color: #475569;
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
        }
        .interaction-area {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 32px 0 20px;
            padding: 20px 0;
            border-top: 2px solid #e2e8f0;
            border-bottom: 2px solid #e2e8f0;
        }
        .comment-form,
        .score-form {
            flex: 1 1 240px;
            background: #f8fafc;
            padding: 18px 20px;
            border-radius: 16px;
            border: 1px solid #e2e8f0;
        }
        .comment-form h4,
        .score-form h4 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1rem;
        }
        .comment-form textarea,
        .score-form select,
        .score-form input[type="text"] {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #cbd5e1;
            border-radius: 10px;
            font-family: inherit;
            font-size: 0.9rem;
            background: #fff;
            margin-top: 6px;
            transition: border 0.2s;
        }
        .comment-form textarea:focus,
        .score-form select:focus,
        .score-form input:focus {
            border-color: #d97706;
            outline: none;
            box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
        }
        .comment-form textarea {
            min-height: 80px;
            resize: vertical;
        }
        .comment-form .btn,
        .score-form .btn {
            background: #0f3b5e;
            color: #fff;
            border: none;
            padding: 10px 22px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 10px;
            transition: background 0.2s;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .comment-form .btn:hover,
        .score-form .btn:hover {
            background: #d97706;
        }
        .score-stars {
            display: flex;
            gap: 6px;
            font-size: 1.4rem;
            color: #f59e0b;
            margin: 6px 0 8px;
            cursor: pointer;
        }
        .score-stars i {
            transition: transform 0.15s;
        }
        .score-stars i:hover {
            transform: scale(1.2);
        }
        friend-link {
            display: block;
            padding: 20px 0 8px;
            border-top: 2px solid #e2e8f0;
            margin-top: 28px;
        }
        friend-link .fl-head {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: #0c2033;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
            list-style: none;
            padding: 0;
        }
        friend-link .fl-list li a {
            font-size: 0.9rem;
            color: #0f3b5e;
            padding: 2px 0;
            border-bottom: 1px solid transparent;
        }
        friend-link .fl-list li a:hover {
            border-bottom-color: #d97706;
            text-decoration: none;
            color: #d97706;
        }
        .site-footer {
            padding: 20px 0 8px;
            font-size: 0.85rem;
            color: #64748b;
            text-align: center;
            border-top: 1px solid #e2e8f0;
            margin-top: 20px;
        }
        .site-footer .copyright {
            font-weight: 500;
            color: #334155;
        }
        .badge {
            display: inline-block;
            background: #0f3b5e;
            color: #fff;
            font-size: 0.7rem;
            padding: 2px 10px;
            border-radius: 20px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .badge-gold {
            background: #d97706;
        }
        .highlight-box {
            background: #fffbeb;
            border-left: 4px solid #f59e0b;
            padding: 14px 18px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
            margin: 18px 0 22px;
        }
        .stat-card {
            background: #f1f5f9;
            border-radius: 14px;
            padding: 16px 12px;
            text-align: center;
            border: 1px solid #e2e8f0;
        }
        .stat-card .num {
            font-size: 1.8rem;
            font-weight: 800;
            color: #0f3b5e;
        }
        .stat-card .label {
            font-size: 0.8rem;
            color: #475569;
            font-weight: 500;
        }
        .inline-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 14px;
            margin: 10px 0 16px;
            padding: 0;
            list-style: none;
            font-size: 0.9rem;
        }
        .inline-link-list li a {
            color: #0f3b5e;
            border-bottom: 1px dotted #cbd5e1;
        }
        .inline-link-list li a:hover {
            border-bottom-color: #d97706;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 18px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        th,
        td {
            padding: 10px 12px;
            border-bottom: 1px solid #e2e8f0;
            text-align: left;
        }
        th {
            background: #f1f5f9;
            font-weight: 700;
            color: #0c2033;
        }
        .updated {
            display: inline-block;
            margin-top: 8px;
            font-size: 0.8rem;
            color: #64748b;
            background: #f1f5f9;
            padding: 4px 14px;
            border-radius: 30px;
        }
        .emoji-big {
            font-size: 1.3em;
        }
        @media (max-width: 480px) {
            .container {
                padding: 12px 12px 24px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
                padding-left: 10px;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .search-box {
                flex-wrap: wrap;
                border-radius: 24px;
                padding: 4px 4px 4px 12px;
            }
            .search-box input {
                padding: 8px 0;
                font-size: 0.85rem;
            }
            .search-box button {
                padding: 6px 14px;
                font-size: 0.8rem;
            }
        }
