*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --bg-dark: #0e0e1a;
            --bg-card: #16162a;
            --bg-card-hover: #1f1f3a;
            --gold: #f5c842;
            --gold-dark: #d4a830;
            --orange: #ff7a2f;
            --orange-glow: #ff5500;
            --text-primary: #f0ece4;
            --text-secondary: #b8b0a8;
            --text-muted: #7a7268;
            --border-glow: rgba(245, 200, 66, 0.15);
            --shadow-gold: rgba(245, 200, 66, 0.08);
            --radius: 14px;
            --radius-sm: 8px;
            --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-main);
            background: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        a {
            color: var(--gold);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--orange);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-sm);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0b0b18 0%, #141428 100%);
            border-bottom: 1px solid rgba(245, 200, 66, 0.08);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--gold), var(--orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 40px rgba(245, 200, 66, 0.15);
            transition: transform var(--transition);
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: var(--gold);
            margin-right: 6px;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-bar a {
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: background var(--transition), color var(--transition);
        }
        .nav-bar a:hover {
            background: rgba(245, 200, 66, 0.08);
            color: var(--gold);
        }
        .nav-bar a.active {
            color: var(--gold);
            background: rgba(245, 200, 66, 0.06);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: var(--radius-sm);
            transition: background var(--transition);
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.05);
        }
        .nav-mobile {
            display: none;
            width: 100%;
            flex-direction: column;
            gap: 6px;
            padding-top: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            margin-top: 8px;
        }
        .nav-mobile.open {
            display: flex;
        }
        .nav-mobile a {
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            color: var(--text-secondary);
            font-weight: 500;
            transition: background var(--transition), color var(--transition);
        }
        .nav-mobile a:hover {
            background: rgba(245, 200, 66, 0.08);
            color: var(--gold);
        }
        .breadcrumb {
            padding: 14px 0 6px 0;
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
        }
        .breadcrumb a {
            color: var(--text-muted);
            transition: color var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--gold);
        }
        .breadcrumb span {
            color: var(--text-secondary);
        }
        .breadcrumb .sep {
            color: var(--text-muted);
        }
        .hero {
            padding: 40px 0 30px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5e6a0, var(--gold), var(--orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        .hero p {
            font-size: 1.15rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto 20px;
        }
        .hero .meta {
            font-size: 0.9rem;
            color: var(--text-muted);
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hero .meta i {
            margin-right: 6px;
            color: var(--gold);
        }
        .search-wrap {
            max-width: 580px;
            margin: 28px auto 20px;
        }
        .search-form {
            display: flex;
            background: var(--bg-card);
            border: 1px solid rgba(245, 200, 66, 0.12);
            border-radius: 50px;
            overflow: hidden;
            transition: border-color var(--transition), box-shadow var(--transition);
        }
        .search-form:focus-within {
            border-color: var(--gold);
            box-shadow: 0 0 0 4px rgba(245, 200, 66, 0.08);
        }
        .search-form input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 14px 22px;
            font-size: 1rem;
            color: var(--text-primary);
            outline: none;
        }
        .search-form input::placeholder {
            color: var(--text-muted);
        }
        .search-form button {
            background: transparent;
            border: none;
            padding: 0 24px;
            color: var(--gold);
            font-size: 1.2rem;
            cursor: pointer;
            transition: background var(--transition), color var(--transition);
        }
        .search-form button:hover {
            background: rgba(245, 200, 66, 0.08);
            color: var(--orange);
        }
        .content {
            padding: 20px 0 40px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
        }
        .main-article h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold);
            margin: 48px 0 18px 0;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(245, 200, 66, 0.10);
            line-height: 1.3;
        }
        .main-article h2:first-of-type {
            margin-top: 0;
        }
        .main-article h3 {
            font-size: 1.45rem;
            font-weight: 600;
            color: var(--text-primary);
            margin: 32px 0 12px 0;
            line-height: 1.4;
        }
        .main-article h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--orange);
            margin: 24px 0 10px 0;
            line-height: 1.4;
        }
        .main-article p {
            margin-bottom: 18px;
            color: var(--text-secondary);
            font-size: 1.02rem;
        }
        .main-article strong {
            color: var(--text-primary);
            font-weight: 600;
        }
        .main-article ul,
        .main-article ol {
            margin: 0 0 20px 24px;
            color: var(--text-secondary);
        }
        .main-article li {
            margin-bottom: 8px;
        }
        .main-article .highlight-box {
            background: var(--bg-card);
            border-left: 4px solid var(--gold);
            padding: 20px 24px;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 24px 0;
        }
        .main-article .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: var(--radius);
            overflow: hidden;
            background: var(--bg-card);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
            min-height: 240px;
            background: #1e1e32;
        }
        .featured-image figcaption {
            padding: 12px 20px;
            font-size: 0.9rem;
            color: var(--text-muted);
            background: var(--bg-card);
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }
        .value-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 0.95rem;
            background: var(--bg-card);
            border-radius: var(--radius-sm);
            overflow: hidden;
        }
        .value-table thead {
            background: rgba(245, 200, 66, 0.08);
        }
        .value-table th {
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
            color: var(--gold);
            border-bottom: 2px solid rgba(245, 200, 66, 0.12);
        }
        .value-table td {
            padding: 12px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            color: var(--text-secondary);
        }
        .value-table tr:hover td {
            background: rgba(245, 200, 66, 0.03);
        }
        .value-table .rank {
            color: var(--gold);
            font-weight: 600;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .sidebar-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 24px;
            border: 1px solid rgba(245, 200, 66, 0.06);
            transition: border-color var(--transition), box-shadow var(--transition);
        }
        .sidebar-card:hover {
            border-color: rgba(245, 200, 66, 0.12);
            box-shadow: 0 4px 24px rgba(245, 200, 66, 0.04);
        }
        .sidebar-card h3 {
            font-size: 1.15rem;
            color: var(--gold);
            margin-bottom: 16px;
            font-weight: 600;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            color: var(--text-secondary);
            transition: color var(--transition), padding-left var(--transition);
            display: block;
        }
        .sidebar-card ul li a:hover {
            color: var(--gold);
            padding-left: 4px;
        }
        .interact-area {
            margin: 40px 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }
        .interact-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px;
            border: 1px solid rgba(245, 200, 66, 0.06);
            transition: border-color var(--transition);
        }
        .interact-card:hover {
            border-color: rgba(245, 200, 66, 0.12);
        }
        .interact-card h3 {
            font-size: 1.2rem;
            color: var(--gold);
            margin-bottom: 18px;
            font-weight: 600;
        }
        .interact-card h3 i {
            margin-right: 10px;
            color: var(--orange);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 6px;
            margin-bottom: 16px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: var(--text-muted);
            cursor: pointer;
            transition: color var(--transition), transform var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--gold);
            transform: scale(1.05);
        }
        .interact-card .btn {
            background: linear-gradient(135deg, var(--gold-dark), var(--orange));
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            color: #0e0e1a;
            cursor: pointer;
            transition: transform var(--transition), box-shadow var(--transition);
            width: 100%;
        }
        .interact-card .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245, 200, 66, 0.2);
        }
        .interact-card textarea {
            width: 100%;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-sm);
            padding: 14px 16px;
            color: var(--text-primary);
            font-family: var(--font-main);
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            margin-bottom: 16px;
            transition: border-color var(--transition);
        }
        .interact-card textarea:focus {
            outline: none;
            border-color: var(--gold);
        }
        .interact-card textarea::placeholder {
            color: var(--text-muted);
        }
        .interact-card .form-group {
            margin-bottom: 14px;
        }
        .interact-card .form-group input {
            width: 100%;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-sm);
            padding: 12px 16px;
            color: var(--text-primary);
            font-size: 0.95rem;
            transition: border-color var(--transition);
        }
        .interact-card .form-group input:focus {
            outline: none;
            border-color: var(--gold);
        }
        .interact-card .form-group input::placeholder {
            color: var(--text-muted);
        }
        .friend-links-section {
            margin: 40px 0 20px;
            padding: 28px 0;
            border-top: 1px solid rgba(245, 200, 66, 0.08);
            border-bottom: 1px solid rgba(245, 200, 66, 0.08);
        }
        .friend-links-section h3 {
            font-size: 1.1rem;
            color: var(--gold);
            margin-bottom: 16px;
            font-weight: 600;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
        }
        friend-link a {
            color: var(--text-secondary);
            font-size: 0.9rem;
            padding: 4px 0;
            transition: color var(--transition);
        }
        friend-link a:hover {
            color: var(--gold);
        }
        .site-footer {
            padding: 32px 0 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .site-footer .copyright {
            margin-top: 12px;
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        .site-footer .copyright i {
            color: var(--gold);
            margin: 0 4px;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .sidebar {
                order: 2;
            }
            .interact-area {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .nav-bar {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .value-table {
                font-size: 0.85rem;
            }
            .value-table th,
            .value-table td {
                padding: 10px 12px;
            }
            .interact-card {
                padding: 20px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .main-article h2 {
                font-size: 1.6rem;
            }
            .main-article h3 {
                font-size: 1.25rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero .meta {
                font-size: 0.8rem;
                gap: 12px;
            }
            .search-form input {
                padding: 12px 16px;
                font-size: 0.9rem;
            }
            .search-form button {
                padding: 0 16px;
            }
            .main-article p {
                font-size: 0.95rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-dark);
        }
        ::-webkit-scrollbar-thumb {
            background: rgba(245, 200, 66, 0.2);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: rgba(245, 200, 66, 0.35);
        }
        @media print {
            .site-header {
                position: static;
                backdrop-filter: none;
            }
            .search-wrap,
            .interact-area,
            .hamburger {
                display: none !important;
            }
            .nav-bar {
                display: flex !important;
            }
            .nav-mobile {
                display: none !important;
            }
            body {
                background: #fff;
                color: #222;
            }
            a {
                color: #0044cc;
            }
            .main-article h2 {
                border-bottom-color: #ddd;
            }
            .value-table thead {
                background: #f0f0f0;
            }
            .value-table th {
                color: #333;
            }
            .sidebar-card {
                background: #f9f9f9;
                border-color: #ddd;
            }
            .featured-image {
                box-shadow: none;
                border: 1px solid #ddd;
            }
            .highlight-box {
                background: #f5f5f5;
                border-left-color: #cc9900;
            }
            .site-footer {
                border-top-color: #ddd;
            }
            .friend-links-section {
                border-color: #ddd;
            }
        }
