        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0f0f12;
            color: #e8e6e3;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        a {
            color: #f5b342;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .schema-hidden {
            display: none;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1a24 0%, #0d0d14 100%);
            border-bottom: 2px solid #f5b34233;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            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;
            background: linear-gradient(135deg, #f5b342, #ff7b00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f5b342;
            font-size: 1.6rem;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: initial;
            color: #aaa;
            letter-spacing: 1px;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-menu a {
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #cfcfd6;
            transition: all 0.25s ease;
            border: 1px solid transparent;
        }
        .nav-menu a:hover,
        .nav-menu a:focus {
            background: #f5b34218;
            color: #f5b342;
            border-color: #f5b34255;
            text-decoration: none;
        }
        .nav-menu a.active {
            background: #f5b34222;
            color: #f5b342;
            border-color: #f5b34288;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #ffffff0a;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #f5b342;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.85rem;
            color: #888;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb a {
            color: #f5b342aa;
        }
        .breadcrumb a:hover {
            color: #f5b342;
        }
        .breadcrumb span.sep {
            color: #555;
        }
        .breadcrumb .current {
            color: #ccc;
        }
        .hero {
            padding: 40px 0 30px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, #f5b342, #ff8c00, #f5b342);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.2rem;
            color: #b0adb8;
            max-width: 800px;
            margin: 0 auto 20px;
        }
        .hero .meta {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            font-size: 0.9rem;
            color: #888;
        }
        .hero .meta i {
            margin-right: 6px;
            color: #f5b342;
        }
        section {
            padding: 32px 0;
        }
        h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #f5b342;
            margin: 48px 0 20px;
            border-left: 5px solid #f5b342;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #e8d5b0;
            margin: 36px 0 14px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #cfb991;
            margin: 24px 0 10px;
        }
        p {
            margin-bottom: 18px;
            color: #d0ced9;
        }
        ul,
        ol {
            margin: 16px 0 20px 24px;
            color: #d0ced9;
        }
        li {
            margin-bottom: 8px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1e1e2a, #2a2a3a);
            border-left: 4px solid #f5b342;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #f5b342;
        }
        .featured-image {
            margin: 32px auto;
            border-radius: 16px;
            box-shadow: 0 8px 40px rgba(245, 179, 66, 0.12);
            max-width: 900px;
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #777;
            margin-top: 8px;
        }
        .search-wrap {
            background: #1a1a26;
            border-radius: 16px;
            padding: 28px 32px;
            margin: 36px 0;
            border: 1px solid #2a2a3a;
        }
        .search-wrap h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 40px;
            border: 1px solid #333;
            background: #0f0f16;
            color: #eee;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5b342;
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f5b342, #e07c00);
            color: #0f0f12;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 24px rgba(245, 179, 66, 0.35);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 36px 0;
        }
        @media (max-width:768px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .card {
            background: #1a1a26;
            border-radius: 16px;
            padding: 28px 30px;
            border: 1px solid #2a2a3a;
            transition: border 0.3s;
        }
        .card:hover {
            border-color: #f5b34255;
        }
        .card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .card label {
            display: block;
            margin: 14px 0 6px;
            font-weight: 500;
            color: #cfcfd6;
        }
        .card input,
        .card textarea,
        .card select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #333;
            background: #0f0f16;
            color: #eee;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
            font-family: inherit;
        }
        .card input:focus,
        .card textarea:focus,
        .card select:focus {
            border-color: #f5b342;
        }
        .card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .card .btn-submit {
            margin-top: 16px;
            padding: 12px 28px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f5b342, #e07c00);
            color: #0f0f12;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            font-size: 0.95rem;
        }
        .card .btn-submit:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 24px rgba(245, 179, 66, 0.3);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin: 10px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
        }
        .star-rating label i {
            pointer-events: none;
        }
        .site-footer {
            background: #0a0a0f;
            border-top: 1px solid #222;
            padding: 40px 0 20px;
            margin-top: 48px;
        }
        .site-footer .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        @media (max-width:768px) {
            .site-footer .footer-inner {
                grid-template-columns: 1fr;
            }
        }
        .site-footer h4 {
            color: #f5b342;
            margin-bottom: 12px;
        }
        .site-footer p,
        .site-footer a {
            color: #999;
            font-size: 0.9rem;
        }
        .site-footer a:hover {
            color: #f5b342;
        }
        friend-link {
            display: block;
            margin: 20px 0 10px;
            padding: 16px 20px;
            background: #14141e;
            border-radius: 12px;
            border: 1px solid #2a2a3a;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            color: #f5b342aa;
        }
        friend-link a:hover {
            color: #f5b342;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #1a1a24;
            margin-top: 24px;
            color: #666;
            font-size: 0.85rem;
        }
        @media (max-width: 900px) {
            .hero h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 12px 0 4px;
                gap: 2px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 12px 18px;
                border-radius: 10px;
                text-align: center;
            }
            .hamburger {
                display: flex;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .container {
                padding: 0 14px;
            }
            .search-form input[type="text"] {
                min-width: 140px;
            }
            .card {
                padding: 18px 16px;
            }
            .feedback-grid {
                gap: 16px;
            }
        }
        .text-glow {
            text-shadow: 0 0 40px rgba(245, 179, 66, 0.15);
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .fw-bold {
            font-weight: 700;
        }
        .color-gold {
            color: #f5b342;
        }
        .emoji-lg {
            font-size: 1.4em;
        }
        :target {
            scroll-margin-top: 100px;
        }
