        *,
        *::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, 'Helvetica Neue', sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #f0c94b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #ffde7a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #141a24 0%, #0f131c 100%);
            border-bottom: 2px solid #2a3346;
            padding: 14px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #f0c94b, #d9a82a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 12px rgba(240, 201, 75, 0.25);
            transition: transform 0.25s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.5rem;
            display: block;
            -webkit-text-fill-color: #8a9bb5;
            color: #8a9bb5;
            letter-spacing: 0.3em;
            font-weight: 400;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.92rem;
            font-weight: 500;
            color: #c8d2e0;
            background: transparent;
            transition: all 0.2s ease;
            border: 1px solid transparent;
        }
        .main-nav a:hover {
            background: rgba(240, 201, 75, 0.12);
            border-color: #f0c94b44;
            color: #f0c94b;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #f0c94b18;
            border-color: #f0c94b66;
            color: #f0c94b;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 44px;
            height: 44px;
            background: transparent;
            border: 1px solid #3a445a;
            border-radius: 10px;
            cursor: pointer;
            gap: 5px;
            padding: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1f2838;
        }
        .hamburger span {
            display: block;
            width: 26px;
            height: 2.5px;
            background: #e8edf5;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        .breadcrumb {
            padding: 16px 0 8px;
            font-size: 0.88rem;
            color: #7a8aa0;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }
        .breadcrumb a {
            color: #a0b3cc;
        }
        .breadcrumb a:hover {
            color: #f0c94b;
            text-decoration: none;
        }
        .breadcrumb .sep {
            color: #4a5a72;
            margin: 0 4px;
        }
        .content-wrap {
            padding: 30px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin: 0 0 20px;
            background: linear-gradient(135deg, #f0c94b, #e2b83a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 48px 0 18px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a3346;
            color: #f0e6d0;
            letter-spacing: -0.01em;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 34px 0 14px;
            color: #e0d5c0;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #c8bfa8;
        }
        p {
            margin: 0 0 18px;
            color: #d0d9e8;
        }
        .lead {
            font-size: 1.2rem;
            color: #e8edf5;
            font-weight: 400;
            line-height: 1.8;
            margin-bottom: 28px;
            border-left: 4px solid #f0c94b;
            padding-left: 22px;
            background: #141c2a;
            border-radius: 0 12px 12px 0;
            padding: 18px 24px;
        }
        .highlight-box {
            background: #192233;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 30px 0;
            border-left: 5px solid #f0c94b;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .meta-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 20px 40px;
            align-items: center;
            padding: 14px 0 20px;
            color: #8a9bb5;
            font-size: 0.95rem;
            border-bottom: 1px solid #1e2838;
            margin-bottom: 30px;
        }
        .meta-bar i {
            margin-right: 6px;
            color: #f0c94b;
        }
        .last-updated {
            font-weight: 600;
            color: #c8d2e0;
        }
        .featured-image {
            margin: 30px 0 40px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
            background: #141c2a;
            padding: 8px;
        }
        .featured-image img {
            width: 100%;
            border-radius: 10px;
        }
        .featured-image figcaption {
            padding: 12px 16px 8px;
            font-size: 0.88rem;
            color: #8a9bb5;
            text-align: center;
            font-style: italic;
        }
        ul,
        ol {
            margin: 0 0 20px 24px;
            color: #d0d9e8;
        }
        li {
            margin-bottom: 8px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 28px 0;
            border-radius: 12px;
            background: #141c2a;
            border: 1px solid #2a3346;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th {
            background: #1f2a3a;
            color: #f0c94b;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 12px 18px;
            border-top: 1px solid #232e40;
            color: #c8d4e5;
        }
        tr:hover td {
            background: #1a2537;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin: 30px 0;
        }
        .card {
            background: #141c2a;
            border-radius: 16px;
            padding: 24px;
            border: 1px solid #232e40;
            transition: transform 0.25s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
            border-color: #f0c94b44;
        }
        .card i {
            font-size: 2.2rem;
            color: #f0c94b;
            margin-bottom: 14px;
        }
        .card h4 {
            margin-top: 0;
        }
        .search-section {
            background: #141c2a;
            border-radius: 16px;
            padding: 30px 28px;
            margin: 40px 0;
            border: 1px solid #2a3346;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 30px;
            border: 1px solid #2a3346;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f0c94b;
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #f0c94b, #d9a82a);
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .search-form button:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 24px rgba(240, 201, 75, 0.35);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0;
        }
        @media(max-width:768px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #141c2a;
            border-radius: 16px;
            padding: 28px;
            border: 1px solid #232e40;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card textarea,
        .feedback-card input:not([type="submit"]) {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #2a3346;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 0.95rem;
            resize: vertical;
            outline: none;
            transition: border 0.2s;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: #f0c94b;
        }
        .feedback-card textarea {
            min-height: 100px;
        }
        .feedback-card .star-rating {
            display: flex;
            gap: 6px;
            direction: rtl;
            justify-content: flex-end;
        }
        .feedback-card .star-rating input {
            display: none;
        }
        .feedback-card .star-rating label {
            font-size: 1.8rem;
            color: #3a445a;
            cursor: pointer;
            transition: color 0.2s;
        }
        .feedback-card .star-rating label:hover,
        .feedback-card .star-rating label:hover~label,
        .feedback-card .star-rating input:checked~label {
            color: #f0c94b;
        }
        .btn-submit {
            padding: 12px 28px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #f0c94b, #d9a82a);
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            align-self: flex-start;
        }
        .btn-submit:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 24px rgba(240, 201, 75, 0.3);
        }
        .site-footer {
            background: #0f131c;
            border-top: 2px solid #1e2838;
            padding: 40px 0 30px;
            margin-top: 60px;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
        }
        .footer-links a {
            color: #8a9bb5;
            font-size: 0.9rem;
        }
        .footer-links a:hover {
            color: #f0c94b;
        }
        friend-link {
            display: block;
            padding: 20px 0;
            font-style: normal;
        }
        friend-link a {
            color: #8a9bb5;
            margin: 0 16px 0 0;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            color: #f0c94b;
        }
        .copyright {
            color: #5a6a82;
            font-size: 0.85rem;
            padding-top: 20px;
            border-top: 1px solid #1a2332;
            margin-top: 20px;
            text-align: center;
        }
        @media(max-width:900px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: flex;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 16px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 20px;
                border-radius: 10px;
            }
            .meta-bar {
                flex-direction: column;
                gap: 8px;
            }
            .breadcrumb {
                font-size: 0.8rem;
                flex-wrap: wrap;
            }
        }
        @media(max-width:480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .search-form input[type="text"],
            .search-form button {
                width: 100%;
            }
            .feedback-card .star-rating label {
                font-size: 1.4rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        ::selection {
            background: #f0c94b44;
            color: #fff;
        }
        .tag {
            display: inline-block;
            background: #1f2a3a;
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #a0b3cc;
            margin-right: 6px;
        }
        .tag i {
            margin-right: 4px;
            color: #f0c94b;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .stat-item {
            background: #192233;
            border-radius: 12px;
            padding: 18px 16px;
            text-align: center;
            border: 1px solid #232e40;
        }
        .stat-item .num {
            font-size: 2rem;
            font-weight: 800;
            color: #f0c94b;
            display: block;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #8a9bb5;
        }
