        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #0b0d17;
            color: #e4e6f0;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #f0c94b;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus {
            color: #ffe180;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.25;
            color: #fff;
            margin-top: 0;
        }
        h1 {
            font-size: 2.6rem;
            margin-bottom: 1.2rem;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #f0c94b, #f79d2b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            margin-top: 3rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid #2a2d44;
            padding-bottom: 0.5rem;
            color: #f0c94b;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2.2rem;
            margin-bottom: 0.8rem;
            color: #d6daf0;
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 1.6rem;
            margin-bottom: 0.5rem;
            color: #b0b8d4;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #141726;
            border-bottom: 2px solid #2a2d44;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #f0c94b, #f79d2b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #f0c94b;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none !important;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f0c94b;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #1e2238;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 1.6rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #c8cce6;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            position: relative;
            transition: color 0.2s;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #f0c94b;
            transition: width 0.3s;
        }
        .main-nav a:hover::after,
        .main-nav a:focus::after {
            width: 100%;
        }
        .main-nav a:hover {
            color: #f0c94b;
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.4rem 0.8rem;
            padding: 0.8rem 0;
            font-size: 0.85rem;
            color: #8a8fa8;
            list-style: none;
        }
        .breadcrumb li {
            display: inline-flex;
            align-items: center;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: '›';
            margin-right: 0.6rem;
            color: #555a78;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #b0b8d4;
        }
        .breadcrumb a:hover {
            color: #f0c94b;
        }
        .breadcrumb .current {
            color: #f0c94b;
            font-weight: 600;
        }
        .search-form {
            display: flex;
            gap: 0.4rem;
            max-width: 480px;
            margin: 1.5rem 0 2rem;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 2px solid #2a2d44;
            border-radius: 6px;
            background: #1a1d30;
            color: #e4e6f0;
            font-size: 0.95rem;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            outline: none;
            border-color: #f0c94b;
        }
        .search-form button {
            padding: 0.7rem 1.4rem;
            background: #f0c94b;
            border: none;
            border-radius: 6px;
            color: #0b0d17;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
        }
        .search-form button:hover {
            background: #ffe180;
            transform: scale(1.02);
        }
        .hero-image-wrap {
            margin: 1.8rem 0 2.5rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7);
            background: #1a1d30;
        }
        .hero-image-wrap img {
            width: 100%;
            height: auto;
            max-height: 460px;
            object-fit: cover;
        }
        .content-area {
            padding: 1rem 0 3rem;
        }
        .content-area .container {
            max-width: 840px;
        }
        .content-area p,
        .content-area li {
            font-size: 1.05rem;
            color: #d6daf0;
        }
        .content-area strong {
            color: #fff;
            font-weight: 700;
        }
        .content-area .highlight-box {
            background: #1a1d30;
            border-left: 4px solid #f0c94b;
            padding: 1.2rem 1.6rem;
            border-radius: 0 8px 8px 0;
            margin: 1.6rem 0;
        }
        .content-area .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .inline-link-list {
            background: #141726;
            border-radius: 8px;
            padding: 1.2rem 1.6rem;
            margin: 1.6rem 0;
            border: 1px solid #2a2d44;
        }
        .inline-link-list ul {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 0.6rem 1.2rem;
        }
        .inline-link-list li {
            margin: 0;
        }
        .inline-link-list a {
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .inline-link-list a i {
            font-size: 0.8rem;
            color: #f0c94b;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.6rem 0;
            border-radius: 8px;
            border: 1px solid #2a2d44;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #141726;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #2a2d44;
        }
        th {
            background: #1e2238;
            color: #f0c94b;
            font-weight: 700;
            white-space: nowrap;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #1a1d30;
        }
        .feedback-section {
            margin-top: 3.5rem;
            padding-top: 2rem;
            border-top: 2px solid #2a2d44;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        @media (max-width: 680px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #141726;
            border-radius: 10px;
            padding: 1.6rem 1.8rem;
            border: 1px solid #2a2d44;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .feedback-card h3 i {
            color: #f0c94b;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .feedback-card label {
            font-weight: 600;
            font-size: 0.9rem;
            color: #b0b8d4;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 0.6rem 0.9rem;
            border: 2px solid #2a2d44;
            border-radius: 6px;
            background: #1a1d30;
            color: #e4e6f0;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color 0.3s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            outline: none;
            border-color: #f0c94b;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card .star-select {
            display: flex;
            gap: 0.6rem;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        .feedback-card .star-select input {
            display: none;
        }
        .feedback-card .star-select label {
            font-size: 1.8rem;
            color: #3a3d5a;
            cursor: pointer;
            transition: color 0.2s, transform 0.1s;
        }
        .feedback-card .star-select label:hover,
        .feedback-card .star-select label:hover~label,
        .feedback-card .star-select input:checked~label {
            color: #f0c94b;
            transform: scale(1.05);
        }
        .feedback-card .btn-submit {
            padding: 0.7rem 1.6rem;
            background: #f0c94b;
            border: none;
            border-radius: 6px;
            color: #0b0d17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            align-self: flex-start;
        }
        .feedback-card .btn-submit:hover {
            background: #ffe180;
            transform: scale(1.02);
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            color: #8a8fa8;
            background: #141726;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            border: 1px solid #2a2d44;
            margin-bottom: 1.6rem;
        }
        .last-updated i {
            color: #f0c94b;
        }
        .site-footer {
            background: #0d0f1a;
            border-top: 2px solid #2a2d44;
            padding: 2.5rem 0 1.8rem;
            margin-top: 3rem;
        }
        .footer-inner {
            display: flex;
            flex-direction: column;
            gap: 1.6rem;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 2rem;
        }
        .footer-links a {
            color: #8a8fa8;
            font-size: 0.9rem;
        }
        .footer-links a:hover {
            color: #f0c94b;
        }
        friend-link {
            display: block;
            padding: 0.8rem 1.2rem;
            background: #141726;
            border-radius: 8px;
            border: 1px solid #2a2d44;
            font-size: 0.9rem;
            color: #b0b8d4;
        }
        friend-link a {
            color: #f0c94b;
            font-weight: 500;
        }
        friend-link a:hover {
            color: #ffe180;
        }
        .copyright {
            font-size: 0.85rem;
            color: #555a78;
            text-align: center;
            padding-top: 1.2rem;
            border-top: 1px solid #1e2238;
        }
        .copyright strong {
            color: #8a8fa8;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.4rem;
                padding: 0.8rem 0 0.4rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                padding: 0.5rem 0;
            }
            .main-nav a::after {
                display: none;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                gap: 0.4rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .inline-link-list ul {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                align-self: stretch;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                gap: 0.2rem 0.4rem;
            }
            .feedback-card {
                padding: 1rem 1.2rem;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 1.8rem;
            right: 1.8rem;
            width: 44px;
            height: 44px;
            background: #f0c94b;
            color: #0b0d17;
            border: none;
            border-radius: 50%;
            font-size: 1.3rem;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(240, 201, 75, 0.3);
            transition: transform 0.2s, background 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 999;
        }
        .scroll-top:hover {
            transform: scale(1.1);
            background: #ffe180;
        }
        @media (max-width: 480px) {
            .scroll-top {
                bottom: 1rem;
                right: 1rem;
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
        }
