        *,
        *::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, BlinkMacSystemFont, sans-serif;
            background: #faf8f5;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #8b6508;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #1a1a1a;
        }
        h1 {
            font-size: 2.4rem;
            margin: 0 0 0.5rem 0;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem 0;
            border-bottom: 3px solid #e6c200;
            padding-bottom: 0.35rem;
            display: inline-block;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.6rem 0 0.6rem 0;
            color: #2c2c2c;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1rem 0 0.4rem 0;
            color: #3a3a3a;
        }
        p {
            margin: 0 0 1.2rem 0;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .section {
            padding: 2.5rem 0;
        }
        .site-header {
            background: linear-gradient(145deg, #0a0a23 0%, #1a1a4e 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #ffd700;
            text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
            transition: transform 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #ffed4a;
        }
        .my-logo i {
            font-size: 1.6rem;
            color: #ffd700;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #ffd700;
            color: #ffd700;
            font-size: 1.8rem;
            padding: 0.2rem 0.7rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 215, 0, 0.15);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 1.8rem;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu li a {
            color: #f0f0ff;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .nav-menu li a:hover {
            border-bottom-color: #ffd700;
            color: #ffd700;
            text-decoration: none;
        }
        .nav-menu li a i {
            margin-right: 0.3rem;
            font-size: 0.85rem;
        }
        .breadcrumb {
            background: #f0ede8;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #888;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb .current {
            color: #b8860b;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #0d0d2b 0%, #1f1f5a 100%);
            color: #fff;
            padding: 4rem 0 3rem;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🎡";
            position: absolute;
            right: -20px;
            bottom: -20px;
            font-size: 18rem;
            opacity: 0.06;
            pointer-events: none;
            transform: rotate(12deg);
        }
        .hero h1 {
            color: #ffd700;
            font-size: 3rem;
            line-height: 1.1;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            opacity: 0.92;
            margin: 1rem 0 1.8rem;
        }
        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 1.5rem;
        }
        .hero-stat {
            background: rgba(255, 255, 255, 0.07);
            padding: 0.8rem 1.5rem;
            border-radius: 40px;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 215, 0, 0.2);
            font-weight: 500;
        }
        .hero-stat i {
            color: #ffd700;
            margin-right: 0.5rem;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.8rem;
            margin: 1.8rem 0;
        }
        .card {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.25s ease, box-shadow 0.3s ease;
            border: 1px solid #eee;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
        }
        .card i {
            font-size: 2.2rem;
            color: #b8860b;
            margin-bottom: 0.8rem;
        }
        .card h3 {
            margin-top: 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        th {
            background: #0a0a23;
            color: #ffd700;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #fcf8f0;
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.8rem;
            margin: 2rem 0;
        }
        .interact-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #e8e4de;
        }
        .interact-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.2rem;
        }
        .interact-card input,
        .interact-card textarea,
        .interact-card select {
            width: 100%;
            padding: 0.7rem 0.9rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 0.95rem;
            margin-top: 0.4rem;
            font-family: inherit;
            transition: border 0.2s;
        }
        .interact-card input:focus,
        .interact-card textarea:focus,
        .interact-card select:focus {
            outline: none;
            border-color: #b8860b;
            box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.12);
        }
        .interact-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            padding: 0.65rem 1.6rem;
            background: #b8860b;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .btn:hover {
            background: #9a7109;
            transform: scale(0.98);
        }
        .btn i {
            margin-right: 0.4rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            font-size: 1.6rem;
            color: #ddd;
            cursor: pointer;
            margin: 0.6rem 0;
        }
        .rating-stars .star {
            transition: color 0.15s, transform 0.15s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #f5b342;
            transform: scale(1.12);
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
            padding: 0.8rem 0;
            list-style: none;
        }
        .link-list-inline li a {
            background: #f0ede8;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: background 0.2s;
        }
        .link-list-inline li a:hover {
            background: #e0d9d0;
            text-decoration: none;
        }
        .site-footer {
            background: #0a0a23;
            color: #ccc;
            padding: 2.5rem 0 1.8rem;
            margin-top: 3rem;
        }
        .site-footer a {
            color: #ffd700;
        }
        .site-footer a:hover {
            color: #ffed4a;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 1.8rem;
        }
        .footer-grid h4 {
            color: #ffd700;
            margin: 0 0 0.8rem 0;
            font-size: 1.1rem;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid ul li {
            margin-bottom: 0.4rem;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 1.2rem;
            text-align: center;
            font-size: 0.9rem;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
            padding: 0.2rem 0.8rem;
            background: rgba(255, 215, 0, 0.08);
            border-radius: 20px;
            font-size: 0.9rem;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #777;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin: 1.2rem 0;
        }
        .last-updated i {
            color: #b8860b;
        }
        @media (max-width: 900px) {
            .interact-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #12123a;
                padding: 1rem 0.5rem;
                border-radius: 0 0 12px 12px;
                gap: 0.6rem;
                margin-top: 0.5rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 0.5rem 1rem;
                display: block;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .header-inner {
                align-items: center;
            }
            .hero-stats {
                flex-direction: column;
                gap: 0.8rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .table-wrap {
                font-size: 0.9rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
        }
        .text-gold {
            color: #b8860b;
        }
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }
        .badge {
            background: #e6c200;
            color: #1a1a1a;
            padding: 0.15rem 0.7rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #b8860b;
            color: #fff;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
            z-index: 999;
            transition: transform 0.2s, background 0.2s;
            cursor: pointer;
            border: none;
        }
        .scroll-top:hover {
            background: #9a7109;
            transform: scale(1.05);
        }
        .feature-img {
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
            margin: 1.8rem 0;
            width: 100%;
        }
        .feature-img-wrap {
            position: relative;
        }
        .feature-img-wrap figcaption {
            font-size: 0.85rem;
            color: #666;
            margin-top: 0.4rem;
            font-style: italic;
        }
        .tip-box {
            background: #faf3e0;
            border-left: 5px solid #b8860b;
            padding: 1.2rem 1.6rem;
            border-radius: 0 12px 12px 0;
            margin: 1.6rem 0;
        }
        .tip-box i {
            color: #b8860b;
            margin-right: 0.5rem;
        }
        .faq-item {
            border-bottom: 1px solid #e0dcd6;
            padding: 0.8rem 0;
        }
        .faq-question {
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.4rem 0;
        }
        .faq-question i {
            transition: transform 0.2s;
            color: #b8860b;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s;
            padding: 0 0.5rem;
        }
        .faq-answer.open {
            max-height: 600px;
            padding: 0.5rem 0.5rem 0.8rem;
        }
