        *,
        *::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: #0d0d0d;
            color: #e5e5e5;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #f5c518;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffdd55;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #f5c518;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: 0.5rem;
            text-shadow: 0 0 20px rgba(245, 197, 24, 0.15);
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f5c518;
            border-left: 5px solid #f5c518;
            padding-left: 18px;
            margin: 2.8rem 0 1.2rem 0;
            line-height: 1.3;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #f0e6d0;
            margin: 2rem 0 0.8rem 0;
            line-height: 1.35;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #ccc;
            margin: 1.5rem 0 0.6rem 0;
            line-height: 1.4;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #d5d5d5;
        }
        .lead {
            font-size: 1.25rem;
            color: #f0e6d0;
            font-weight: 400;
            border-left: 3px solid #f5c518;
            padding-left: 20px;
            margin-bottom: 2rem;
        }
        strong,
        b {
            color: #f5f5f5;
            font-weight: 700;
        }
        em {
            color: #f5c518;
            font-style: italic;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(245, 197, 24, 0.15), transparent);
            padding: 0 8px;
            border-radius: 4px;
        }
        .site-header {
            background: #141414;
            border-bottom: 2px solid #2a2a2a;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #f5c518;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            background: linear-gradient(135deg, #f5c518, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
            -webkit-text-fill-color: #f5c518;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #999;
            color: #999;
            letter-spacing: 1px;
            font-weight: 400;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f5c518;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #222;
        }
        .primary-nav {
            display: flex;
            gap: 8px 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        .primary-nav a {
            color: #ccc;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            text-decoration: none;
        }
        .primary-nav a:hover,
        .primary-nav a:focus {
            background: #222;
            color: #f5c518;
            text-decoration: none;
        }
        .primary-nav a.active {
            color: #f5c518;
            border-bottom: 2px solid #f5c518;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 12px 0 4px 0;
            font-size: 0.85rem;
            color: #888;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 8px 0 4px;
            color: #555;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #f5c518;
        }
        .breadcrumb .current {
            color: #f5c518;
        }
        .search-section {
            background: #1a1a1a;
            border-radius: 12px;
            padding: 28px 30px;
            margin: 30px 0;
            border: 1px solid #2a2a2a;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 50px;
            border: 1px solid #333;
            background: #0d0d0d;
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5c518;
            box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.15);
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 50px;
            border: none;
            background: #f5c518;
            color: #0d0d0d;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #ffdd44;
            transform: scale(1.02);
        }
        .search-form button i {
            font-size: 1.1rem;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 30px 0;
        }
        @media(max-width:720px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .card {
            background: #1a1a1a;
            border-radius: 12px;
            padding: 24px 28px;
            border: 1px solid #2a2a2a;
            transition: border-color 0.3s;
        }
        .card:hover {
            border-color: #444;
        }
        .card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            color: #f5c518;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .card label {
            display: block;
            margin: 12px 0 6px;
            font-weight: 500;
            color: #ccc;
        }
        .card input,
        .card textarea,
        .card select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid #333;
            background: #0d0d0d;
            color: #fff;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .card input:focus,
        .card textarea:focus,
        .card select:focus {
            border-color: #f5c518;
        }
        .card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .card .btn-submit {
            margin-top: 16px;
            padding: 12px 28px;
            border-radius: 50px;
            border: none;
            background: #f5c518;
            color: #0d0d0d;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .card .btn-submit:hover {
            background: #ffdd44;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            margin: 8px 0;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f5c518;
            transform: scale(1.15);
        }
        .rating-value {
            font-size: 1.1rem;
            font-weight: 600;
            color: #f5c518;
            margin-left: 12px;
        }
        .content-area {
            padding: 20px 0 40px;
        }
        .content-area ul,
        .content-area ol {
            margin: 0 0 1.4rem 1.8rem;
            color: #d5d5d5;
        }
        .content-area li {
            margin-bottom: 0.5rem;
        }
        .image-wrapper {
            margin: 2rem 0;
            border-radius: 12px;
            overflow: hidden;
            background: #1a1a1a;
            padding: 8px;
            border: 1px solid #2a2a2a;
        }
        .image-wrapper figcaption {
            padding: 10px 12px 4px;
            font-size: 0.85rem;
            color: #999;
            font-style: italic;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            list-style: none;
            margin: 1rem 0 1.8rem !important;
            padding: 0 !important;
        }
        .link-list-inline li::before {
            content: "🦇";
            margin-right: 6px;
        }
        .link-list-inline a {
            font-weight: 500;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.8rem 0;
            border-radius: 12px;
            border: 1px solid #2a2a2a;
            background: #111;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #222;
        }
        th {
            background: #1a1a1a;
            color: #f5c518;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            font-size: 0.85rem;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #1a1a1a;
        }
        .site-footer {
            background: #0d0d0d;
            border-top: 2px solid #1f1f1f;
            padding: 40px 0 30px;
            margin-top: 50px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }
        @media(max-width:720px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        .site-footer h4 {
            color: #f5c518;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .site-footer p,
        .site-footer a {
            font-size: 0.92rem;
            color: #aaa;
        }
        .site-footer a:hover {
            color: #f5c518;
        }
        friend-link {
            display: block;
            margin: 8px 0;
        }
        friend-link a {
            display: inline-block;
            padding: 4px 0;
            color: #bbb;
        }
        friend-link a::before {
            content: "🔗 ";
            color: #f5c518;
        }
        .copyright {
            border-top: 1px solid #1f1f1f;
            padding-top: 24px;
            text-align: center;
            font-size: 0.85rem;
            color: #666;
        }
        .copyright strong {
            color: #999;
        }
        @media(max-width:768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 12px 0 4px;
                gap: 4px;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                width: 100%;
                padding: 10px 14px;
                border-radius: 6px;
            }
            .header-inner {
                align-items: center;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .table-wrap {
                font-size: 0.85rem;
            }
            th,
            td {
                padding: 10px 12px;
            }
        }
        @media(max-width:480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .card {
                padding: 18px 16px;
            }
        }
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .badge {
            display: inline-block;
            background: #f5c518;
            color: #0d0d0d;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 2px 12px;
            border-radius: 50px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, #f5c518, transparent);
            margin: 2.5rem 0;
            border: none;
        }
        .emoji-lg {
            font-size: 1.4em;
            display: inline-block;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #888;
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 1rem;
        }
        .last-updated i {
            color: #f5c518;
        }
