*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --bg: #12121f;
            --bg2: #1e1e35;
            --card: #1a1a2e;
            --accent: #f39c12;
            --accent2: #e94560;
            --text: #eaeaea;
            --muted: #9aa0b4;
            --border: #2a2a4a;
            --radius: 12px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.75;
            font-size: 16px;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: all .2s;
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: var(--bg2);
            border-bottom: 2px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 14px 0;
            gap: 10px;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 900;
            letter-spacing: 1px;
            color: var(--accent);
            text-transform: uppercase;
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo small {
            font-size: 12px;
            display: block;
            color: var(--muted);
            letter-spacing: 2px;
            -webkit-text-fill-color: var(--muted);
        }
        .nav {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav a {
            padding: 8px 14px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            color: var(--text);
            background: transparent;
            border: 1px solid transparent;
        }
        .nav a:hover {
            background: rgba(243, 156, 18, .12);
            border-color: var(--accent);
            color: var(--accent);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 26px;
            cursor: pointer;
        }
        @media(max-width:768px) {
            .hamburger {
                display: block;
            }
            .nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 10px 0;
                border-top: 1px solid var(--border);
            }
            .nav.open {
                display: flex;
            }
            .nav a {
                width: 100%;
                padding: 10px 8px;
            }
        }
        .breadcrumb {
            background: var(--bg2);
            border-bottom: 1px solid var(--border);
            font-size: 13px;
            padding: 8px 0;
            color: var(--muted);
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--accent);
        }
        .breadcrumb i {
            font-size: 10px;
            margin: 0 4px;
            color: var(--muted);
        }
        .main-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 320px;
            gap: 30px;
            margin: 30px auto;
        }
        @media(max-width:992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-card {
            background: var(--card);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            padding: 30px 28px;
            margin-bottom: 30px;
        }
        .article-card h1 {
            font-size: 36px;
            line-height: 1.2;
            margin-bottom: 12px;
            color: #fff;
            border-left: 4px solid var(--accent);
            padding-left: 18px;
        }
        .article-card h1 span {
            color: var(--accent);
        }
        .post-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 22px;
            border-bottom: 1px solid var(--border);
            padding-bottom: 14px;
        }
        .post-meta i {
            margin-right: 4px;
            color: var(--accent);
        }
        .article-card h2 {
            font-size: 28px;
            color: #fff;
            margin: 34px 0 14px;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--border);
            position: relative;
        }
        .article-card h2::before {
            content: "";
            display: block;
            width: 48px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
            margin-bottom: 6px;
        }
        .article-card h3 {
            font-size: 22px;
            color: var(--accent);
            margin: 26px 0 10px;
        }
        .article-card h4 {
            font-size: 18px;
            color: #c9d1d9;
            margin: 18px 0 8px;
        }
        .article-card p {
            margin-bottom: 14px;
            text-align: justify;
        }
        .article-card ul,
        .article-card ol {
            margin: 0 0 16px 22px;
        }
        .article-card li {
            margin-bottom: 6px;
        }
        .article-card img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
            border: 2px solid var(--border);
            margin: 20px 0;
        }
        .info-box {
            background: rgba(243, 156, 18, .08);
            border-left: 4px solid var(--accent);
            border-radius: 8px;
            padding: 16px 18px;
            margin: 20px 0;
            font-size: 15px;
        }
        .stat-table {
            width: 100%;
            border-collapse: collapse;
            margin: 18px 0;
            font-size: 14px;
        }
        .stat-table th {
            background: var(--bg2);
            color: var(--accent);
            text-align: left;
            padding: 10px;
            border: 1px solid var(--border);
            font-weight: 700;
        }
        .stat-table td {
            padding: 8px 10px;
            border: 1px solid var(--border);
        }
        .stat-table tr:nth-child(even) {
            background: rgba(255, 255, 255, .02);
        }
        .blockquote {
            border-left: 4px solid var(--accent2);
            background: rgba(233, 69, 96, .06);
            padding: 14px 18px;
            border-radius: 8px;
            font-style: italic;
            margin: 18px 0;
        }
        .sidebar {
            position: sticky;
            top: 90px;
            align-self: start;
        }
        .widget {
            background: var(--card);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            padding: 22px;
            margin-bottom: 22px;
        }
        .widget h3 {
            font-size: 18px;
            color: var(--accent);
            margin-bottom: 12px;
            border-bottom: 1px solid var(--border);
            padding-bottom: 8px;
        }
        .widget ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .widget ul li {
            margin-bottom: 6px;
            padding-left: 16px;
            position: relative;
            font-size: 14px;
        }
        .widget ul li::before {
            content: "▸";
            position: absolute;
            left: 0;
            color: var(--accent);
        }
        .widget ul li a {
            color: var(--text);
        }
        .widget ul li a:hover {
            color: var(--accent);
        }
        .search-form {
            display: flex;
            gap: 6px;
            margin-top: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 14px;
            border: 1px solid var(--border);
            border-radius: 8px;
            background: var(--bg);
            color: var(--text);
            font-size: 14px;
            outline: none;
        }
        .search-form input:focus {
            border-color: var(--accent);
        }
        .search-form button {
            background: var(--accent);
            border: none;
            border-radius: 8px;
            padding: 10px 16px;
            color: #1a1a2e;
            font-weight: 700;
            cursor: pointer;
            font-size: 14px;
            transition: background .2s;
        }
        .search-form button:hover {
            background: #ffd700;
        }
        .rating-form select {
            width: 100%;
            padding: 10px;
            border-radius: 8px;
            border: 1px solid var(--border);
            background: var(--bg);
            color: var(--text);
            margin-bottom: 10px;
            font-size: 14px;
        }
        .btn {
            display: inline-block;
            background: var(--accent);
            color: #1a1a2e;
            border: none;
            border-radius: 8px;
            padding: 10px 20px;
            font-weight: 700;
            cursor: pointer;
            font-size: 14px;
            transition: background .2s;
        }
        .btn:hover {
            background: #ffd700;
            color: #1a1a2e;
            text-decoration: none;
        }
        .comment-form textarea {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid var(--border);
            background: var(--bg);
            color: var(--text);
            font-size: 14px;
            min-height: 80px;
            resize: vertical;
            margin-bottom: 10px;
        }
        .comment-form input {
            width: 100%;
            padding: 10px;
            border-radius: 8px;
            border: 1px solid var(--border);
            background: var(--bg);
            color: var(--text);
            font-size: 14px;
            margin-bottom: 10px;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, .03);
            border: 1px dashed var(--border);
            border-radius: 8px;
            padding: 12px 16px;
            margin-top: 16px;
            font-size: 14px;
            font-style: italic;
        }
        friend-link a {
            margin: 0 4px;
        }
        footer {
            background: var(--bg2);
            border-top: 2px solid var(--border);
            padding: 40px 0 30px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-grid h4 {
            color: var(--accent);
            margin-bottom: 12px;
            font-size: 18px;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid li {
            margin-bottom: 6px;
            font-size: 14px;
        }
        .copyright {
            border-top: 1px solid var(--border);
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: var(--muted);
        }
        .copyright a {
            color: var(--accent);
        }
        @media(max-width:768px) {
            .article-card {
                padding: 18px 14px;
            }
            .article-card h1 {
                font-size: 28px;
            }
            .article-card h2 {
                font-size: 22px;
            }
            .article-card h3 {
                font-size: 19px;
            }
            .main-grid {
                margin-top: 16px;
            }
        }
