        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0a0a14;
            color: #e0e0e8;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffdd77;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #0d0d1a 100%);
            border-bottom: 2px solid #2a2a4a;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            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;
            background: linear-gradient(135deg, #f0c040, #e6a800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-shadow: 0 0 30px rgba(240, 192, 64, 0.15);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f0c040;
            margin-right: 8px;
        }
        .nav-menu {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #c0c0d0;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-menu a:hover {
            background: rgba(240, 192, 64, 0.12);
            color: #f0c040;
            text-decoration: none;
        }
        .nav-menu a.active {
            color: #f0c040;
            background: rgba(240, 192, 64, 0.08);
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #f0c040;
            color: #f0c040;
            font-size: 1.5rem;
            padding: 6px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .hamburger:hover {
            background: rgba(240, 192, 64, 0.15);
        }
        .breadcrumb {
            background: rgba(26, 26, 46, 0.8);
            padding: 10px 0;
            border-bottom: 1px solid #2a2a4a;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #666;
            margin-right: 6px;
        }
        .breadcrumb a {
            color: #999;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .breadcrumb .current {
            color: #f0c040;
        }
        main {
            padding: 30px 0 60px;
        }
        .article-hero {
            text-align: center;
            padding: 30px 0 20px;
        }
        .article-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0c040, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .article-hero .meta {
            color: #888;
            font-size: 0.95rem;
        }
        .article-hero .meta i {
            margin: 0 4px;
        }
        .article-hero .meta .date {
            color: #f0c040;
        }
        .featured-image {
            margin: 24px auto 32px;
            max-width: 900px;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
            overflow: hidden;
            border: 1px solid #2a2a4a;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .featured-image figcaption {
            background: rgba(0, 0, 0, 0.6);
            padding: 10px 16px;
            font-size: 0.85rem;
            color: #aaa;
            text-align: center;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 20px;
        }
        .article-body {
            min-width: 0;
        }
        .article-body h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f0c040;
            margin-top: 48px;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid #2a2a4a;
            position: relative;
        }
        .article-body h2::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background: #f0c040;
        }
        .article-body h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e0c070;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        .article-body h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #d0b060;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        .article-body p {
            margin-bottom: 18px;
            color: #d0d0dd;
            font-size: 1.05rem;
        }
        .article-body strong {
            color: #f0e0a0;
        }
        .article-body ul,
        .article-body ol {
            margin: 12px 0 20px 24px;
            color: #d0d0dd;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        .article-body blockquote {
            border-left: 4px solid #f0c040;
            background: rgba(240, 192, 64, 0.06);
            padding: 16px 20px;
            margin: 20px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #c0c0d0;
        }
        .article-body blockquote cite {
            display: block;
            margin-top: 8px;
            font-style: normal;
            font-size: 0.9rem;
            color: #f0c040;
        }
        .article-body .highlight-box {
            background: rgba(240, 192, 64, 0.06);
            border: 1px solid #2a2a4a;
            border-radius: 12px;
            padding: 20px 24px;
            margin: 24px 0;
            border-left: 4px solid #f0c040;
        }
        .article-body .emoji-lg {
            font-size: 1.3rem;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: rgba(26, 26, 46, 0.6);
            border: 1px solid #2a2a4a;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 24px;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            color: #f0c040;
            margin-bottom: 12px;
            border-bottom: 1px solid #2a2a4a;
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card li {
            margin-bottom: 8px;
        }
        .sidebar-card li a {
            color: #b0b0c0;
            font-size: 0.9rem;
            display: block;
            padding: 4px 0;
            border-bottom: 1px solid rgba(42, 42, 74, 0.3);
        }
        .sidebar-card li a:hover {
            color: #f0c040;
        }
        .form-section {
            background: rgba(26, 26, 46, 0.5);
            border: 1px solid #2a2a4a;
            border-radius: 16px;
            padding: 28px 32px;
            margin: 40px 0;
        }
        .form-section h3 {
            font-size: 1.6rem;
            color: #f0c040;
            margin-bottom: 8px;
        }
        .form-section .sub {
            color: #999;
            margin-bottom: 20px;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: #d0d0dd;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            background: rgba(10, 10, 20, 0.7);
            border: 1px solid #3a3a5a;
            border-radius: 8px;
            color: #e0e0e8;
            font-size: 1rem;
            transition: border 0.3s ease;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #f0c040;
            box-shadow: 0 0 0 3px rgba(240, 192, 64, 0.15);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            padding: 12px 32px;
            background: linear-gradient(135deg, #f0c040, #e6a800);
            color: #0a0a14;
            font-weight: 700;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(240, 192, 64, 0.3);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f0c040;
            color: #f0c040;
        }
        .btn-outline:hover {
            background: rgba(240, 192, 64, 0.1);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
        }
        .rating-stars i {
            transition: color 0.2s ease;
        }
        .rating-stars i.active,
        .rating-stars i:hover {
            color: #f0c040;
        }
        .comment-item {
            background: rgba(20, 20, 36, 0.5);
            border-radius: 10px;
            padding: 16px 20px;
            margin-bottom: 12px;
            border: 1px solid #2a2a4a;
        }
        .comment-item .author {
            font-weight: 600;
            color: #f0c040;
        }
        .comment-item .time {
            font-size: 0.8rem;
            color: #666;
            margin-left: 12px;
        }
        .comment-item .text {
            margin-top: 6px;
            color: #c0c0d0;
        }
        .site-footer {
            background: linear-gradient(135deg, #0d0d1a, #1a1a2e);
            border-top: 2px solid #2a2a4a;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-col h4 {
            color: #f0c040;
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        .footer-col p,
        .footer-col a {
            color: #999;
            font-size: 0.9rem;
        }
        .footer-col a:hover {
            color: #f0c040;
        }
        friend-link {
            display: block;
            background: rgba(240, 192, 64, 0.04);
            border: 1px solid #2a2a4a;
            border-radius: 12px;
            padding: 20px 24px;
            margin: 20px 0 10px;
        }
        friend-link h4 {
            color: #f0c040;
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        friend-link li a {
            color: #b0b0c0;
            font-size: 0.9rem;
            padding: 4px 12px;
            border: 1px solid #2a2a4a;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        friend-link li a:hover {
            color: #f0c040;
            border-color: #f0c040;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2a2a4a;
            color: #666;
            font-size: 0.85rem;
        }
        .copyright a {
            color: #888;
        }
        @media(max-width:900px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .article-hero h1 {
                font-size: 2rem;
            }
        }
        @media(max-width:768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                background: rgba(13, 13, 26, 0.98);
                padding: 12px 0;
                border-radius: 0 0 12px 12px;
                margin-top: 12px;
                border: 1px solid #2a2a4a;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 20px;
                width: 100%;
                text-align: center;
            }
            .article-hero h1 {
                font-size: 1.7rem;
            }
            .article-body h2 {
                font-size: 1.5rem;
            }
            .article-body h3 {
                font-size: 1.25rem;
            }
            .form-section {
                padding: 20px 16px;
            }
            .header-inner {
                gap: 8px;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .featured-image {
                margin: 16px auto 24px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            friend-link ul {
                flex-direction: column;
            }
        }
        @media(max-width:480px) {
            .container {
                padding: 0 12px;
            }
            .article-hero h1 {
                font-size: 1.4rem;
            }
            .article-body p {
                font-size: 0.95rem;
            }
            .btn {
                width: 100%;
                text-align: center;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0a0a14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2a4a;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a3a5a;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .article-body>* {
            animation: fadeInUp 0.5s ease forwards;
        }
        .article-body>*:nth-child(2) {
            animation-delay: 0.05s;
        }
        .article-body>*:nth-child(3) {
            animation-delay: 0.1s;
        }
        .article-body>*:nth-child(4) {
            animation-delay: 0.15s;
        }
        .article-body>*:nth-child(5) {
            animation-delay: 0.2s;
        }
        .article-body>*:nth-child(6) {
            animation-delay: 0.25s;
        }
        .article-body>*:nth-child(7) {
            animation-delay: 0.3s;
        }
        .article-body>*:nth-child(8) {
            animation-delay: 0.35s;
        }
        .article-body>*:nth-child(9) {
            animation-delay: 0.4s;
        }
