        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #0b0b0b;
            color: #e0e0e0;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #f5c518;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5f5f5;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #f5c518;
            padding-left: 1rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.9rem;
            border-bottom: 2px solid #2a2a2a;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #f0c040;
        }
        h4 {
            font-size: 1.25rem;
            color: #d4d4d4;
        }
        p {
            margin-bottom: 1.2rem;
            word-break: break-word;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #141414;
            border-bottom: 2px solid #2a2a2a;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(4px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: #f5c518;
            text-transform: uppercase;
            background: linear-gradient(145deg, #f5c518, #b8860b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
            -webkit-text-fill-color: #f5c518;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f5c518;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5c518;
            color: #f5c518;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f5c51822;
        }
        .nav-menu {
            display: flex;
            gap: 1.2rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #ccc;
            font-weight: 500;
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu a:hover {
            color: #f5c518;
            border-bottom-color: #f5c518;
        }
        .nav-menu .active-nav {
            color: #f5c518;
            border-bottom-color: #f5c518;
        }
        .breadcrumb {
            background: #1a1a1a;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #2a2a2a;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #888;
            margin-right: 0.6rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #f5c518;
        }
        .breadcrumb .current {
            color: #f5c518;
            font-weight: 600;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: #131313;
            padding: 1.8rem 2rem;
            border-radius: 12px;
            border: 1px solid #2a2a2a;
        }
        .article-content .featured-img {
            margin: 1.5rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
        }
        .article-content .featured-img img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
        }
        .last-updated {
            display: inline-block;
            background: #1e1e1e;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #aaa;
            border: 1px solid #333;
            margin-bottom: 1rem;
        }
        .last-updated i {
            color: #f5c518;
            margin-right: 6px;
        }
        .highlight-box {
            background: #1c1c1c;
            border-left: 5px solid #f5c518;
            padding: 1.2rem 1.5rem;
            border-radius: 0 10px 10px 0;
            margin: 1.8rem 0;
        }
        .highlight-box strong {
            color: #f5c518;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 4px;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
            padding: 0.6rem 0;
            list-style: none;
        }
        .link-list-inline li a {
            background: #1e1e1e;
            padding: 0.2rem 1rem;
            border-radius: 20px;
            border: 1px solid #333;
            font-size: 0.9rem;
            transition: 0.2s;
        }
        .link-list-inline li a:hover {
            background: #f5c51822;
            border-color: #f5c518;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a1a1a;
            border-radius: 8px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #2a2a2a;
        }
        th {
            background: #222;
            color: #f5c518;
            font-weight: 600;
        }
        tr:hover td {
            background: #22222244;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        .sidebar-card {
            background: #131313;
            border: 1px solid #2a2a2a;
            border-radius: 12px;
            padding: 1.5rem 1.2rem;
        }
        .sidebar-card h3 {
            font-size: 1.3rem;
            margin-top: 0;
            margin-bottom: 1rem;
            border-bottom: 1px solid #2a2a2a;
            padding-bottom: 0.5rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            margin-bottom: 0.6rem;
        }
        .sidebar-card ul li a {
            display: block;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .sidebar-card ul li a:hover {
            background: #1e1e1e;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin-top: 0.3rem;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 1px solid #333;
            border-radius: 30px;
            background: #1a1a1a;
            color: #eee;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5c518;
        }
        .search-form button {
            background: #f5c518;
            border: none;
            border-radius: 30px;
            padding: 0.7rem 1.4rem;
            color: #0b0b0b;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .search-form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .comment-section,
        .rating-section {
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 2px solid #2a2a2a;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #ccc;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #333;
            border-radius: 8px;
            background: #1a1a1a;
            color: #eee;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #f5c518;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn-primary {
            background: #f5c518;
            border: none;
            border-radius: 30px;
            padding: 0.7rem 2rem;
            color: #0b0b0b;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            font-size: 1rem;
        }
        .btn-primary:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i:hover~i {
            color: #f5c518;
            transform: scale(1.1);
        }
        .rating-value {
            margin-left: 0.8rem;
            font-size: 1.2rem;
            font-weight: 700;
            color: #f5c518;
        }
        friend-link {
            display: block;
            background: #141414;
            border-top: 2px solid #2a2a2a;
            padding: 1.8rem 0;
            margin-top: 2rem;
        }
        friend-link .fl-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        friend-link h3 {
            color: #f5c518;
            font-size: 1.3rem;
            margin-top: 0;
            margin-bottom: 1rem;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
        }
        friend-link ul li a {
            color: #bbb;
            font-size: 0.95rem;
            transition: color 0.2s;
        }
        friend-link ul li a:hover {
            color: #f5c518;
        }
        .site-footer {
            background: #0d0d0d;
            border-top: 2px solid #1e1e1e;
            padding: 1.8rem 0;
            text-align: center;
            font-size: 0.9rem;
            color: #888;
        }
        .site-footer .copyright {
            margin-top: 0.5rem;
            letter-spacing: 0.3px;
        }
        .site-footer .copyright i {
            color: #f5c518;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #141414;
                padding: 1rem 0;
                border-top: 1px solid #2a2a2a;
                margin-top: 0.8rem;
                gap: 0.3rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.6rem 1rem;
                border-bottom: none;
                width: 100%;
            }
            .nav-menu a:hover {
                background: #1e1e1e;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .article-content {
                padding: 1.2rem 1rem;
            }
            .sidebar {
                order: 2;
            }
        }
        @media (max-width: 480px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .search-form {
                flex-wrap: wrap;
            }
            .search-form button {
                width: 100%;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            background: #0b0b0b;
        }
        ::-webkit-scrollbar-thumb {
            background: #333;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
        @media print {
            .site-header,
            .breadcrumb,
            .sidebar,
            .search-form,
            .comment-section,
            .rating-section,
            friend-link,
            .site-footer {
                display: none !important;
            }
            .main-grid {
                display: block;
            }
            .article-content {
                border: none;
                background: #fff;
                color: #000;
            }
            h1,
            h2,
            h3,
            h4 {
                color: #000;
            }
            a {
                color: #000;
                text-decoration: underline;
            }
        }
