* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, Roboto, sans-serif;
            background: #0e0f14;
            color: #e8e6e3;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #f7b731;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .site-header {
            background: #1a1c23;
            border-bottom: 2px solid #f7b731;
            padding: 0 1.5rem;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 0.8rem 0;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #f7b731;
            text-shadow: 0 0 12px rgba(247, 183, 49, 0.25);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #ffd966;
        }
        .my-logo span {
            color: #fff;
            font-weight: 300;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f7b731;
            color: #f7b731;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f7b73122;
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #cfcfcf;
            transition: 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: #f7b73118;
            color: #f7b731;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #f7b731;
            color: #0e0f14;
        }
        .breadcrumb {
            background: #14161c;
            padding: 0.6rem 1.5rem;
            font-size: 0.85rem;
            border-bottom: 1px solid #2a2d37;
        }
        .breadcrumb-inner {
            max-width: 1280px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #f7b731;
        }
        .breadcrumb span {
            color: #f7b731;
            font-weight: 500;
        }
        .page-wrap {
            max-width: 1280px;
            margin: 0 auto;
            padding: 2rem 1.5rem 3rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .content-main {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #f7b731;
            line-height: 1.2;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #f7d27a;
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            border-left: 5px solid #f7b731;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #f0c96a;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #e8d5a8;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d5d2ce;
        }
        .hero-img-wrap {
            margin: 1.8rem 0 2.2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
        }
        .hero-img-wrap img {
            width: 100%;
            object-fit: cover;
            max-height: 420px;
        }
        .last-updated {
            color: #999;
            font-size: 0.9rem;
            border-bottom: 1px solid #2a2d37;
            padding-bottom: 0.8rem;
            margin-bottom: 1.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .last-updated i {
            color: #f7b731;
        }
        .highlight-box {
            background: #1e2129;
            border-left: 4px solid #f7b731;
            padding: 1.2rem 1.6rem;
            border-radius: 0 12px 12px 0;
            margin: 1.6rem 0;
        }
        .highlight-box strong {
            color: #f7b731;
        }
        .btn {
            display: inline-block;
            background: #f7b731;
            color: #0e0f14;
            padding: 0.6rem 1.6rem;
            border-radius: 30px;
            font-weight: 700;
            transition: 0.2s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background: #ffd966;
            transform: translateY(-2px);
            text-decoration: none;
            color: #0e0f14;
        }
        .sidebar-card {
            background: #1a1c23;
            border-radius: 16px;
            padding: 1.6rem;
            margin-bottom: 1.8rem;
            border: 1px solid #2a2d37;
        }
        .sidebar-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-left: 3px solid #f7b731;
            padding-left: 0.8rem;
        }
        .sidebar-link-list {
            list-style: none;
        }
        .sidebar-link-list li {
            margin-bottom: 0.7rem;
            border-bottom: 1px solid #242730;
            padding-bottom: 0.7rem;
        }
        .sidebar-link-list a {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: #ccc;
        }
        .sidebar-link-list a:hover {
            color: #f7b731;
        }
        .sidebar-link-list i {
            color: #f7b731;
            font-size: 0.8rem;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1.2rem 0 1.8rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: 2px solid #2a2d37;
            border-radius: 30px;
            background: #1a1c23;
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: 0.2s;
        }
        .search-form input:focus {
            border-color: #f7b731;
        }
        .search-form button {
            background: #f7b731;
            border: none;
            border-radius: 30px;
            padding: 0.7rem 1.4rem;
            color: #0e0f14;
            font-weight: 700;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-form button:hover {
            background: #ffd966;
        }
        .feedback-section {
            margin-top: 3rem;
            background: #1a1c23;
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid #2a2d37;
        }
        .feedback-section h2 {
            margin-top: 0;
            border-left: 5px solid #f7b731;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #444;
            margin: 0.8rem 0 1.2rem;
            cursor: pointer;
        }
        .rating-stars i {
            transition: 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f7b731;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #2a2d37;
            border-radius: 12px;
            background: #0e0f14;
            color: #fff;
            font-size: 1rem;
            resize: vertical;
            min-height: 110px;
            outline: none;
            transition: 0.2s;
        }
        .comment-form textarea:focus {
            border-color: #f7b731;
        }
        .form-actions {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }
        .form-actions .btn {
            font-size: 0.95rem;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0 0.3rem;
            color: #aaa;
            font-size: 0.95rem;
        }
        friend-link a {
            color: #f7b731;
            margin: 0 0.3rem;
        }
        .site-footer {
            background: #111217;
            border-top: 2px solid #1e2129;
            padding: 2rem 1.5rem 1.5rem;
            text-align: center;
            color: #777;
            font-size: 0.9rem;
        }
        .footer-inner {
            max-width: 1280px;
            margin: 0 auto;
        }
        .footer-inner p {
            color: #777;
            margin-bottom: 0.4rem;
        }
        .footer-inner a {
            color: #f7b731;
        }
        @media (max-width: 900px) {
            .page-wrap {
                grid-template-columns: 1fr;
                padding: 1.5rem 1rem 2.5rem;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .content-main {
                order: 1;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 700px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 1rem 0 0.5rem;
                gap: 0.5rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                padding: 0.6rem 1rem;
            }
            .header-inner {
                padding: 0.5rem 0;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            .feedback-section {
                padding: 1.2rem;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .hero-img-wrap img {
                max-height: 220px;
            }
        }
        .text-accent {
            color: #f7b731;
        }
        .text-muted {
            color: #999;
        }
        .mt-2 {
            margin-top: 1.2rem;
        }
        .mb-1 {
            margin-bottom: 0.8rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .gap-1 {
            gap: 0.8rem;
        }
        .emoji-big {
            font-size: 1.8rem;
            line-height: 1;
        }
        .list-styled {
            list-style: none;
            padding-left: 0.5rem;
        }
        .list-styled li {
            padding: 0.4rem 0 0.4rem 1.8rem;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="%23f7b731"><path d="M12 2L15.09 8.26L22 9.27L17 14.14L18.18 21.02L12 17.77L5.82 21.02L7 14.14L2 9.27L8.91 8.26L12 2z"/></svg>') left center no-repeat;
            background-size: 1rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.4rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a1c23;
            border-radius: 12px;
            overflow: hidden;
            font-size: 0.95rem;
        }
        th {
            background: #f7b731;
            color: #0e0f14;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 700;
        }
        td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #2a2d37;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .tag {
            display: inline-block;
            background: #f7b73122;
            color: #f7b731;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
