* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0d0d0f;
            color: #e8e6e3;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #f0c24b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #141417 0%, #1c1c22 100%);
            border-bottom: 2px solid #2a2a35;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0c24b, #d4a437);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(240, 194, 75, 0.15);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #f0c24b;
            font-size: 1.6rem;
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: transparent;
            color: #f0c24b;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #e8e6e3;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #2a2a35;
        }
        .nav-menu {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #c4c2c0;
            transition: all 0.2s ease;
            border: 1px solid transparent;
        }
        .nav-menu a:hover {
            background: #2a2a35;
            color: #f0c24b;
            border-color: #3a3a48;
            text-decoration: none;
        }
        .nav-menu a.active {
            color: #f0c24b;
            border-color: #f0c24b33;
            background: #1e1e28;
        }
        .breadcrumb {
            background: #18181e;
            padding: 12px 0;
            border-bottom: 1px solid #252530;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            font-size: 0.9rem;
            color: #9a9895;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 16px;
            color: #555;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #c4c2c0;
        }
        .breadcrumb a:hover {
            color: #f0c24b;
        }
        .breadcrumb .current {
            color: #f0c24b;
            font-weight: 600;
        }
        .hero {
            padding: 50px 0 40px;
            text-align: center;
            background: radial-gradient(ellipse at top, #1e1e2a, #0d0d0f);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0c24b, #e0b030, #c99f2a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: 1px;
        }
        .hero p {
            font-size: 1.15rem;
            color: #b0aeaa;
            max-width: 800px;
            margin: 0 auto 20px;
        }
        .hero .meta-info {
            display: flex;
            justify-content: center;
            gap: 28px;
            flex-wrap: wrap;
            font-size: 0.95rem;
            color: #8a8885;
        }
        .hero .meta-info i {
            color: #f0c24b;
            margin-right: 6px;
        }
        .last-updated {
            display: inline-block;
            background: #1e1e28;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #b0aeaa;
            border: 1px solid #2a2a35;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 40px 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 110px;
            align-self: start;
        }
        .sidebar-card {
            background: #18181e;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 24px;
            border: 1px solid #252530;
        }
        .sidebar-card h4 {
            font-size: 1.1rem;
            color: #f0c24b;
            margin-bottom: 14px;
            border-bottom: 1px solid #2a2a35;
            padding-bottom: 10px;
        }
        .sidebar-card ul {
            list-style: none;
        }
        .sidebar-card li {
            margin-bottom: 8px;
        }
        .sidebar-card li a {
            font-size: 0.92rem;
            display: block;
            padding: 6px 0;
            color: #c4c2c0;
            border-bottom: 1px solid #1e1e28;
            transition: 0.2s;
        }
        .sidebar-card li a:hover {
            color: #f0c24b;
            padding-left: 4px;
            text-decoration: none;
        }
        .sidebar-card .tag {
            display: inline-block;
            background: #252530;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.75rem;
            color: #9a9895;
            margin-left: 6px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 40px 0 18px;
            color: #f0c24b;
            border-left: 4px solid #f0c24b;
            padding-left: 16px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 14px;
            color: #e0d6c8;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 12px;
            color: #d4c8b8;
        }
        p {
            margin-bottom: 18px;
            color: #d4d2ce;
            font-size: 1rem;
        }
        .highlight {
            background: linear-gradient(120deg, #f0c24b22, #f0c24b11);
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
            color: #f0c24b;
        }
        .insight-box {
            background: #1a1a24;
            border-left: 4px solid #f0c24b;
            padding: 20px 24px;
            margin: 24px 0;
            border-radius: 0 12px 12px 0;
        }
        .insight-box p {
            margin-bottom: 0;
            color: #d4d2ce;
        }
        .insight-box strong {
            color: #f0c24b;
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 6px;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-card {
            background: #18181e;
            border: 1px solid #252530;
            border-radius: 10px;
            padding: 18px;
            text-align: center;
            transition: 0.2s;
        }
        .stat-card:hover {
            border-color: #f0c24b44;
            transform: translateY(-2px);
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f0c24b;
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #9a9895;
            margin-top: 4px;
        }
        .featured-image {
            border-radius: 12px;
            overflow: hidden;
            margin: 32px 0;
            border: 1px solid #2a2a35;
            background: #18181e;
        }
        .featured-image img {
            width: 100%;
            min-height: 200px;
            object-fit: cover;
            background: #2a2a35;
        }
        .featured-image .caption {
            padding: 14px 20px;
            font-size: 0.9rem;
            color: #9a9895;
            background: #18181e;
            border-top: 1px solid #252530;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #18181e;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #252530;
        }
        th {
            background: #1e1e2a;
            color: #f0c24b;
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 12px 16px;
            border-top: 1px solid #252530;
            color: #c4c2c0;
        }
        tr:hover td {
            background: #1e1e28;
        }
        .search-form {
            display: flex;
            gap: 10px;
            margin: 24px 0;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 8px;
            border: 1px solid #2a2a35;
            background: #18181e;
            color: #e8e6e3;
            font-size: 1rem;
            outline: none;
            transition: 0.2s;
        }
        .search-form input:focus {
            border-color: #f0c24b;
            box-shadow: 0 0 0 3px #f0c24b22;
        }
        .search-form button {
            padding: 14px 32px;
            background: #f0c24b;
            color: #0d0d0f;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #e0b030;
            transform: scale(1.02);
        }
        .feedback-section {
            background: #18181e;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #252530;
        }
        .feedback-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-weight: 500;
            color: #c4c2c0;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid #2a2a35;
            background: #0d0d0f;
            color: #e8e6e3;
            font-size: 1rem;
            outline: none;
            transition: 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #f0c24b;
            box-shadow: 0 0 0 3px #f0c24b22;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .form-group select {
            cursor: pointer;
        }
        .btn-submit {
            padding: 14px 36px;
            background: #f0c24b;
            color: #0d0d0f;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-submit:hover {
            background: #e0b030;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #2a2a35;
            cursor: pointer;
        }
        .rating-stars .star {
            transition: 0.2s;
        }
        .rating-stars .star.active {
            color: #f0c24b;
        }
        .rating-stars .star:hover {
            color: #f0c24b;
            transform: scale(1.1);
        }
        footer {
            background: #111115;
            border-top: 2px solid #1e1e28;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-grid h5 {
            color: #f0c24b;
            font-size: 1.1rem;
            margin-bottom: 14px;
        }
        .footer-grid ul {
            list-style: none;
        }
        .footer-grid li {
            margin-bottom: 8px;
        }
        .footer-grid li a {
            color: #9a9895;
            font-size: 0.9rem;
        }
        .footer-grid li a:hover {
            color: #f0c24b;
        }
        friend-link {
            display: block;
            background: #18181e;
            border-radius: 10px;
            padding: 20px 24px;
            margin-bottom: 20px;
            border: 1px solid #252530;
            font-size: 0.95rem;
        }
        friend-link a {
            color: #f0c24b;
            margin: 0 8px;
        }
        friend-link a:hover {
            color: #ffd966;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1e1e28;
            color: #6a6865;
            font-size: 0.85rem;
        }
        .copyright a {
            color: #9a9895;
        }
        .copyright a:hover {
            color: #f0c24b;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .hero h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 16px 0 8px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                padding: 12px 16px;
                border-radius: 6px;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .feedback-section {
                padding: 20px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .container {
                padding: 0 12px;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .search-form input {
                min-width: 140px;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d0d0f;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2a35;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a3a48;
        }
        .schema-hidden {
            display: none;
        }
