        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; font-size: 16px; }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #0f0f1a;
            color: #e0e0e0;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        a { color: #6ecbf5; text-decoration: none; transition: color 0.2s; }
        a:hover { color: #a8e6ff; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        ul, ol { padding-left: 1.5rem; }
        li { margin-bottom: 0.4rem; }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #ffffff;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 { font-size: 2.4rem; margin-top: 0; color: #f9c74f; }
        h2 { font-size: 1.8rem; color: #f9c74f; border-bottom: 2px solid #2a2a4a; padding-bottom: 0.4rem; }
        h3 { font-size: 1.4rem; color: #e8e8ff; }
        h4 { font-size: 1.15rem; color: #c0c0e0; }
        p { margin-bottom: 1.2rem; }
        strong { color: #ffffff; font-weight: 700; }
        em { color: #b8b8d0; font-style: italic; }
        blockquote {
            border-left: 4px solid #f9c74f;
            padding-left: 1.2rem;
            margin: 1.5rem 0;
            color: #c0c0d0;
            font-style: italic;
            background: rgba(249, 199, 79, 0.05);
            padding: 1rem 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 1rem 0;
            border-bottom: 3px solid #f9c74f;
            position: sticky;
            top: 0;
            z-index: 100;
            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.8rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #f9c74f;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f9c74f, #f8961e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
        }
        .my-logo:hover { text-decoration: none; opacity: 0.9; }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #8899bb;
            color: #8899bb;
            font-weight: 400;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f9c74f;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover { background: rgba(249,199,79,0.15); }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu li { margin: 0; }
        .nav-menu a {
            display: block;
            padding: 0.5rem 1rem;
            color: #c0d0e0;
            font-weight: 500;
            font-size: 0.9rem;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
        }
        .nav-menu a:hover {
            background: rgba(249,199,79,0.12);
            color: #f9c74f;
            text-decoration: none;
        }
        .nav-menu a.active {
            background: #f9c74f;
            color: #0f0f1a;
        }
        .breadcrumb {
            background: #1a1a2e;
            padding: 0.6rem 0;
            border-bottom: 1px solid #2a2a4a;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.3rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.4rem;
            color: #667;
        }
        .breadcrumb a { color: #6ecbf5; }
        .breadcrumb .current { color: #aaa; }
        .section {
            background: #16162a;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin-bottom: 2rem;
            border: 1px solid #2a2a4a;
            transition: box-shadow 0.3s;
        }
        .section:hover { box-shadow: 0 8px 30px rgba(249,199,79,0.05); }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .card {
            background: #1e1e38;
            border-radius: 12px;
            padding: 1.4rem;
            border: 1px solid #2e2e50;
            transition: transform 0.2s, border-color 0.2s;
        }
        .card:hover { transform: translateY(-4px); border-color: #f9c74f; }
        .card h4 { margin-top: 0; }
        .card i { color: #f9c74f; margin-right: 0.4rem; }
        .featured-image {
            border-radius: 14px;
            margin: 1.8rem 0;
            box-shadow: 0 8px 30px rgba(0,0,0,0.5);
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            background: #1a1a2e;
        }
        .form-group { margin-bottom: 1.2rem; }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #ccc;
        }
        .form-control {
            width: 100%;
            padding: 0.7rem 1rem;
            background: #12122a;
            border: 1px solid #3a3a5a;
            border-radius: 8px;
            color: #f0f0f0;
            font-size: 1rem;
            transition: border-color 0.2s;
        }
        .form-control:focus { outline: none; border-color: #f9c74f; }
        textarea.form-control { min-height: 100px; resize: vertical; }
        .btn {
            display: inline-block;
            padding: 0.7rem 1.6rem;
            background: linear-gradient(135deg, #f9c74f, #f8961e);
            color: #0f0f1a;
            font-weight: 700;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.15s, box-shadow 0.2s;
        }
        .btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249,199,79,0.3); }
        .btn:active { transform: translateY(0); }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 1.6rem;
        }
        .star-rating input { display: none; }
        .star-rating label {
            cursor: pointer;
            color: #444;
            transition: color 0.2s, transform 0.1s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #f9c74f;
            transform: scale(1.1);
        }
        .comment-item {
            background: #1a1a32;
            border-radius: 10px;
            padding: 1rem 1.2rem;
            margin-bottom: 0.8rem;
            border-left: 3px solid #f9c74f;
        }
        .comment-item .meta { font-size: 0.85rem; color: #8888aa; }
        .comment-item .text { margin-top: 0.3rem; }
        friend-link {
            display: block;
            background: #1a1a32;
            border-radius: 12px;
            padding: 1.2rem 1.6rem;
            margin-top: 0.8rem;
            border: 1px solid #2a2a4a;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.6rem 0.3rem 0;
            padding: 0.3rem 0.8rem;
            background: rgba(249,199,79,0.08);
            border-radius: 20px;
            font-size: 0.9rem;
            transition: background 0.2s;
        }
        friend-link a:hover { background: rgba(249,199,79,0.2); text-decoration: none; }
        .site-footer {
            background: #0a0a18;
            border-top: 2px solid #1a1a3a;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
            text-align: center;
            font-size: 0.9rem;
            color: #7777aa;
        }
        .site-footer .copyright { margin-top: 1rem; border-top: 1px solid #1a1a2a; padding-top: 1rem; }
        @media (max-width: 768px) {
            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.4rem; }
            h3 { font-size: 1.15rem; }
            .section { padding: 1.2rem 1rem; }
            .header-inner { gap: 0.4rem; }
            .nav-toggle { display: block; }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1a1a2e;
                border-radius: 10px;
                padding: 0.6rem 0;
                margin-top: 0.4rem;
                border: 1px solid #2a2a4a;
            }
            .nav-menu.open { display: flex; }
            .nav-menu a { padding: 0.6rem 1.2rem; }
            .card-grid { grid-template-columns: 1fr; }
            .my-logo { font-size: 1.3rem; }
            .star-rating { font-size: 1.3rem; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 0.8rem; }
            .section { padding: 1rem 0.8rem; }
            h1 { font-size: 1.5rem; }
            h2 { font-size: 1.2rem; }
        }
        .text-center { text-align: center; }
        .text-muted { color: #8888aa; }
        .mt-1 { margin-top: 1rem; }
        .mb-1 { margin-bottom: 1rem; }
        .flex-between { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.8rem; }
        .tag {
            display: inline-block;
            background: rgba(249,199,79,0.12);
            color: #f9c74f;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .divider { height: 1px; background: #2a2a4a; margin: 2rem 0; }
        .table-wrap { overflow-x: auto; margin: 1.2rem 0; }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        th, td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #2a2a4a;
        }
        th { background: #1a1a32; color: #f9c74f; font-weight: 700; }
        tr:hover td { background: rgba(249,199,79,0.03); }
        .search-form { display: flex; gap: 0.6rem; flex-wrap: wrap; }
        .search-form .form-control { flex: 1; min-width: 180px; }
        .loading-spinner { display: inline-block; width: 1.2rem; height: 1.2rem; border: 3px solid #444; border-top-color: #f9c74f; border-radius: 50%; animation: spin 0.7s linear infinite; }
        @keyframes spin { to { transform: rotate(360deg); } }
        .hidden { display: none !important; }
