        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #0b0e14;
            color: #e8edf3;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #f5a623;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffd966;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #141a24 0%, #1a2230 100%);
            padding: 18px 0;
            border-bottom: 2px solid #2c3a4e;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(4px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5a623, #f7c948);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5a623;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #8a9bb5;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e8edf3;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #1f2a3a;
        }
        .primary-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .primary-nav a {
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #bcc9db;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .primary-nav a:hover,
        .primary-nav a.active {
            background: #f5a623;
            color: #0b0e14;
        }
        .primary-nav a i {
            margin-right: 6px;
            font-size: 0.9rem;
        }
        .breadcrumb {
            padding: 14px 0 8px;
            font-size: 0.9rem;
            color: #7a8aa3;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb a {
            color: #7a8aa3;
        }
        .breadcrumb a:hover {
            color: #f5a623;
        }
        .breadcrumb .sep {
            color: #3d4d63;
        }
        .breadcrumb .current {
            color: #f5a623;
            font-weight: 500;
        }
        main {
            padding: 30px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 0 0 12px;
            background: linear-gradient(135deg, #f5a623, #ff7b2b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid #2c3a4e;
            color: #f0f4fa;
        }
        h2 i {
            color: #f5a623;
            margin-right: 10px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #e0e7f0;
        }
        h3 i {
            color: #f5a623;
            margin-right: 8px;
            font-size: 1.2rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #d0d9e6;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d5deea;
        }
        .lead {
            font-size: 1.2rem;
            color: #e8edf3;
            font-weight: 400;
            border-left: 4px solid #f5a623;
            padding-left: 20px;
            margin: 20px 0 30px;
        }
        .featured-image {
            margin: 30px 0 40px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
            background: #1a2230;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .featured-image figcaption {
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #8a9bb5;
            background: #141a24;
            text-align: center;
        }
        .info-box {
            background: #1a2230;
            border-left: 5px solid #f5a623;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 28px 0;
        }
        .info-box strong {
            color: #f5a623;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 18px;
            margin: 30px 0;
        }
        .stat-card {
            background: #1a2230;
            padding: 20px 18px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #2c3a4e;
            transition: transform 0.2s, border-color 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            border-color: #f5a623;
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f5a623;
            display: block;
        }
        .stat-card .label {
            font-size: 0.95rem;
            color: #8a9bb5;
            margin-top: 4px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 28px 0;
            border-radius: 12px;
            border: 1px solid #2c3a4e;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #141a24;
        }
        th,
        td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #1f2a3a;
        }
        th {
            background: #1a2230;
            color: #f5a623;
            font-weight: 600;
            white-space: nowrap;
        }
        tr:hover td {
            background: #1a2230;
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 50px 0 30px;
        }
        @media(max-width:700px) {
            .interaction-area {
                grid-template-columns: 1fr;
            }
        }
        .card-form {
            background: #141a24;
            padding: 28px 30px;
            border-radius: 16px;
            border: 1px solid #2c3a4e;
        }
        .card-form h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .card-form label {
            display: block;
            font-weight: 500;
            margin: 16px 0 6px;
            color: #bcc9db;
        }
        .card-form input,
        .card-form textarea,
        .card-form select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid #2c3a4e;
            background: #0b0e14;
            color: #e8edf3;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.2s;
        }
        .card-form input:focus,
        .card-form textarea:focus {
            outline: none;
            border-color: #f5a623;
        }
        .card-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .card-form .btn {
            margin-top: 18px;
            background: #f5a623;
            color: #0b0e14;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .card-form .btn:hover {
            background: #ffc866;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #3d4d63;
            transition: color 0.2s;
            cursor: pointer;
            font-size: 1.8rem;
            margin: 0;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5a623;
        }
        .search-form {
            display: flex;
            gap: 10px;
            max-width: 500px;
            margin: 30px 0 20px;
            background: #141a24;
            padding: 6px 6px 6px 18px;
            border-radius: 40px;
            border: 1px solid #2c3a4e;
        }
        .search-form input {
            flex: 1;
            background: transparent;
            border: none;
            color: #e8edf3;
            font-size: 1rem;
            padding: 10px 0;
            outline: none;
        }
        .search-form button {
            background: #f5a623;
            border: none;
            color: #0b0e14;
            padding: 10px 26px;
            border-radius: 30px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .search-form button:hover {
            background: #ffc866;
        }
        friend-link {
            display: block;
            padding: 30px 0 10px;
            border-top: 1px solid #2c3a4e;
            margin-top: 40px;
        }
        friend-link .fl-title {
            font-weight: 700;
            color: #f5a623;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            color: #8a9bb5;
            font-size: 0.95rem;
        }
        friend-link a:hover {
            color: #f5a623;
        }
        .site-footer {
            background: #0d1119;
            padding: 30px 0;
            border-top: 2px solid #1f2a3a;
            text-align: center;
            font-size: 0.9rem;
            color: #6a7b94;
        }
        .site-footer .copyright {
            margin-top: 8px;
            color: #4a5a72;
        }
        @media(max-width:820px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 4px;
                padding: 16px 0 8px;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 10px 16px;
                width: 100%;
                border-radius: 8px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .header-inner {
                gap: 8px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media(max-width:480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.7rem;
            }
            .stat-card .num {
                font-size: 1.6rem;
            }
            .search-form {
                flex-direction: column;
                padding: 12px;
                border-radius: 16px;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
        }
        .text-muted {
            color: #7a8aa3;
        }
        .mt-2 {
            margin-top: 20px;
        }
        .mb-1 {
            margin-bottom: 10px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #6a7b94;
            margin: 20px 0 0;
            padding: 8px 0;
            border-top: 1px solid #1f2a3a;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .last-updated i {
            color: #f5a623;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0e14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2c3a4e;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3d4d63;
        }
        @media print {
            .site-header,
            .site-footer,
            .search-form,
            .interaction-area,
            .nav-toggle {
                display: none !important;
            }
            body {
                background: #fff;
                color: #111;
            }
            .container {
                max-width: 100%;
            }
            a {
                color: #1155cc;
            }
        }
