        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #0b0a0a;
            color: #e3ddd6;
            line-height: 1.7;
            padding: 0 16px;
            max-width: 1280px;
            margin: 0 auto;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #f0c27f;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #ffd89b;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.3;
            letter-spacing: 0.02em;
            color: #f5ede4;
        }
        h1 {
            font-size: 2.4rem;
            margin: 1.6rem 0 1rem;
            border-left: 6px solid #f0c27f;
            padding-left: 20px;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.4rem 0 1rem;
            border-bottom: 2px solid #3a3530;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.8rem 0 0.6rem;
            color: #f0c27f;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.4rem;
            color: #d4c9bc;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .container {
            background: #12100e;
            border-radius: 20px;
            padding: 24px 28px 32px;
            margin: 20px 0 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0 10px;
            border-bottom: 1px solid #2c2824;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 700;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0c27f, #d4a373);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }
        .my-logo small {
            font-size: 0.8rem;
            font-weight: 400;
            -webkit-text-fill-color: #a0968a;
            display: block;
            letter-spacing: 2px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f0c27f;
            color: #f0c27f;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2c2824;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
            align-items: center;
            list-style: none;
            padding: 0;
        }
        .nav-menu li a {
            font-size: 0.95rem;
            padding: 6px 0;
            color: #cbc3b8;
            font-weight: 500;
            border-bottom: 2px solid transparent;
            transition: border-color 0.25s, color 0.25s;
        }
        .nav-menu li a:hover {
            color: #f0c27f;
            border-bottom-color: #f0c27f;
            text-decoration: none;
        }
        .nav-menu li a.active {
            color: #f0c27f;
            border-bottom-color: #f0c27f;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            list-style: none;
            padding: 12px 0 6px;
            font-size: 0.9rem;
            color: #8f867b;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #6b6157;
        }
        .breadcrumb a {
            color: #b5aa9c;
        }
        .breadcrumb a:hover {
            color: #f0c27f;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 20px 0 28px;
            background: #1d1a18;
            padding: 18px 22px;
            border-radius: 14px;
            border: 1px solid #2f2a26;
        }
        .search-form input[type="text"] {
            flex: 2 1 240px;
            padding: 12px 18px;
            border-radius: 10px;
            border: 1px solid #3d3732;
            background: #0b0a0a;
            color: #e3ddd6;
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f0c27f;
        }
        .search-form button {
            flex: 0 1 auto;
            padding: 12px 32px;
            background: #f0c27f;
            color: #0b0a0a;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #ffd89b;
            transform: scale(1.02);
        }
        .search-form button i {
            font-size: 1.1rem;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 32px 0 20px;
        }
        .feedback-card {
            background: #1a1715;
            padding: 22px 24px;
            border-radius: 16px;
            border: 1px solid #2f2a26;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 10px 14px;
            border-radius: 8px;
            border: 1px solid #3d3732;
            background: #0b0a0a;
            color: #e3ddd6;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.25s;
            width: 100%;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #f0c27f;
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 12px 20px;
            background: #f0c27f;
            color: #0b0a0a;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
        }
        .feedback-card button:hover {
            background: #ffd89b;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #4a443e;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f0c27f;
        }
        .site-footer {
            border-top: 1px solid #2c2824;
            padding: 28px 0 20px;
            margin-top: 40px;
            font-size: 0.95rem;
            color: #9f958a;
        }
        .site-footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 24px;
        }
        friend-link {
            display: block;
            margin: 12px 0 8px;
            font-weight: 500;
        }
        friend-link a {
            display: inline-block;
            margin: 0 14px 6px 0;
            padding: 4px 0;
            color: #cbc3b8;
        }
        friend-link a:hover {
            color: #f0c27f;
        }
        .copyright {
            font-size: 0.85rem;
            color: #736b62;
            margin-top: 16px;
            border-top: 1px solid #1d1a18;
            padding-top: 16px;
            text-align: center;
        }
        .highlight {
            color: #f0c27f;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #f0c27f;
            color: #0b0a0a;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 2px 12px;
            border-radius: 30px;
            letter-spacing: 0.5px;
        }
        .updated {
            font-size: 0.9rem;
            color: #a0968a;
            margin-bottom: 1.6rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .updated i {
            color: #f0c27f;
        }
        .hero-img-wrap {
            margin: 24px 0 30px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
            background: #1d1a18;
            padding: 8px;
        }
        .hero-img-wrap img {
            border-radius: 10px;
            width: 100%;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
            list-style: none;
            padding: 0;
            margin: 16px 0 10px;
        }
        .link-list-inline li a {
            background: #1d1a18;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid #2f2a26;
            transition: background 0.25s, border-color 0.25s;
        }
        .link-list-inline li a:hover {
            background: #2c2824;
            border-color: #f0c27f;
            text-decoration: none;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #2c2824;
        }
        th {
            background: #1d1a18;
            color: #f0c27f;
            font-weight: 600;
        }
        tr:hover td {
            background: #1a1715;
        }
        @media (max-width: 820px) {
            body {
                padding: 0 10px;
            }
            .container {
                padding: 16px 14px 24px;
            }
            h1 {
                font-size: 1.7rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .site-header {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 16px 0 8px;
                gap: 6px;
                border-top: 1px solid #2c2824;
                margin-top: 12px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                display: block;
                padding: 10px 12px;
                border-bottom: 1px solid #1d1a18;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .site-footer .footer-inner {
                flex-direction: column;
                gap: 14px;
            }
            .hero-img-wrap {
                margin: 16px 0 20px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.4rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .feedback-card {
                padding: 16px;
            }
            table {
                font-size: 0.82rem;
            }
            th,
            td {
                padding: 8px 10px;
            }
        }
        @media print {
            body {
                background: #fff;
                color: #222;
            }
            .container {
                box-shadow: none;
                border: 1px solid #ccc;
            }
            .search-form,
            .feedback-grid,
            .nav-toggle,
            .nav-menu {
                display: none !important;
            }
            a {
                color: #222;
                text-decoration: underline;
            }
        }
