        *,
        *::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, sans-serif;
            background: #0e0f14;
            color: #e4e6eb;
            line-height: 1.75;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffdd77;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.6rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #1a1c23;
            border-bottom: 3px solid #f0c040;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0c040, #d4a017);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(240, 192, 64, 0.25);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f0c040;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e4e6eb;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2a2d38;
        }
        .primary-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .primary-nav a {
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #c8cbd0;
            transition: background 0.2s, color 0.2s;
        }
        .primary-nav a:hover,
        .primary-nav a:focus {
            background: #2a2d38;
            color: #f0c040;
            text-decoration: none;
        }
        .primary-nav .active {
            color: #f0c040;
            background: #2a2d38;
        }
        .breadcrumb {
            background: #181a22;
            padding: 0.6rem 0;
            border-bottom: 1px solid #2a2d38;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.4rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.4rem;
            color: #6b6f7a;
        }
        .breadcrumb a {
            color: #a0a4b0;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .breadcrumb .current {
            color: #e4e6eb;
            font-weight: 500;
        }
        main {
            flex: 1;
            padding: 2rem 0 3rem;
        }
        article {
            background: #15171f;
            border-radius: 16px;
            padding: 2rem 2.2rem;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
            border: 1px solid #252832;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1.25;
            color: #f0c040;
            margin-bottom: 1.2rem;
            border-bottom: 2px solid #252832;
            padding-bottom: 0.8rem;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #f0d060;
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            border-left: 4px solid #f0c040;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #e8d48b;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #d4c080;
            margin-top: 1.4rem;
            margin-bottom: 0.6rem;
        }
        p {
            margin-bottom: 1.1rem;
            color: #d0d3dc;
        }
        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            font-size: 0.9rem;
            color: #8a8e9a;
            margin-bottom: 1.8rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #252832;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .article-meta i {
            color: #f0c040;
        }
        .featured-image {
            margin: 1.8rem 0 2.2rem;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #1a1c23;
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #9a9eaa;
            text-align: center;
        }
        .highlight-box {
            background: #1e212b;
            border-left: 4px solid #f0c040;
            padding: 1.2rem 1.6rem;
            border-radius: 0 12px 12px 0;
            margin: 1.6rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .btn {
            display: inline-block;
            background: #f0c040;
            color: #0e0f14;
            padding: 0.6rem 1.6rem;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            font-size: 0.95rem;
        }
        .btn:hover {
            background: #ffd866;
            transform: translateY(-2px);
            text-decoration: none;
            color: #0e0f14;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f0c040;
            color: #f0c040;
        }
        .btn-outline:hover {
            background: #f0c040;
            color: #0e0f14;
        }
        .search-section {
            background: #1a1c23;
            border-radius: 12px;
            padding: 1.6rem 2rem;
            margin: 2.4rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
        }
        .search-section label {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form {
            display: flex;
            flex: 1;
            min-width: 200px;
            gap: 0.6rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border-radius: 8px;
            border: 1px solid #353945;
            background: #0e0f14;
            color: #e4e6eb;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #f0c040;
        }
        .search-form button {
            background: #f0c040;
            color: #0e0f14;
            border: none;
            padding: 0.7rem 1.4rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 1rem;
        }
        .search-form button:hover {
            background: #ffd866;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.6rem;
            margin: 2.4rem 0 1.6rem;
        }
        .comment-box,
        .rating-box {
            background: #1a1c23;
            border-radius: 12px;
            padding: 1.6rem 1.8rem;
            border: 1px solid #252832;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        .comment-box form,
        .rating-box form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .comment-box textarea {
            min-height: 100px;
            padding: 0.8rem 1rem;
            border-radius: 8px;
            border: 1px solid #353945;
            background: #0e0f14;
            color: #e4e6eb;
            font-size: 0.95rem;
            resize: vertical;
            font-family: inherit;
            outline: none;
            transition: border 0.2s;
        }
        .comment-box textarea:focus {
            border-color: #f0c040;
        }
        .comment-box input,
        .rating-box input {
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 1px solid #353945;
            background: #0e0f14;
            color: #e4e6eb;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
        }
        .comment-box input:focus,
        .rating-box input:focus {
            border-color: #f0c040;
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            font-size: 1.6rem;
            color: #4a4e59;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #f0c040;
        }
        .rating-stars label i {
            font-size: 1.6rem;
        }
        .submit-btn {
            background: #f0c040;
            color: #0e0f14;
            border: none;
            padding: 0.7rem 1.4rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 0.95rem;
            align-self: flex-start;
        }
        .submit-btn:hover {
            background: #ffd866;
        }
        friend-link {
            display: block;
            background: #1a1c23;
            border-radius: 12px;
            padding: 1.4rem 1.8rem;
            margin: 2.4rem 0 1.2rem;
            border: 1px solid #252832;
        }
        friend-link h3 {
            margin-top: 0;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
            color: #f0c040;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.6rem;
        }
        friend-link li {
            margin-bottom: 0.2rem;
        }
        friend-link a {
            color: #a0a4b0;
            font-size: 0.95rem;
        }
        friend-link a:hover {
            color: #f0c040;
        }
        .site-footer {
            background: #11131a;
            border-top: 2px solid #1f222b;
            padding: 2rem 0 1.4rem;
            margin-top: 2rem;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .footer-copy {
            font-size: 0.9rem;
            color: #7a7e8a;
        }
        .footer-copy strong {
            color: #f0c040;
        }
        .footer-links {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: #8a8e9a;
            font-size: 0.9rem;
        }
        .footer-links a:hover {
            color: #f0c040;
        }
        @media (max-width: 900px) {
            article {
                padding: 1.4rem 1.2rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
        }
        @media (max-width: 700px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1c23;
                padding: 0.8rem 0;
                border-radius: 0 0 12px 12px;
                border-top: 1px solid #2a2d38;
                margin-top: 0.6rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.7rem 1.2rem;
                width: 100%;
                text-align: left;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
                gap: 0.2rem;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
            friend-link ul {
                flex-direction: column;
                gap: 0.4rem;
            }
            .footer-inner {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            body {
                font-size: 0.95rem;
            }
            article {
                padding: 1rem 0.8rem;
                border-radius: 10px;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
                padding-left: 0.6rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            .container {
                padding: 0 0.6rem;
            }
            .comment-box,
            .rating-box {
                padding: 1rem;
            }
            .highlight-box {
                padding: 0.8rem 1rem;
            }
            .search-section {
                padding: 1rem;
            }
            .btn {
                padding: 0.5rem 1.2rem;
                font-size: 0.9rem;
            }
        }
        .text-accent {
            color: #f0c040;
        }
        .text-muted {
            color: #8a8e9a;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex {
            display: flex;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .gap-1 {
            gap: 1rem;
        }
        .align-center {
            align-items: center;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a1c23;
            border-radius: 10px;
            overflow: hidden;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #252832;
        }
        th {
            background: #252832;
            color: #f0c040;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #1e212b;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0e0f14;
        }
        ::-webkit-scrollbar-thumb {
            background: #3a3e4a;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f0c040;
        }
