        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f4f7fc;
            color: #1a2634;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #c0392b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #96281b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #0b1a2a;
            margin-top: 1.8rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
            border-left: 6px solid #c0392b;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.9rem;
            border-bottom: 2px solid #e0e7ef;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #1e3a5f;
        }
        h4 {
            font-size: 1.2rem;
            color: #2c4a6e;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.02rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .badge {
            display: inline-block;
            background: #c0392b;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            letter-spacing: 0.3px;
        }
        .text-muted {
            color: #5a6a7a;
        }
        .text-small {
            font-size: 0.9rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .page-header {
            background: linear-gradient(145deg, #0b1a2a 0%, #1a2f44 100%);
            color: #f0f4fa;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f7d94e, #f0a830);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(247, 217, 78, 0.25);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            background: #c0392b;
            padding: 8px;
            border-radius: 50%;
            font-size: 1.1rem;
            -webkit-text-fill-color: #fff;
            color: #fff;
            background-clip: unset;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.92;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .nav-bar a {
            color: #e8edf5;
            font-weight: 500;
            padding: 0.4rem 1rem;
            border-radius: 40px;
            font-size: 0.9rem;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .nav-bar a:hover,
        .nav-bar a:focus {
            background: rgba(255, 255, 255, 0.12);
            color: #f7d94e;
            text-decoration: none;
        }
        .nav-bar a.active {
            background: #c0392b;
            color: #fff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0f4fa;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .breadcrumb-wrap {
            background: #eaeef3;
            padding: 0.6rem 0;
            border-bottom: 1px solid #d6dee8;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.85rem;
            color: #3e556b;
        }
        .breadcrumb a {
            color: #3e556b;
        }
        .breadcrumb a:hover {
            color: #c0392b;
        }
        .breadcrumb .sep {
            color: #8a9aaa;
            margin: 0 0.2rem;
        }
        .hero-section {
            background: linear-gradient(135deg, #f0f4fc 0%, #e2e9f3 100%);
            border-radius: 20px;
            padding: 2.5rem 2.8rem;
            margin: 2rem 0 1.5rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
            border: 1px solid #d6e0ec;
        }
        .hero-content h1 {
            border-left-color: #c0392b;
            margin-top: 0;
        }
        .hero-content p {
            font-size: 1.1rem;
            color: #2c4058;
        }
        .hero-image {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.15);
            background: #fff;
            padding: 0.5rem;
        }
        .hero-image img {
            border-radius: 12px;
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .search-module {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
            margin: 2rem 0;
            border: 1px solid #e4ebf4;
        }
        .search-module form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .search-module input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #dce4ef;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
            background: #f9fbfd;
        }
        .search-module input[type="text"]:focus {
            border-color: #c0392b;
        }
        .search-module button {
            background: #c0392b;
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-module button:hover {
            background: #96281b;
            transform: scale(1.02);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        .main-article {
            background: #fff;
            border-radius: 20px;
            padding: 2.2rem 2.5rem;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #e8eef6;
        }
        .main-article p,
        .main-article li {
            font-size: 1.03rem;
            color: #1f2e3e;
        }
        .main-article ul,
        .main-article ol {
            margin-left: 1.6rem;
            margin-bottom: 1.4rem;
        }
        .main-article li {
            margin-bottom: 0.5rem;
        }
        .main-article .highlight-box {
            background: #f8f1e8;
            border-left: 5px solid #c0392b;
            padding: 1.2rem 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
        }
        .main-article .highlight-box strong {
            color: #96281b;
        }
        .stat-badge {
            display: inline-block;
            background: #1e3a5f;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            margin-right: 0.4rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.6rem 1.8rem;
            border: 1px solid #e4ebf4;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 2px solid #f0f4fa;
            padding-bottom: 0.5rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card ul li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #f0f4fa;
            font-size: 0.95rem;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar-card ul li a i {
            color: #c0392b;
            font-size: 0.8rem;
            width: 18px;
            text-align: center;
        }
        .rating-module {
            background: #fff8f0;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border: 1px solid #f0e4d8;
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            font-size: 2rem;
            color: #e0c8a8;
            cursor: pointer;
            transition: color 0.2s;
            flex-wrap: wrap;
        }
        .rating-stars i {
            transition: color 0.15s, transform 0.1s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f7b731;
            transform: scale(1.08);
        }
        .rating-stars i.selected {
            color: #f7b731;
        }
        .rating-form button {
            background: #c0392b;
            color: #fff;
            border: none;
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            margin-top: 0.8rem;
        }
        .rating-form button:hover {
            background: #96281b;
        }
        .comment-module {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border: 1px solid #e4ebf4;
        }
        .comment-module textarea {
            width: 100%;
            min-height: 110px;
            padding: 1rem 1.2rem;
            border: 2px solid #dce4ef;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            outline: none;
            transition: border 0.25s;
            resize: vertical;
            background: #f9fbfd;
        }
        .comment-module textarea:focus {
            border-color: #c0392b;
        }
        .comment-module input[type="text"] {
            width: 100%;
            padding: 0.7rem 1.2rem;
            border: 2px solid #dce4ef;
            border-radius: 50px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.25s;
            background: #f9fbfd;
        }
        .comment-module input[type="text"]:focus {
            border-color: #c0392b;
        }
        .comment-module .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin: 1rem 0;
        }
        .comment-module button {
            background: #1e3a5f;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
        }
        .comment-module button:hover {
            background: #0f2840;
        }
        .page-footer {
            background: #0b1a2a;
            color: #c8d6e5;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 4px solid #c0392b;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 2rem;
        }
        .footer-grid h4 {
            color: #f7d94e;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-grid a {
            color: #b0c4db;
        }
        .footer-grid a:hover {
            color: #f7d94e;
        }
        friend-link {
            display: block;
            padding: 0.8rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.8rem 0.2rem 0;
            padding: 0.2rem 0.8rem;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 30px;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            background: rgba(255, 255, 255, 0.12);
            text-decoration: none;
        }
        .copyright {
            border-top: 1px solid #1f3a52;
            padding-top: 1.5rem;
            font-size: 0.85rem;
            text-align: center;
            color: #7a93ae;
        }
        .copyright strong {
            color: #c8d6e5;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .hero-section {
                grid-template-columns: 1fr;
                padding: 1.8rem;
            }
            .hero-image {
                order: -1;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-bar {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding-top: 1rem;
                gap: 0.3rem;
            }
            .nav-bar.open {
                display: flex;
            }
            .nav-bar a {
                width: 100%;
                padding: 0.6rem 1rem;
            }
            .main-article {
                padding: 1.5rem 1.2rem;
            }
            .hero-section {
                padding: 1.2rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .comment-module .form-row {
                grid-template-columns: 1fr;
            }
            .search-module form {
                flex-direction: column;
            }
            .search-module input[type="text"] {
                width: 100%;
            }
            .search-module button {
                width: 100%;
                justify-content: center;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .main-article {
                padding: 1rem 0.8rem;
            }
            .sidebar-card {
                padding: 1rem;
            }
            h1 {
                font-size: 1.5rem;
                padding-left: 0.6rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
        }
        .last-updated {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            color: #5a6a7a;
            background: #f0f4fa;
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
            width: fit-content;
            margin: 1rem 0;
        }
        .inline-link-icon {
            color: #c0392b;
            font-weight: 500;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #f9fbfd;
            border-radius: 12px;
            overflow: hidden;
        }
        table th {
            background: #1e3a5f;
            color: #fff;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        table td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #e4ebf4;
        }
        table tr:last-child td {
            border-bottom: none;
        }
        table tr:hover td {
            background: #f4f7fc;
        }
        .emoji-big {
            font-size: 1.8rem;
            line-height: 1;
        }
        .tag {
            display: inline-block;
            background: #eef3f9;
            padding: 0.15rem 0.9rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #1e3a5f;
            margin: 0.2rem 0.2rem 0.2rem 0;
        }
