        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0d0d0d;
            color: #e8e8e8;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #f7c948;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
            color: #f0e6d3;
        }
        h1 {
            font-size: 2.2rem;
            border-bottom: 3px solid #f7c948;
            padding-bottom: 0.4rem;
        }
        h2 {
            font-size: 1.7rem;
            border-left: 5px solid #f7c948;
            padding-left: 0.8rem;
        }
        h3 {
            font-size: 1.3rem;
            color: #f7d97e;
        }
        h4 {
            font-size: 1.1rem;
            color: #d4c5a9;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1rem;
            color: #dcdcdc;
        }
        strong,
        b {
            color: #f7c948;
            font-weight: 600;
        }
        em {
            color: #e0b354;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #141414;
            padding: 20px 24px 32px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
        }
        .my-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 12px;
            border-bottom: 1px solid #2a2a2a;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f7c948, #e09d1a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 8px rgba(247, 201, 72, 0.15);
        }
        .my-logo a {
            color: inherit;
            -webkit-text-fill-color: transparent;
            background: inherit;
            -webkit-background-clip: text;
            background-clip: text;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .my-nav a {
            color: #ccc;
            font-size: 0.9rem;
            padding: 6px 14px;
            border-radius: 30px;
            background: #1e1e1e;
            transition: background 0.25s, color 0.25s, transform 0.2s;
            font-weight: 500;
        }
        .my-nav a:hover {
            background: #f7c948;
            color: #0d0d0d;
            text-decoration: none;
            transform: translateY(-2px);
        }
        .my-nav a i {
            margin-right: 6px;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            padding: 8px 4px;
            gap: 5px;
        }
        .hamburger span {
            display: block;
            width: 30px;
            height: 3px;
            background: #f7c948;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 14px 0 10px;
            font-size: 0.85rem;
            color: #999;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #666;
            font-size: 1.2rem;
        }
        .breadcrumb a {
            color: #bbb;
        }
        .breadcrumb a:hover {
            color: #f7c948;
        }
        .breadcrumb .current {
            color: #f7c948;
            font-weight: 600;
        }
        .hero-img {
            margin: 20px 0 28px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
            background: #1a1a1a;
        }
        .hero-img img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .hero-img img:hover {
            transform: scale(1.01);
        }
        .hero-caption {
            font-size: 0.85rem;
            color: #aaa;
            text-align: center;
            padding: 8px 0 4px;
            font-style: italic;
        }
        .search-box {
            background: #1c1c1c;
            border-radius: 60px;
            padding: 4px 4px 4px 20px;
            display: flex;
            align-items: center;
            max-width: 480px;
            margin: 18px 0 24px;
            border: 1px solid #2f2f2f;
            transition: border-color 0.3s;
        }
        .search-box:focus-within {
            border-color: #f7c948;
            box-shadow: 0 0 0 3px rgba(247, 201, 72, 0.15);
        }
        .search-box input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 12px 8px;
            font-size: 1rem;
            color: #eee;
            outline: none;
            min-width: 0;
        }
        .search-box input::placeholder {
            color: #777;
            font-style: italic;
        }
        .search-box button {
            background: #f7c948;
            border: none;
            border-radius: 60px;
            padding: 10px 22px;
            font-weight: 600;
            color: #0d0d0d;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }
        .search-box button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .content {
            margin: 20px 0 30px;
        }
        .content .section {
            margin-bottom: 2.8rem;
            padding-bottom: 1.2rem;
            border-bottom: 1px solid #252525;
        }
        .content .section:last-child {
            border-bottom: none;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            background: #1a1a1a;
            padding: 16px 20px;
            border-radius: 14px;
            margin: 20px 0;
            border-left: 4px solid #f7c948;
        }
        .link-list-inline a {
            color: #e0c07a;
            font-weight: 500;
            font-size: 0.92rem;
        }
        .link-list-inline a:hover {
            color: #ffd966;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 30px 0 20px;
        }
        .feedback-card {
            background: #1c1c1c;
            border-radius: 16px;
            padding: 24px 22px;
            border: 1px solid #2a2a2a;
            transition: border-color 0.3s;
        }
        .feedback-card:hover {
            border-color: #f7c948;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card h3 i {
            color: #f7c948;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 10px;
        }
        .feedback-card textarea,
        .feedback-card input,
        .feedback-card select {
            background: #262626;
            border: 1px solid #333;
            border-radius: 10px;
            padding: 12px 16px;
            font-size: 0.95rem;
            color: #eee;
            font-family: inherit;
            transition: border-color 0.3s;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus,
        .feedback-card select:focus {
            border-color: #f7c948;
            outline: none;
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card .btn-submit {
            background: #f7c948;
            color: #0d0d0d;
            font-weight: 700;
            padding: 12px 20px;
            border: none;
            border-radius: 60px;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .feedback-card .btn-submit:hover {
            background: #ffd966;
            transform: translateY(-2px);
        }
        .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: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f7c948;
        }
        friend-link {
            display: block;
            background: #1a1a1a;
            border-radius: 14px;
            padding: 20px 24px;
            margin: 30px 0 16px;
            border: 1px solid #2a2a2a;
        }
        friend-link::before {
            content: "🔗 Friend Links";
            display: block;
            font-size: 1.1rem;
            font-weight: 700;
            color: #f7c948;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 10px;
            background: #252525;
            border-radius: 20px;
            font-size: 0.88rem;
            color: #d4c5a9;
            transition: background 0.2s, color 0.2s;
        }
        friend-link a:hover {
            background: #f7c948;
            color: #0d0d0d;
            text-decoration: none;
        }
        .my-footer {
            margin-top: 36px;
            padding-top: 24px;
            border-top: 1px solid #2a2a2a;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: #999;
            gap: 12px;
        }
        .my-footer .copyright {
            color: #888;
        }
        .my-footer .copyright strong {
            color: #bbb;
        }
        .my-footer .update-time {
            background: #1e1e1e;
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #aaa;
        }
        @media (max-width: 820px) {
            .container {
                padding: 16px 14px 24px;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .my-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a1a;
                padding: 16px 12px;
                border-radius: 16px;
                margin-top: 12px;
                gap: 6px;
            }
            .my-nav.open {
                display: flex;
            }
            .my-nav a {
                width: 100%;
                text-align: center;
                padding: 10px 16px;
            }
            .hamburger {
                display: flex;
            }
            .my-header {
                flex-wrap: wrap;
            }
            .search-box {
                max-width: 100%;
                flex-wrap: wrap;
                border-radius: 30px;
                padding: 4px 4px 4px 14px;
            }
            .search-box input {
                font-size: 0.9rem;
                padding: 10px 6px;
            }
            .search-box button {
                padding: 8px 18px;
                font-size: 0.85rem;
            }
            .breadcrumb {
                font-size: 0.78rem;
                gap: 4px 10px;
            }
            .hero-img img {
                max-height: 260px;
            }
            .my-footer {
                flex-direction: column;
                text-align: center;
            }
            .link-list-inline {
                flex-direction: column;
                gap: 6px;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 12px 10px 20px;
                border-radius: 14px;
            }
            h1 {
                font-size: 1.4rem;
            }
            h2 {
                font-size: 1.15rem;
                padding-left: 6px;
            }
            h3 {
                font-size: 1rem;
            }
            p {
                font-size: 0.92rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .feedback-card {
                padding: 18px 14px;
            }
            .star-rating label {
                font-size: 1.5rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #111;
        }
        ::-webkit-scrollbar-thumb {
            background: #f7c948;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #e0a81c;
        }
        .highlight-box {
            background: #1e1e1e;
            border-left: 6px solid #f7c948;
            padding: 16px 22px;
            border-radius: 12px;
            margin: 20px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .emoji-lg {
            font-size: 1.4rem;
            margin-right: 4px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a1a1a;
            border-radius: 12px;
            overflow: hidden;
            font-size: 0.92rem;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #2a2a2a;
        }
        th {
            background: #2a2a2a;
            color: #f7c948;
            font-weight: 600;
        }
        tr:hover td {
            background: #222;
        }
        .tag {
            display: inline-block;
            background: #2a2a2a;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.75rem;
            color: #bbb;
            margin: 2px 4px;
        }
