        *,
        *::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, sans-serif;
            background: #0f0f1a;
            color: #e8e8f0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f0c040;
            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;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: 0.01em;
            color: #fff;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.75rem;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.8rem;
            margin-bottom: 0.6rem;
            border-bottom: 2px solid rgba(240, 192, 64, 0.25);
            padding-bottom: 0.35rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 2rem;
            margin-bottom: 0.5rem;
            color: #f0c040;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.4rem;
            margin-bottom: 0.3rem;
            color: #e0b030;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.2rem;
            width: 100%;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border-bottom: 2px solid #f0c04033;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0c040, #e67e22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #f0c040;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.2rem;
            flex-wrap: wrap;
            padding: 0;
        }
        .nav-list li a {
            display: block;
            padding: 0.45rem 0.9rem;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.92rem;
            color: #ddd;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .nav-list li a:hover,
        .nav-list li a.active {
            background: rgba(240, 192, 64, 0.15);
            color: #f0c040;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0c040;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(240, 192, 64, 0.1);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            padding: 0.7rem 0 0.3rem;
            font-size: 0.85rem;
            color: #aaa;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.5rem;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .breadcrumb .sep {
            color: #666;
        }
        .main-content {
            flex: 1;
            padding: 1.6rem 0 2.8rem;
        }
        .hero-figure {
            margin: 1.8rem 0 2.2rem;
            border-radius: 14px;
            overflow: hidden;
            background: #1a1a2e;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
            position: relative;
        }
        .hero-figure img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
            aspect-ratio: 1200/630;
        }
        .hero-figure figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #bbb;
            background: rgba(0, 0, 0, 0.55);
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            backdrop-filter: blur(4px);
        }
        .last-updated {
            display: inline-block;
            background: rgba(240, 192, 64, 0.12);
            padding: 0.25rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #f0c040;
            margin-bottom: 1.2rem;
            border: 1px solid rgba(240, 192, 64, 0.15);
        }
        .search-section {
            background: #1c1c30;
            border-radius: 12px;
            padding: 1.6rem 1.8rem;
            margin: 2.4rem 0;
            border: 1px solid #2a2a42;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1.2rem;
            border-radius: 8px;
            border: 1px solid #333;
            background: #0f0f1a;
            color: #eee;
            font-size: 1rem;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus {
            outline: none;
            border-color: #f0c040;
            box-shadow: 0 0 0 3px rgba(240, 192, 64, 0.15);
        }
        .search-form button {
            padding: 0.7rem 1.8rem;
            border: none;
            border-radius: 8px;
            background: linear-gradient(135deg, #f0c040, #e67e22);
            color: #0f0f1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.15s, box-shadow 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(240, 192, 64, 0.3);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.6rem;
            margin: 2.4rem 0;
        }
        .feedback-card {
            background: #1c1c30;
            border-radius: 12px;
            padding: 1.6rem 1.8rem;
            border: 1px solid #2a2a42;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.6rem;
        }
        .feedback-card label {
            font-size: 0.92rem;
            color: #ccc;
        }
        .feedback-card input,
        .feedback-card textarea {
            padding: 0.6rem 1rem;
            border-radius: 6px;
            border: 1px solid #333;
            background: #0f0f1a;
            color: #eee;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border 0.2s;
            width: 100%;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus {
            outline: none;
            border-color: #f0c040;
            box-shadow: 0 0 0 3px rgba(240, 192, 64, 0.1);
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card .btn-submit {
            padding: 0.6rem 1.6rem;
            border: none;
            border-radius: 6px;
            background: linear-gradient(135deg, #f0c040, #e67e22);
            color: #0f0f1a;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            align-self: flex-start;
            transition: transform 0.15s, box-shadow 0.2s;
        }
        .feedback-card .btn-submit:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(240, 192, 64, 0.25);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 0.2rem;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            font-size: 1.8rem;
            color: #444;
            transition: color 0.2s;
        }
        .star-rating label i {
            pointer-events: none;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f0c040;
        }
        .site-footer {
            background: #0a0a16;
            border-top: 1px solid #1e1e36;
            padding: 2rem 0 1.2rem;
            margin-top: 2rem;
        }
        .footer-inner {
            display: flex;
            flex-direction: column;
            gap: 1.6rem;
        }
        friend-link {
            display: block;
            font-style: normal;
        }
        friend-link .fl-title {
            font-weight: 700;
            color: #f0c040;
            font-size: 1.05rem;
            margin-bottom: 0.6rem;
            display: block;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
            list-style: none;
            padding: 0;
        }
        friend-link .fl-list li a {
            color: #aaa;
            font-size: 0.9rem;
            padding: 0.2rem 0;
            display: inline-block;
        }
        friend-link .fl-list li a:hover {
            color: #f0c040;
        }
        .copyright {
            font-size: 0.8rem;
            color: #666;
            border-top: 1px solid #1a1a2e;
            padding-top: 1.2rem;
            text-align: center;
        }
        .copyright strong {
            color: #999;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.45rem;
                margin-top: 2rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .header-inner {
                gap: 0.4rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a2e;
                border-radius: 10px;
                padding: 0.6rem 0;
                border: 1px solid #2a2a42;
                margin-top: 0.4rem;
            }
            .nav-list li a {
                padding: 0.6rem 1.2rem;
                white-space: normal;
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            .nav-wrapper {
                flex-wrap: wrap;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .hero-figure figcaption {
                position: relative;
                background: rgba(0, 0, 0, 0.7);
                font-size: 0.8rem;
            }
            .breadcrumb {
                font-size: 0.78rem;
            }
            .container {
                padding: 0 0.9rem;
            }
            .feedback-card {
                padding: 1.2rem;
            }
            .search-section {
                padding: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.25rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
            .nav-list li a {
                font-size: 0.85rem;
                padding: 0.5rem 1rem;
            }
            .star-rating label {
                font-size: 1.5rem;
            }
        }
        @media (min-width: 769px) {
            .nav-list {
                display: flex !important;
            }
            .hamburger {
                display: none !important;
            }
        }
        .highlight {
            color: #f0c040;
            font-weight: 600;
        }
        .text-muted {
            color: #888;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .inline-icon {
            margin-right: 0.3rem;
        }
        .divider {
            border: none;
            border-top: 1px solid #1e1e36;
            margin: 2rem 0;
        }
        .tag {
            display: inline-block;
            background: rgba(240, 192, 64, 0.12);
            padding: 0.15rem 0.7rem;
            border-radius: 14px;
            font-size: 0.75rem;
            color: #f0c040;
            border: 1px solid rgba(240, 192, 64, 0.12);
            margin-right: 0.3rem;
        }
