        *,
        *::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: #f4f7fb;
            color: #1a1a2e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #004a99;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #c7a23b;
            text-decoration: underline;
        }
        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: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #0b1a2e 0%, #13294b 100%);
            padding: 12px 0;
            border-bottom: 4px solid #c7a23b;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .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, #f5d97e, #c7a23b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 12px rgba(199, 162, 59, 0.3);
            display: inline-block;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.75rem;
            -webkit-text-fill-color: #aac4e0;
            color: #aac4e0;
            display: block;
            font-weight: 400;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #c7a23b;
            color: #f5d97e;
            font-size: 1.8rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .nav-toggle:hover {
            background: rgba(199, 162, 59, 0.15);
        }
        .nav-menu {
            display: flex;
            gap: 6px 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #e8edf5;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background 0.3s, color 0.3s;
            white-space: nowrap;
        }
        .nav-menu a:hover {
            background: rgba(199, 162, 59, 0.2);
            color: #f5d97e;
            text-decoration: none;
        }
        .nav-menu .active {
            color: #f5d97e;
            border-bottom: 2px solid #c7a23b;
        }
        .breadcrumb {
            background: #e8edf5;
            padding: 10px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d0dae8;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0;
            margin: 0;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            color: #7a8ba8;
            margin-right: 10px;
            font-size: 1.2rem;
        }
        .breadcrumb a {
            color: #004a99;
        }
        .breadcrumb .current {
            color: #1a1a2e;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #0b1a2e 0%, #1a2f4e 70%, #13294b 100%);
            padding: 50px 0 40px;
            color: #f0f4fa;
            border-radius: 0 0 40px 40px;
            margin-bottom: 30px;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            background: linear-gradient(135deg, #f5d97e, #e8c54a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 780px;
            color: #cbd8ed;
        }
        .hero .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 18px 30px;
            margin-top: 20px;
            font-size: 0.95rem;
            color: #aac4e0;
        }
        .hero .meta-info i {
            color: #c7a23b;
            margin-right: 6px;
        }
        .search-section {
            background: #ffffff;
            border-radius: 16px;
            padding: 24px 28px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            margin-bottom: 30px;
            border: 1px solid #e0e8f0;
        }
        .search-section form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #dde3ed;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-section input[type="text"]:focus {
            border-color: #c7a23b;
        }
        .search-section button {
            background: linear-gradient(135deg, #0b1a2e, #13294b);
            color: #f5d97e;
            border: none;
            padding: 14px 34px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-section button:hover {
            background: linear-gradient(135deg, #13294b, #1a3a5e);
            transform: translateY(-2px);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 32px;
            margin: 30px 0;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .main-content article {
            background: #ffffff;
            border-radius: 20px;
            padding: 30px 32px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #e8edf5;
        }
        .main-content h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #0b1a2e;
            margin: 36px 0 14px 0;
            padding-bottom: 8px;
            border-bottom: 3px solid #c7a23b;
            display: inline-block;
        }
        .main-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #13294b;
            margin: 28px 0 12px 0;
        }
        .main-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1a3a5e;
            margin: 22px 0 10px 0;
        }
        .main-content p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #2c3a4e;
        }
        .main-content .highlight-box {
            background: #f0f5fe;
            border-left: 6px solid #c7a23b;
            padding: 18px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .main-content .highlight-box p {
            margin-bottom: 0.4rem;
        }
        .main-content .stat-badge {
            display: inline-block;
            background: #0b1a2e;
            color: #f5d97e;
            padding: 4px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .featured-image figcaption {
            background: #f0f4fa;
            padding: 12px 18px;
            font-size: 0.9rem;
            color: #3a4a62;
            font-style: italic;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
            border-radius: 12px;
            border: 1px solid #e0e8f0;
        }
        .table-wrap table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        .table-wrap th {
            background: #0b1a2e;
            color: #f5d97e;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .table-wrap td {
            padding: 10px 16px;
            border-bottom: 1px solid #e8edf5;
        }
        .table-wrap tr:nth-child(even) {
            background: #f8fafc;
        }
        .table-wrap tr:hover {
            background: #edf2fa;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .sidebar-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 22px 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #e8edf5;
        }
        .sidebar-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #0b1a2e;
            margin-bottom: 14px;
            border-left: 4px solid #c7a23b;
            padding-left: 12px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 6px 0;
            border-bottom: 1px solid #edf2f7;
        }
        .sidebar-card ul li a {
            font-weight: 500;
            display: block;
            padding: 4px 0;
        }
        .sidebar-card ul li a:hover {
            color: #c7a23b;
        }
        .rating-box {
            background: #f8fafc;
            border-radius: 12px;
            padding: 20px;
            margin-top: 10px;
        }
        .rating-box .stars {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #dde3ed;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-box .stars i {
            transition: color 0.2s, transform 0.2s;
        }
        .rating-box .stars i:hover,
        .rating-box .stars i.active {
            color: #c7a23b;
            transform: scale(1.1);
        }
        .rating-box .stars i.selected {
            color: #c7a23b;
        }
        .rating-box .rating-value {
            font-weight: 700;
            color: #0b1a2e;
            font-size: 1.1rem;
            margin-top: 8px;
        }
        .rating-form button {
            background: #0b1a2e;
            color: #f5d97e;
            border: none;
            padding: 10px 28px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 12px;
        }
        .rating-form button:hover {
            background: #13294b;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #dde3ed;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 110px;
            outline: none;
            transition: border 0.3s;
        }
        .comment-form textarea:focus {
            border-color: #c7a23b;
        }
        .comment-form .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 12px 0;
        }
        .comment-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 12px 16px;
            border: 2px solid #dde3ed;
            border-radius: 50px;
            font-size: 0.95rem;
            outline: none;
        }
        .comment-form input[type="text"]:focus {
            border-color: #c7a23b;
        }
        .comment-form button {
            background: linear-gradient(135deg, #0b1a2e, #13294b);
            color: #f5d97e;
            border: none;
            padding: 12px 32px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .comment-form button:hover {
            transform: translateY(-2px);
        }
        .link-list-section {
            background: #ffffff;
            border-radius: 20px;
            padding: 28px 32px;
            margin: 30px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #e8edf5;
        }
        .link-list-section h2 {
            font-size: 1.8rem;
            margin-bottom: 18px;
            color: #0b1a2e;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 12px 20px;
        }
        .link-grid a {
            padding: 8px 12px;
            border-radius: 8px;
            background: #f4f7fb;
            transition: background 0.3s, color 0.3s;
            font-weight: 500;
        }
        .link-grid a:hover {
            background: #0b1a2e;
            color: #f5d97e;
            text-decoration: none;
        }
        .site-footer {
            background: #0b1a2e;
            color: #cbd8ed;
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 4px solid #c7a23b;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-inner h4 {
            color: #f5d97e;
            font-size: 1.2rem;
            margin-bottom: 14px;
        }
        .footer-inner a {
            color: #aac4e0;
        }
        .footer-inner a:hover {
            color: #f5d97e;
        }
        .footer-bottom {
            border-top: 1px solid #1a2f4e;
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: #7a8ba8;
        }
        .footer-bottom .copyright {
            font-weight: 400;
        }
        friend-link {
            display: block;
            background: #1a2f4e;
            padding: 18px 24px;
            border-radius: 12px;
            margin: 16px 0;
            font-size: 0.95rem;
        }
        friend-link a {
            color: #f5d97e;
            font-weight: 500;
            margin: 0 12px 0 0;
            display: inline-block;
        }
        friend-link a:hover {
            color: #ffffff;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 12px;
                background: #0f1f36;
                padding: 16px 12px;
                border-radius: 12px;
                gap: 6px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 14px;
                border-bottom: 1px solid #1a2f4e;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .main-content article {
                padding: 20px 18px;
            }
            .main-content h2 {
                font-size: 1.6rem;
            }
            .main-content h3 {
                font-size: 1.3rem;
            }
            .content-grid {
                gap: 20px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .link-grid {
                grid-template-columns: 1fr;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section input[type="text"] {
                width: 100%;
            }
            .search-section button {
                width: 100%;
                justify-content: center;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
            }
            .rating-box .stars {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .container {
                padding: 0 12px;
            }
            .main-content article {
                padding: 16px 14px;
            }
            .sidebar-card {
                padding: 16px 18px;
            }
        }
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #e8edf5;
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            color: #3a4a62;
        }
        .last-updated i {
            color: #c7a23b;
        }
        .btn-gold {
            background: linear-gradient(135deg, #c7a23b, #e8c54a);
            color: #0b1a2e;
            font-weight: 700;
            padding: 12px 32px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.3s;
        }
        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(199, 162, 59, 0.3);
        }
        .text-gold {
            color: #c7a23b;
        }
        .bg-dark-blue {
            background: #0b1a2e;
        }
        .pill {
            display: inline-block;
            background: #e8edf5;
            padding: 2px 14px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #0b1a2e;
        }
