*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --bg-primary: #0b0b0e;
            --bg-secondary: #141418;
            --bg-card: #1c1c24;
            --text-primary: #f0f0f0;
            --text-secondary: #b0b0b8;
            --text-muted: #7a7a85;
            --accent-gold: #d4a837;
            --accent-gold-light: #f0d080;
            --accent-dark-gold: #a07d20;
            --border-color: #2a2a35;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            --radius: 12px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --font-heading: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --max-width: 1120px;
            --header-height: 72px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-body);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--accent-gold-light);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: var(--bg-secondary);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            height: var(--header-height);
            display: flex;
            align-items: center;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: opacity var(--transition);
            font-family: var(--font-heading);
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.65rem;
            -webkit-text-fill-color: var(--text-muted);
            background: none;
            display: block;
            letter-spacing: 3px;
            font-weight: 300;
        }
        .nav-desktop {
            display: flex;
            gap: 28px;
            align-items: center;
        }
        .nav-desktop a {
            color: var(--text-secondary);
            font-size: 0.95rem;
            font-weight: 500;
            position: relative;
            padding: 4px 0;
            transition: color var(--transition);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width var(--transition);
        }
        .nav-desktop a:hover {
            color: var(--text-primary);
            text-decoration: none;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 6px;
            z-index: 1100;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 2.5px;
            background: var(--text-primary);
            border-radius: 4px;
            transition: all 0.3s ease;
            transform-origin: center;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(11, 11, 14, 0.98);
            backdrop-filter: blur(12px);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
            z-index: 1050;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }
        .mobile-nav.open {
            opacity: 1;
            pointer-events: all;
        }
        .mobile-nav a {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--text-secondary);
            transition: color var(--transition);
        }
        .mobile-nav a:hover {
            color: var(--accent-gold);
            text-decoration: none;
        }
        .breadcrumb {
            background: var(--bg-secondary);
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .breadcrumb span {
            color: var(--text-secondary);
        }
        main {
            padding: 40px 0 60px;
        }
        .article-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .article-header h1 {
            font-size: 3.2rem;
            font-weight: 900;
            line-height: 1.2;
            background: linear-gradient(135deg, #fff 30%, var(--accent-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        .article-header .meta {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            font-size: 0.95rem;
            color: var(--text-muted);
        }
        .article-header .meta i {
            margin-right: 6px;
            color: var(--accent-gold);
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--bg-card);
            padding: 4px 16px;
            border-radius: 30px;
            border: 1px solid var(--border-color);
            font-size: 0.85rem;
            color: var(--text-secondary);
        }
        .feature-image {
            margin: 32px auto 48px;
            max-width: 860px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            position: relative;
        }
        .feature-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
            background: var(--bg-card);
        }
        .feature-image .caption {
            padding: 12px 20px;
            background: var(--bg-card);
            font-size: 0.85rem;
            color: var(--text-muted);
            border-top: 1px solid var(--border-color);
            text-align: center;
            font-style: italic;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 48px;
            margin-top: 32px;
        }
        @media(max-width:1024px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }
        .article-body h2 {
            font-size: 2rem;
            font-weight: 800;
            margin-top: 48px;
            margin-bottom: 20px;
            color: var(--accent-gold);
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 12px;
            line-height: 1.3;
        }
        .article-body h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-top: 32px;
            margin-bottom: 16px;
            color: var(--text-primary);
            line-height: 1.4;
        }
        .article-body h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-top: 24px;
            margin-bottom: 12px;
            color: var(--text-secondary);
            line-height: 1.4;
        }
        .article-body p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            color: var(--text-secondary);
        }
        .article-body strong {
            color: var(--text-primary);
            font-weight: 600;
        }
        .article-body ul,
        .article-body ol {
            margin: 16px 0 24px 24px;
            color: var(--text-secondary);
        }
        .article-body li {
            margin-bottom: 10px;
            font-size: 1.02rem;
        }
        .article-body .highlight-box {
            background: var(--bg-card);
            border-left: 4px solid var(--accent-gold);
            padding: 20px 24px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 24px 0;
        }
        .article-body .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .article-body .emoji-big {
            font-size: 1.4rem;
            display: inline-block;
            margin-right: 4px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .sidebar-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 24px;
            border: 1px solid var(--border-color);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--accent-gold);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.95rem;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            color: var(--text-secondary);
            transition: color var(--transition);
        }
        .sidebar-card ul li a:hover {
            color: var(--accent-gold);
            text-decoration: none;
        }
        .search-box {
            display: flex;
            gap: 8px;
            margin-top: 8px;
        }
        .search-box input {
            flex: 1;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: var(--bg-primary);
            color: var(--text-primary);
            font-size: 0.95rem;
            outline: none;
            transition: border var(--transition);
        }
        .search-box input:focus {
            border-color: var(--accent-gold);
        }
        .search-box button {
            padding: 12px 20px;
            border-radius: 8px;
            border: none;
            background: var(--accent-gold);
            color: #0b0b0e;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition);
            font-size: 0.95rem;
        }
        .search-box button:hover {
            background: var(--accent-gold-light);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            cursor: pointer;
            margin: 8px 0 12px;
            direction: rtl;
            justify-content: flex-end;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            color: var(--border-color);
            transition: color 0.2s;
            cursor: pointer;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: var(--accent-gold);
        }
        .rating-submit {
            padding: 8px 20px;
            border-radius: 8px;
            border: 1px solid var(--accent-gold);
            background: transparent;
            color: var(--accent-gold);
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition);
            font-size: 0.9rem;
        }
        .rating-submit:hover {
            background: var(--accent-gold);
            color: #0b0b0e;
        }
        .comment-form textarea {
            width: 100%;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: var(--bg-primary);
            color: var(--text-primary);
            font-size: 0.95rem;
            resize: vertical;
            min-height: 90px;
            font-family: var(--font-body);
            outline: none;
            transition: border var(--transition);
        }
        .comment-form textarea:focus {
            border-color: var(--accent-gold);
        }
        .comment-form .comment-row {
            display: flex;
            gap: 12px;
            margin-top: 12px;
            flex-wrap: wrap;
        }
        .comment-form .comment-row input {
            flex: 1;
            min-width: 160px;
            padding: 10px 14px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: var(--bg-primary);
            color: var(--text-primary);
            font-size: 0.9rem;
            outline: none;
            transition: border var(--transition);
        }
        .comment-form .comment-row input:focus {
            border-color: var(--accent-gold);
        }
        .comment-form .comment-row button {
            padding: 10px 24px;
            border-radius: 8px;
            border: none;
            background: var(--accent-gold);
            color: #0b0b0e;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition);
            font-size: 0.95rem;
        }
        .comment-form .comment-row button:hover {
            background: var(--accent-gold-light);
        }
        footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            padding: 40px 0 24px;
            margin-top: 48px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        @media(max-width:768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
        }
        .footer-brand .my-logo {
            font-size: 1.6rem;
        }
        .footer-brand p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 12px;
            max-width: 320px;
        }
        .footer-links h4 {
            color: var(--accent-gold);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 14px;
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links ul li {
            padding: 4px 0;
        }
        .footer-links ul li a {
            color: var(--text-muted);
            font-size: 0.9rem;
            transition: color var(--transition);
        }
        .footer-links ul li a:hover {
            color: var(--accent-gold);
            text-decoration: none;
        }
        friend-link {
            display: block;
            margin-top: 8px;
        }
        friend-link a {
            color: var(--text-muted);
            font-size: 0.9rem;
            display: inline-block;
            margin-right: 16px;
            margin-bottom: 4px;
        }
        friend-link a:hover {
            color: var(--accent-gold);
            text-decoration: none;
        }
        .copyright {
            border-top: 1px solid var(--border-color);
            padding-top: 20px;
            text-align: center;
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .copyright strong {
            color: var(--text-secondary);
        }
        @media(max-width:768px) {
            .header-inner {
                padding: 0 16px;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .mobile-nav {
                display: flex;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .article-body h2 {
                font-size: 1.6rem;
            }
            .article-body h3 {
                font-size: 1.3rem;
            }
            .article-body p {
                font-size: 1rem;
            }
            .breadcrumb {
                font-size: 0.78rem;
            }
            .sidebar {
                margin-top: 8px;
            }
            .feature-image {
                margin: 20px auto 32px;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
        }
        @media(max-width:480px) {
            .article-header h1 {
                font-size: 1.7rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.55rem;
            }
            .search-box {
                flex-direction: column;
            }
            .comment-form .comment-row {
                flex-direction: column;
            }
            .comment-form .comment-row input {
                min-width: auto;
            }
        }
        .mt-1 {
            margin-top: 16px;
        }
        .mt-2 {
            margin-top: 32px;
        }
        .mb-1 {
            margin-bottom: 16px;
        }
        .gap-1 {
            gap: 16px;
        }
        .flex {
            display: flex;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .items-center {
            align-items: center;
        }
        .text-gold {
            color: var(--accent-gold);
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-primary);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--border-color);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--text-muted);
        }
        .feature-image img {
            background: var(--bg-card);
            transition: opacity 0.5s;
        }
