        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background: #f8fafc;
            color: #1a1a2e;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #0d47a1;
            text-decoration: underline;
            text-underline-offset: 2px;
            transition: color 0.2s;
        }
        a:hover {
            color: #1565c0;
            text-decoration: none;
        }
        a:focus-visible {
            outline: 3px solid #ffb300;
            outline-offset: 2px;
            border-radius: 2px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.35rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0a1f3e 0%, #1a3a6a 100%);
            color: #fff;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
            border-bottom: 4px solid #ffb300;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem 1rem;
        }
        .my-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }
        .my-logo i {
            font-size: 1.8rem;
            color: #ffb300;
        }
        .my-logo span {
            background: linear-gradient(135deg, #ffb300, #ffca28);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.55rem;
            font-weight: 400;
            color: #b0c4de;
            display: block;
            -webkit-text-fill-color: #b0c4de;
            letter-spacing: 0.3px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .primary-nav {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        .primary-nav a {
            color: #e0e7f0;
            text-decoration: none;
            padding: 0.5rem 0.9rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .primary-nav a:hover,
        .primary-nav a.active {
            background: rgba(255, 255, 255, 0.12);
            color: #ffb300;
        }
        .primary-nav a i {
            margin-right: 0.3rem;
            font-size: 0.85rem;
        }
        .breadcrumb-wrap {
            background: #eef2f7;
            padding: 0.6rem 0;
            border-bottom: 1px solid #dce3ec;
            font-size: 0.85rem;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.5rem;
            list-style: none;
            padding: 0;
        }
        .breadcrumb li {
            margin: 0;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .breadcrumb li+li::before {
            content: '\f054';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.6rem;
            color: #8a9bb5;
            margin-right: 0.3rem;
        }
        .breadcrumb a {
            color: #0d47a1;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #4a5a72;
            font-weight: 500;
        }
        main {
            padding: 2rem 0 3rem;
        }
        h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.6rem;
            font-weight: 700;
            line-height: 1.2;
            color: #0a1f3e;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }
        h1 i {
            color: #ffb300;
            font-size: 2.2rem;
            margin-right: 0.4rem;
        }
        h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: #0d2b52;
            margin-top: 3rem;
            margin-bottom: 1rem;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid #ffb300;
            display: inline-block;
        }
        h2 i {
            color: #ffb300;
            margin-right: 0.5rem;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1a3a6a;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h3 i {
            color: #0d47a1;
            margin-right: 0.4rem;
            font-size: 1.2rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #2a4a7a;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }
        p {
            margin-bottom: 1rem;
            color: #2c3e50;
        }
        .lead {
            font-size: 1.2rem;
            color: #1a3a6a;
            font-weight: 500;
            line-height: 1.7;
        }
        .featured-image {
            border-radius: 16px;
            overflow: hidden;
            margin: 2rem 0 2.5rem;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
            position: relative;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            max-height: 520px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .featured-image:hover img {
            transform: scale(1.01);
        }
        .featured-image figcaption {
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: #fff;
            padding: 1.5rem 1.5rem 1rem;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            font-size: 0.95rem;
            font-weight: 400;
        }
        .featured-image figcaption strong {
            color: #ffb300;
            font-weight: 600;
        }
        .highlight-box {
            background: linear-gradient(135deg, #e8f0fe, #f0f4ff);
            border-left: 6px solid #ffb300;
            border-radius: 12px;
            padding: 1.75rem 2rem;
            margin: 2rem 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .highlight-box i {
            color: #0d47a1;
            margin-right: 0.5rem;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.25rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: #fff;
            border-radius: 14px;
            padding: 1.5rem 1.25rem;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #eef2f7;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
        }
        .stat-card .num {
            font-size: 2.4rem;
            font-weight: 800;
            color: #0a1f3e;
            line-height: 1.2;
        }
        .stat-card .num span {
            color: #ffb300;
        }
        .stat-card .label {
            font-size: 0.95rem;
            color: #4a5a72;
            font-weight: 500;
            margin-top: 0.3rem;
        }
        .stat-card i {
            font-size: 2rem;
            color: #0d47a1;
            margin-bottom: 0.5rem;
        }
        .form-section {
            background: #fff;
            border-radius: 18px;
            padding: 2rem 2rem 2.5rem;
            margin: 2.5rem 0;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid #eef2f7;
        }
        .form-section h3 {
            margin-top: 0;
            border-bottom: 2px solid #eef2f7;
            padding-bottom: 0.75rem;
        }
        .form-group {
            margin-bottom: 1.25rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.35rem;
            color: #1a3a6a;
            font-size: 0.95rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid #dce3ec;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            background: #fafcff;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #0d47a1;
            box-shadow: 0 0 0 4px rgba(13, 71, 161, 0.1);
            outline: none;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            font-family: inherit;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            background: #0a1f3e;
            color: #fff;
        }
        .btn:hover {
            background: #0d2b52;
            transform: translateY(-1px);
        }
        .btn:active {
            transform: scale(0.97);
        }
        .btn i {
            font-size: 1rem;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #0a1f3e;
            color: #0a1f3e;
        }
        .btn-outline:hover {
            background: #0a1f3e;
            color: #fff;
        }
        .rating-stars {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.25rem;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 2rem;
            color: #dce3ec;
            cursor: pointer;
            transition: color 0.15s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #ffb300;
        }
        .comment-list {
            margin-top: 1.5rem;
            border-top: 1px solid #eef2f7;
            padding-top: 1.5rem;
        }
        .comment-item {
            padding: 1rem 0;
            border-bottom: 1px solid #f0f4ff;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-item .author {
            font-weight: 600;
            color: #0a1f3e;
        }
        .comment-item .date {
            font-size: 0.8rem;
            color: #8a9bb5;
            margin-left: 0.75rem;
        }
        .comment-item .text {
            margin-top: 0.3rem;
            color: #2c3e50;
        }
        friend-link {
            display: block;
            background: #0a1f3e;
            color: #e0e7f0;
            padding: 2rem 0;
            margin-top: 2rem;
            border-top: 4px solid #ffb300;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem 1.5rem;
            justify-content: center;
        }
        friend-link a {
            color: #ffca28;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
        }
        friend-link .fl-title {
            width: 100%;
            text-align: center;
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffb300;
            margin-bottom: 0.5rem;
        }
        .site-footer {
            background: #06152b;
            color: #b0c4de;
            padding: 2rem 0 1.5rem;
            font-size: 0.9rem;
        }
        .site-footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .site-footer .copyright {
            color: #8a9bb5;
        }
        .site-footer .copyright strong {
            color: #ffca28;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #eef2f7;
            padding: 0.4rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #4a5a72;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }
        .last-updated i {
            color: #0d47a1;
        }
        @media (max-width: 991px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 767px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 0.15rem;
                padding: 0.75rem 0 0.25rem;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 0.5rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.65rem 1rem;
                border-radius: 6px;
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
                margin-top: 2rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .container {
                padding: 0 1rem;
            }
            .form-section {
                padding: 1.5rem 1.25rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .featured-image img {
                max-height: 280px;
            }
            .featured-image figcaption {
                font-size: 0.8rem;
                padding: 0.75rem 1rem;
            }
            .site-footer .container {
                flex-direction: column;
                text-align: center;
            }
            friend-link .container {
                flex-direction: column;
                align-items: center;
            }
            .breadcrumb-wrap {
                font-size: 0.75rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.1rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                transition-duration: 0.01ms !important;
                animation-duration: 0.01ms !important;
            }
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        th {
            background: #0a1f3e;
            color: #fff;
            font-weight: 600;
            padding: 0.85rem 1rem;
            text-align: left;
            font-size: 0.95rem;
        }
        td {
            padding: 0.75rem 1rem;
            border-bottom: 1px solid #eef2f7;
            color: #2c3e50;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f8faff;
        }
        .tag {
            display: inline-block;
            background: #e8f0fe;
            color: #0d47a1;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 500;
            margin: 0.2rem;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #dce3ec, transparent);
            margin: 2.5rem 0;
        }
        .emoji-big {
            font-size: 1.8rem;
            line-height: 1;
        }
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #0a1f3e;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            transition: transform 0.2s, background 0.2s;
            z-index: 999;
            border: none;
            cursor: pointer;
            font-size: 1.3rem;
        }
        .back-to-top:hover {
            background: #0d2b52;
            transform: translateY(-3px);
        }
