        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0b0e14;
            color: #e4e8ef;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #f0a500;
            text-decoration: none;
            transition: color 0.25s ease, opacity 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffc857;
            opacity: 0.9;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 0.75rem 0;
        }
        li {
            margin-bottom: 0.35rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 1.8rem;
            margin-bottom: 0.75rem;
            color: #f5f7fc;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #f0a500;
            padding-bottom: 0.5rem;
            margin-top: 0.2rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #f0a500;
            padding-left: 0.9rem;
            margin-top: 2.4rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #f0c674;
            margin-top: 1.6rem;
        }
        h4 {
            font-size: 1.1rem;
            color: #cbd5e1;
            font-weight: 600;
            margin-top: 1.2rem;
        }
        p {
            margin: 0.9rem 0;
            font-size: 1.025rem;
            color: #d3dcec;
        }
        strong,
        b {
            color: #ffdb9d;
            font-weight: 700;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #141a24;
            border-bottom: 2px solid #2a3343;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
            background: rgba(12, 16, 22, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0a500, #ff7b00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: inline-block;
            padding: 0.2rem 0;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            display: block;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .nav-toggle {
            display: none;
            background: transparent;
            border: 1px solid #3f4a5e;
            color: #e4e8ef;
            font-size: 1.5rem;
            padding: 0.3rem 0.9rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2a3343;
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            padding: 0.45rem 1rem;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.92rem;
            color: #c8d0df;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: #2a3343;
            color: #f0a500;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #f0a500;
            color: #0b0e14;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.8rem 0 0.2rem;
            margin: 0;
            font-size: 0.88rem;
            background: transparent;
            gap: 0.3rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 0.5rem;
            color: #6b7a93;
        }
        .breadcrumb a {
            color: #9aabc2;
        }
        .breadcrumb a:hover {
            color: #f0a500;
        }
        .breadcrumb .current {
            color: #f0a500;
            font-weight: 600;
        }
        .search-section {
            background: #1a2230;
            border-radius: 12px;
            padding: 1.2rem 1.6rem;
            margin: 1.8rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.8rem 1.2rem;
            border: 1px solid #2f3a4e;
        }
        .search-section label {
            font-weight: 600;
            color: #f0c674;
            font-size: 1.05rem;
        }
        .search-form {
            display: flex;
            flex: 1 1 280px;
            gap: 0.5rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.6rem 1rem;
            border-radius: 8px;
            border: 1px solid #3f4a5e;
            background: #0b0e14;
            color: #e4e8ef;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #f0a500;
        }
        .search-form button {
            background: #f0a500;
            border: none;
            color: #0b0e14;
            font-weight: 700;
            padding: 0.6rem 1.4rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-size: 0.95rem;
        }
        .search-form button:hover {
            background: #ffc857;
            transform: scale(1.02);
        }
        .content-area {
            background: #111922;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 1.8rem 0;
            border: 1px solid #263040;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
        }
        .featured-image {
            margin: 1.6rem 0 2rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
            background: #1a2230;
            padding: 0.5rem;
        }
        .featured-image img {
            width: 100%;
            border-radius: 8px;
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #8fa0bb;
            padding: 0.5rem 0 0.2rem;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #8fa0bb;
            border-bottom: 1px dashed #2f3a4e;
            padding-bottom: 0.6rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .last-updated i {
            color: #f0a500;
        }
        .highlight-box {
            background: #1a2538;
            border-left: 5px solid #f0a500;
            padding: 1.2rem 1.6rem;
            border-radius: 0 10px 10px 0;
            margin: 1.5rem 0;
        }
        .highlight-box p {
            margin: 0.3rem 0;
        }
        .emoji-big {
            font-size: 1.3rem;
            margin-right: 0.3rem;
        }
        .btn {
            display: inline-block;
            background: #f0a500;
            color: #0b0e14;
            font-weight: 700;
            padding: 0.5rem 1.4rem;
            border-radius: 8px;
            transition: background 0.2s, transform 0.1s;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }
        .btn:hover {
            background: #ffc857;
            transform: translateY(-1px);
            text-decoration: none;
            color: #0b0e14;
        }
        .feedback-section {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 2.8rem 0 1.8rem;
            padding-top: 1.8rem;
            border-top: 2px solid #263040;
        }
        .comment-box,
        .rating-box {
            flex: 1 1 260px;
            background: #141c2a;
            border-radius: 12px;
            padding: 1.4rem 1.6rem;
            border: 1px solid #2f3a4e;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            font-size: 1.25rem;
            border-left: 4px solid #f0a500;
            padding-left: 0.7rem;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.6rem 0.9rem;
            border-radius: 6px;
            border: 1px solid #3f4a5e;
            background: #0b0e14;
            color: #e4e8ef;
            font-size: 0.92rem;
            margin-bottom: 0.6rem;
            outline: none;
            transition: border 0.2s;
            font-family: inherit;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #f0a500;
        }
        .comment-form textarea {
            min-height: 80px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            background: #f0a500;
            border: none;
            color: #0b0e14;
            font-weight: 700;
            padding: 0.5rem 1.4rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 0.92rem;
            width: 100%;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #ffc857;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin: 0.6rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #3f4a5e;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f0a500;
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem 0;
            border-top: 1px solid #263040;
            margin-top: 2rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.8rem 0.3rem 0;
            padding: 0.2rem 0.6rem;
            background: #1a2230;
            border-radius: 20px;
            font-size: 0.88rem;
            border: 1px solid #2f3a4e;
            transition: background 0.2s, border-color 0.2s;
        }
        friend-link a:hover {
            background: #2a3343;
            border-color: #f0a500;
            text-decoration: none;
        }
        .site-footer {
            background: #0c1018;
            border-top: 2px solid #1f2a3a;
            padding: 2rem 0 1.2rem;
            margin-top: 2.5rem;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 0.8rem;
            font-size: 0.9rem;
            color: #8fa0bb;
        }
        .footer-inner .copy {
            flex: 1 1 200px;
        }
        .footer-inner a {
            color: #bcc9e0;
        }
        .footer-inner a:hover {
            color: #f0a500;
        }
        @media (max-width: 820px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: inline-block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 0.2rem;
                padding-top: 0.6rem;
                border-top: 1px solid #263040;
                margin-top: 0.4rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-radius: 4px;
            }
            .content-area {
                padding: 1.2rem 1rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .feedback-section {
                flex-direction: column;
                gap: 1.2rem;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
            }
            .search-form {
                flex: 1 1 auto;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .content-area {
                padding: 0.9rem 0.8rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.78rem;
            }
            .star-rating label {
                font-size: 1.5rem;
            }
        }
        .text-muted {
            color: #8fa0bb;
        }
        .mt-1 {
            margin-top: 0.8rem;
        }
        .mb-1 {
            margin-bottom: 0.8rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .gap-1 {
            gap: 0.8rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #141c2a;
            border-radius: 8px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.6rem 1rem;
            text-align: left;
            border-bottom: 1px solid #263040;
        }
        th {
            background: #1f2a3a;
            color: #f0c674;
            font-weight: 600;
        }
        tr:hover td {
            background: #1a2538;
        }
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0e14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2f3a4e;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #4a5a74;
        }
