        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0f0f1a;
            color: #e8e6f0;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #f0c27f;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.3;
            color: #fff;
            margin-top: 1.6rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.2rem;
            border-bottom: 3px solid #f0c27f;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.7rem;
            border-left: 5px solid #f0c27f;
            padding-left: 0.8rem;
            margin-top: 2.4rem;
        }
        h3 {
            font-size: 1.3rem;
            color: #f0d9b5;
        }
        h4 {
            font-size: 1.1rem;
            color: #c9b89c;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 12px;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1a2e, #16213e);
            padding: 12px 0;
            border-bottom: 2px solid #f0c27f44;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f0c27f, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 12px rgba(240, 194, 127, 0.25);
        }
        .my-logo:hover {
            text-decoration: none;
            -webkit-text-fill-color: #ffd700;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            letter-spacing: 0.3px;
            font-weight: 400;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f0c27f;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
        }
        .main-nav {
            display: flex;
            gap: 8px 16px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            padding: 6px 12px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            background: #f0c27f22;
            color: #ffd700;
            text-decoration: none;
        }
        .main-nav .active {
            background: #f0c27f33;
            color: #ffd700;
        }
        .breadcrumb {
            font-size: 0.85rem;
            padding: 12px 0 8px;
            color: #999;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 10px;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #666;
        }
        .breadcrumb a {
            color: #bbb;
        }
        .breadcrumb a:hover {
            color: #f0c27f;
        }
        .breadcrumb .current {
            color: #f0c27f;
        }
        .search-box {
            display: flex;
            gap: 6px;
            max-width: 440px;
            margin: 20px 0 16px;
        }
        .search-box input {
            flex: 1;
            padding: 10px 16px;
            border-radius: 40px;
            border: 1px solid #334;
            background: #1a1a2e;
            color: #eee;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-box input:focus {
            border-color: #f0c27f;
        }
        .search-box button {
            padding: 10px 22px;
            border-radius: 40px;
            border: none;
            background: #f0c27f;
            color: #0f0f1a;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-box button:hover {
            background: #ffd700;
            transform: scale(1.02);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 32px;
            margin: 24px 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            background: #16162a;
            border-radius: 16px;
            padding: 20px 16px;
            border: 1px solid #2a2a44;
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            margin-top: 0;
            font-size: 1.15rem;
            border-bottom: 1px solid #2a2a44;
            padding-bottom: 8px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 0.5rem;
        }
        .sidebar a {
            display: block;
            padding: 6px 8px;
            border-radius: 8px;
            font-size: 0.9rem;
            transition: background 0.15s;
        }
        .sidebar a:hover {
            background: #1f1f3a;
            text-decoration: none;
        }
        .featured-image {
            margin: 24px 0;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
            background: #1a1a2e;
            padding: 8px;
        }
        .featured-image img {
            border-radius: 12px;
            width: 100%;
        }
        .featured-image figcaption {
            font-size: 0.85rem;
            color: #aaa;
            text-align: center;
            padding: 8px 0 4px;
            font-style: italic;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 0.92rem;
            background: #16162a;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2a2a44;
        }
        .data-table th {
            background: #1f1f3a;
            color: #f0c27f;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 10px 16px;
            border-top: 1px solid #2a2a44;
        }
        .data-table tr:hover td {
            background: #1a1a30;
        }
        .comment-section,
        .rating-section {
            background: #16162a;
            border-radius: 16px;
            padding: 24px 20px;
            margin: 28px 0;
            border: 1px solid #2a2a44;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 14px;
        }
        .comment-form input,
        .comment-form textarea,
        .rating-form input,
        .rating-form select {
            padding: 10px 16px;
            border-radius: 10px;
            border: 1px solid #2a2a44;
            background: #0f0f1a;
            color: #eee;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
            width: 100%;
        }
        .comment-form input:focus,
        .comment-form textarea:focus,
        .rating-form input:focus,
        .rating-form select:focus {
            border-color: #f0c27f;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            align-self: flex-start;
            padding: 10px 32px;
            border-radius: 40px;
            border: none;
            background: #f0c27f;
            color: #0f0f1a;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #ffd700;
            transform: scale(1.02);
        }
        .site-footer {
            background: #0c0c1a;
            border-top: 2px solid #1a1a34;
            padding: 28px 0 20px;
            margin-top: 40px;
        }
        .footer-inner {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            justify-content: center;
        }
        .footer-links a {
            color: #bbb;
            font-size: 0.9rem;
        }
        .footer-links a:hover {
            color: #f0c27f;
        }
        .copyright {
            text-align: center;
            color: #777;
            font-size: 0.85rem;
            border-top: 1px solid #1a1a34;
            padding-top: 16px;
        }
        .copyright strong {
            color: #aaa;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
            justify-content: center;
            padding: 12px 0;
            border-top: 1px solid #1a1a34;
            border-bottom: 1px solid #1a1a34;
            margin-bottom: 12px;
        }
        .friend-link a {
            font-size: 0.9rem;
            padding: 4px 10px;
            border-radius: 20px;
            background: #1a1a2e;
            transition: background 0.2s;
        }
        .friend-link a:hover {
            background: #2a2a44;
            text-decoration: none;
        }
        .friend-link span {
            color: #666;
            font-size: 0.85rem;
        }
        @media (max-width: 900px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                margin-top: 20px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 700px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1a1a2e;
                padding: 12px 0;
                border-radius: 12px;
                margin-top: 8px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 20px;
                width: 100%;
                border-radius: 0;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .search-box {
                flex-direction: column;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 8px 10px;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            .container {
                padding: 0 4px;
            }
            .sidebar {
                padding: 14px 10px;
            }
        }
        .highlight {
            background: #f0c27f18;
            padding: 0 4px;
            border-radius: 4px;
        }
        .badge {
            display: inline-block;
            background: #f0c27f;
            color: #0f0f1a;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 2px 10px;
            border-radius: 20px;
            letter-spacing: 0.3px;
        }
        .updated {
            color: #999;
            font-size: 0.85rem;
            display: block;
            margin-bottom: 8px;
        }
        .emoji-lg {
            font-size: 1.3rem;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .card {
            background: #16162a;
            border-radius: 12px;
            padding: 16px;
            border: 1px solid #2a2a44;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
        }
        .card i {
            font-size: 1.8rem;
            color: #f0c27f;
            margin-bottom: 8px;
        }
        .card h4 {
            margin-top: 0;
        }
        .blockquote {
            border-left: 4px solid #f0c27f;
            padding: 12px 18px;
            margin: 20px 0;
            background: #16162a;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #ccc;
        }
        .blockquote strong {
            color: #f0c27f;
        }
        hr {
            border: none;
            border-top: 1px solid #2a2a44;
            margin: 28px 0;
        }
        .star-rating {
            display: flex;
            gap: 4px;
            font-size: 1.2rem;
            color: #f0c27f;
        }
        .star-rating .empty {
            color: #444;
        }
