        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #0d0b15;
            color: #e8e4ef;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f0c75e;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffdf8c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5f0fa;
            margin-top: 1.8rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #f0c75e;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #2a2540;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #d4c9e6;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #1a1530;
            border-bottom: 2px solid #2a2540;
            padding: 0.6rem 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;
            gap: 0.6rem 1rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: 0.5px;
            background: linear-gradient(135deg, #f0c75e, #d9a84a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(240, 199, 94, 0.15);
            white-space: nowrap;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f0c75e;
            margin-right: 0.3rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #f0c75e;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(240, 199, 94, 0.12);
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.8rem;
            align-items: center;
        }
        .nav-menu a {
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #d4c9e6;
            transition: background 0.25s, color 0.25s;
        }
        .nav-menu a:hover {
            background: rgba(240, 199, 94, 0.12);
            color: #f0c75e;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 0.3rem;
            font-size: 0.8rem;
        }
        .breadcrumb-wrap {
            background: #12101e;
            padding: 0.5rem 0;
            border-bottom: 1px solid #1e1a30;
            font-size: 0.85rem;
        }
        .breadcrumb-wrap ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
        }
        .breadcrumb-wrap ol li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #6a5f8a;
        }
        .breadcrumb-wrap a {
            color: #a89fc0;
        }
        .breadcrumb-wrap a:hover {
            color: #f0c75e;
        }
        .breadcrumb-wrap .current {
            color: #f0c75e;
            font-weight: 600;
        }
        .main-content {
            flex: 1;
            padding: 2rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media(max-width:860px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background: #131020;
            border-radius: 18px;
            padding: 2rem 2rem 2.5rem;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
        }
        .article-body .featured-img {
            border-radius: 16px;
            margin: 1.5rem 0 2rem;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
            width: 100%;
            object-fit: cover;
            max-height: 460px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        .sidebar-card {
            background: #131020;
            border-radius: 16px;
            padding: 1.4rem 1.2rem;
            border: 1px solid #1e1a30;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 1px solid #2a2540;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
            color: #f0c75e;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #1a1528;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }
        .sidebar-card ul li a i {
            width: 1.2rem;
            color: #f0c75e;
            font-size: 0.8rem;
        }
        .search-form {
            display: flex;
            background: #1a1530;
            border-radius: 40px;
            overflow: hidden;
            border: 1px solid #2a2540;
            transition: border 0.3s;
        }
        .search-form:focus-within {
            border-color: #f0c75e;
        }
        .search-form input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 0.7rem 1.2rem;
            color: #f5f0fa;
            font-size: 0.95rem;
            outline: none;
            min-width: 0;
        }
        .search-form input::placeholder {
            color: #6a5f8a;
        }
        .search-form button {
            background: #f0c75e;
            border: none;
            padding: 0.7rem 1.4rem;
            color: #0d0b15;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            font-size: 0.95rem;
        }
        .search-form button:hover {
            background: #ffdf8c;
        }
        .search-form button i {
            margin-right: 0.3rem;
        }
        .comment-area,
        .score-area {
            margin-top: 2.5rem;
            padding-top: 1.8rem;
            border-top: 2px solid #1e1a30;
        }
        .comment-area h3,
        .score-area h3 {
            margin-top: 0;
            color: #f0c75e;
        }
        .comment-form,
        .score-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            max-width: 600px;
        }
        .comment-form textarea,
        .comment-form input,
        .score-form select,
        .score-form input {
            background: #1a1530;
            border: 1px solid #2a2540;
            border-radius: 10px;
            padding: 0.7rem 1rem;
            color: #f5f0fa;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border 0.3s;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .score-form select:focus,
        .score-form input:focus {
            border-color: #f0c75e;
            outline: none;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .score-form button {
            background: #f0c75e;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            font-weight: 700;
            color: #0d0b15;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            align-self: flex-start;
            font-size: 0.95rem;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: #ffdf8c;
            transform: scale(1.02);
        }
        .site-footer {
            background: #0d0b15;
            border-top: 2px solid #1e1a30;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        @media(max-width:700px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        .footer-inner h4 {
            color: #f0c75e;
            margin-top: 0;
        }
        .footer-inner p,
        .footer-inner li {
            font-size: 0.9rem;
            color: #a89fc0;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner ul li {
            padding: 0.25rem 0;
        }
        .footer-inner ul li a {
            font-size: 0.9rem;
        }
        friend-link {
            display: block;
            margin-top: 1.2rem;
            padding-top: 1.2rem;
            border-top: 1px solid #1e1a30;
            font-size: 0.9rem;
            color: #a89fc0;
        }
        friend-link a {
            margin: 0 0.2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid #1a1528;
            font-size: 0.85rem;
            color: #5a4f7a;
        }
        .copyright strong {
            color: #a89fc0;
        }
        @media(max-width:700px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 0.6rem 0 0.2rem;
                gap: 0.2rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.6rem 0.8rem;
                border-radius: 8px;
            }
            .article-body {
                padding: 1.2rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
        }
        .tag {
            display: inline-block;
            background: #2a2540;
            color: #f0c75e;
            font-size: 0.75rem;
            padding: 0.15rem 0.7rem;
            border-radius: 20px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .highlight-box {
            background: #1a1530;
            border-left: 4px solid #f0c75e;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        hr {
            border: none;
            border-top: 1px solid #1e1a30;
            margin: 1.8rem 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        table th {
            background: #1a1530;
            color: #f0c75e;
            padding: 0.6rem 0.8rem;
            text-align: left;
            font-weight: 600;
        }
        table td {
            padding: 0.5rem 0.8rem;
            border-bottom: 1px solid #1e1a30;
        }
        table tr:hover td {
            background: #1a1530;
        }
        .last-update {
            font-size: 0.85rem;
            color: #6a5f8a;
            margin-top: 2rem;
            text-align: right;
        }
        .last-update i {
            margin-right: 0.3rem;
        }
        ::-webkit-scrollbar {
            width: 8px;
            background: #0d0b15;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2540;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3f3560;
        }
