        *,
        *::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, 'Helvetica Neue', Arial, sans-serif;
            background: #0d0f12;
            color: #e8e6e3;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: #f0b90b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.25rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #f5f2ee;
            margin-top: 1.8rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.8rem;
            letter-spacing: -0.02em;
            margin-top: 0;
        }
        h2 {
            font-size: 2.1rem;
            border-bottom: 2px solid #2d3138;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #f0b90b;
        }
        h4 {
            font-size: 1.2rem;
            color: #c9c5c0;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .site-header {
            background: #14171c;
            border-bottom: 2px solid #2d3138;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 1.5rem;
            max-width: 1120px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: #f0b90b;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f0b90b, #d4a017);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: opacity 0.3s;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            display: block;
            -webkit-text-fill-color: #9a9a9a;
            color: #9a9a9a;
            letter-spacing: 0.08em;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f0b90b;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2d3138;
        }
        .primary-nav {
            display: flex;
            align-items: center;
            gap: 1.8rem;
            flex-wrap: wrap;
        }
        .primary-nav a {
            color: #c9c5c0;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: color 0.25s, border-color 0.25s;
        }
        .primary-nav a:hover,
        .primary-nav a.active {
            color: #f0b90b;
            border-bottom-color: #f0b90b;
            text-decoration: none;
        }
        .breadcrumb {
            background: #1a1e24;
            padding: 0.6rem 1.5rem;
            font-size: 0.85rem;
            color: #9a9a9a;
            border-bottom: 1px solid #2d3138;
            max-width: 1120px;
            margin: 0 auto;
            width: 100%;
        }
        .breadcrumb a {
            color: #c9c5c0;
        }
        .breadcrumb a:hover {
            color: #f0b90b;
        }
        .breadcrumb span {
            color: #f0b90b;
        }
        .main-content {
            padding: 2.5rem 0 3rem;
        }
        .hero-image-wrapper {
            margin: 1.8rem 0 2.5rem;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
            background: #1a1e24;
            position: relative;
        }
        .hero-image-wrapper img {
            width: 100%;
            height: auto;
            max-height: 460px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .hero-image-wrapper:hover img {
            transform: scale(1.02);
        }
        .hero-image-wrapper .img-caption {
            padding: 0.75rem 1.2rem;
            font-size: 0.85rem;
            color: #9a9a9a;
            background: #0d0f12;
            border-top: 1px solid #2d3138;
        }
        .search-module {
            background: #1a1e24;
            border-radius: 12px;
            padding: 1.8rem 2rem;
            margin: 2rem 0 2.5rem;
            border: 1px solid #2d3138;
        }
        .search-module h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .search-form {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            margin-top: 0.8rem;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 1px solid #3a3f4a;
            background: #0d0f12;
            color: #e8e6e3;
            font-size: 0.95rem;
            transition: border 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f0b90b;
            outline: none;
            box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.15);
        }
        .search-form button {
            padding: 0.7rem 1.6rem;
            background: #f0b90b;
            border: none;
            border-radius: 8px;
            color: #0d0f12;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.5rem 0;
        }
        @media (max-width:700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #1a1e24;
            border-radius: 12px;
            padding: 1.8rem 2rem;
            border: 1px solid #2d3138;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .feedback-card form {
            margin-top: 1rem;
        }
        .feedback-card textarea,
        .feedback-card input[type="number"],
        .feedback-card input[type="text"] {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 1px solid #3a3f4a;
            background: #0d0f12;
            color: #e8e6e3;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border 0.3s;
            margin-bottom: 0.75rem;
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: #f0b90b;
            outline: none;
            box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.12);
        }
        .feedback-card .star-select {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #3a3f4a;
            cursor: pointer;
            margin-bottom: 0.75rem;
        }
        .feedback-card .star-select i {
            transition: color 0.2s, transform 0.15s;
        }
        .feedback-card .star-select i.active,
        .feedback-card .star-select i:hover {
            color: #f0b90b;
            transform: scale(1.1);
        }
        .feedback-card .btn-submit {
            padding: 0.7rem 2rem;
            background: #f0b90b;
            border: none;
            border-radius: 8px;
            color: #0d0f12;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card .btn-submit:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .site-footer {
            background: #14171c;
            border-top: 2px solid #2d3138;
            padding: 2.5rem 1.5rem 1.8rem;
            margin-top: 3rem;
        }
        .footer-inner {
            max-width: 1120px;
            margin: 0 auto;
        }
        .footer-inner friend-link {
            display: block;
            margin-bottom: 1.2rem;
            font-weight: 500;
            color: #c9c5c0;
        }
        .footer-inner friend-link a {
            color: #f0b90b;
            margin: 0 0.3rem;
        }
        .footer-inner friend-link a:hover {
            color: #ffd966;
        }
        .footer-copyright {
            font-size: 0.85rem;
            color: #6a6a6a;
            border-top: 1px solid #2d3138;
            padding-top: 1.2rem;
            margin-top: 0.8rem;
            text-align: center;
        }
        .footer-copyright strong {
            color: #9a9a9a;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                padding: 0.5rem 1rem;
            }
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.4rem;
                padding: 0.8rem 0 0.4rem;
                border-top: 1px solid #2d3138;
                margin-top: 0.6rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.5rem 0;
                font-size: 1rem;
                border-bottom: none;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.4rem 1rem;
            }
            .search-module {
                padding: 1.2rem 1.2rem;
            }
            .feedback-card {
                padding: 1.2rem 1.2rem;
            }
            .container {
                padding: 0 1rem;
            }
            .hero-image-wrapper {
                margin: 1rem 0 1.5rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .feedback-grid {
                gap: 1rem;
            }
        }
        .highlight {
            color: #f0b90b;
            font-weight: 600;
        }
        .text-muted {
            color: #9a9a9a;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .last-updated {
            display: inline-block;
            font-size: 0.85rem;
            color: #6a6a6a;
            background: #1a1e24;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            border: 1px solid #2d3138;
            margin-bottom: 1.2rem;
        }
        .link-list {
            list-style: none;
            padding-left: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            margin: 1.2rem 0;
        }
        .link-list li a {
            color: #f0b90b;
            font-weight: 500;
            font-size: 0.9rem;
        }
        .link-list li a:hover {
            color: #ffd966;
        }
        :target {
            scroll-margin-top: 80px;
        }
