        *,
        *::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: #f8f6f2;
            color: #1e1e2a;
            line-height: 1.75;
            padding: 0 1rem;
        }
        a {
            color: #b7410e;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7f2d0a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1a2e, #16213e);
            color: #f0e6d3;
            padding: 1.2rem 0;
            border-radius: 0 0 24px 24px;
            margin-bottom: 2rem;
            position: relative;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: #f5c842;
            text-shadow: 0 2px 8px rgba(245, 200, 66, 0.3);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            color: #ffd966;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.75rem;
            display: block;
            color: #b8a99a;
            letter-spacing: 1px;
            font-weight: 400;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5c842;
            color: #f5c842;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(245, 200, 66, 0.15);
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
            list-style: none;
            align-items: center;
        }
        .nav-menu a {
            color: #e8ddd0;
            font-weight: 500;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .nav-menu a:hover {
            color: #f5c842;
            border-bottom-color: #f5c842;
            text-decoration: none;
        }
        .nav-menu .active a {
            color: #f5c842;
            border-bottom-color: #f5c842;
        }
        .breadcrumb {
            padding: 0.6rem 0 0.2rem;
            font-size: 0.85rem;
            color: #b8a99a;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #d4c5b2;
        }
        .breadcrumb a:hover {
            color: #f5c842;
        }
        .breadcrumb span {
            color: #f0e6d3;
        }
        .search-wrap {
            margin: 1.5rem 0 2rem;
            display: flex;
            justify-content: center;
        }
        .search-form {
            display: flex;
            width: 100%;
            max-width: 600px;
            background: #fff;
            border-radius: 60px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            border: 1px solid #e0d6c8;
        }
        .search-form input {
            flex: 1;
            border: none;
            padding: 0.9rem 1.5rem;
            font-size: 1rem;
            outline: none;
            background: transparent;
            color: #1e1e2a;
            min-width: 0;
        }
        .search-form input::placeholder {
            color: #9a8e7e;
        }
        .search-form button {
            background: #b7410e;
            border: none;
            color: #fff;
            padding: 0 1.8rem;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #7f2d0a;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #1a1a2e;
            margin: 1.5rem 0 1rem;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        h1 .highlight {
            color: #b7410e;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1a1a2e;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid #f5c842;
            display: inline-block;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2d2d44;
            margin: 1.8rem 0 0.8rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #3d3d5c;
            margin: 1.2rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .lead {
            font-size: 1.2rem;
            color: #3d3d5c;
            font-weight: 400;
            line-height: 1.8;
        }
        .content-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 2rem 2.2rem;
            margin-bottom: 2rem;
            box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede8e0;
        }
        .content-card p:last-child {
            margin-bottom: 0;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .feature-item {
            background: #faf8f5;
            padding: 1.5rem;
            border-radius: 16px;
            border-left: 4px solid #f5c842;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .feature-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }
        .feature-item i {
            color: #b7410e;
            font-size: 1.8rem;
            margin-bottom: 0.6rem;
        }
        .feature-item h4 {
            margin-top: 0;
        }
        .tip-box {
            background: #f1ede6;
            border-radius: 16px;
            padding: 1.5rem 2rem;
            border-left: 6px solid #b7410e;
            margin: 1.5rem 0;
        }
        .tip-box i {
            color: #b7410e;
            margin-right: 0.6rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            min-width: 540px;
        }
        th {
            background: #1a1a2e;
            color: #f5c842;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #e8e0d6;
        }
        tr:hover td {
            background: #faf5ee;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            background: #f1ede6;
            font-size: 0.9rem;
            color: #5a4e3e;
            font-style: italic;
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }
        @media (max-width: 700px) {
            .interact-grid {
                grid-template-columns: 1fr;
            }
        }
        .interact-card {
            background: #fff;
            border-radius: 20px;
            padding: 1.8rem;
            box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede8e0;
        }
        .interact-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .interact-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 1rem;
        }
        .interact-card input,
        .interact-card textarea,
        .interact-card select {
            padding: 0.7rem 1rem;
            border: 1px solid #d6cec2;
            border-radius: 10px;
            font-size: 0.95rem;
            background: #faf8f5;
            transition: border 0.2s;
            width: 100%;
        }
        .interact-card input:focus,
        .interact-card textarea:focus,
        .interact-card select:focus {
            outline: none;
            border-color: #b7410e;
            background: #fff;
        }
        .interact-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .interact-card .btn {
            background: #b7410e;
            color: #fff;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            align-self: flex-start;
        }
        .interact-card .btn:hover {
            background: #7f2d0a;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #d6cec2;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f5c842;
        }
        .link-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1rem;
            margin: 1.2rem 0;
        }
        .link-cloud a {
            background: #f1ede6;
            padding: 0.3rem 1rem;
            border-radius: 60px;
            font-size: 0.9rem;
            color: #2d2d44;
            border: 1px solid #e0d6c8;
            transition: background 0.2s, border-color 0.2s;
        }
        .link-cloud a:hover {
            background: #f5c842;
            border-color: #f5c842;
            color: #1a1a2e;
            text-decoration: none;
        }
        .site-footer {
            background: #1a1a2e;
            color: #d4c5b2;
            padding: 2.5rem 0 1.5rem;
            border-radius: 24px 24px 0 0;
            margin-top: 3rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .site-footer h4 {
            color: #f5c842;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .site-footer a {
            color: #d4c5b2;
        }
        .site-footer a:hover {
            color: #f5c842;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            list-style: none;
        }
        .friend-links li a {
            background: rgba(245, 200, 66, 0.08);
            padding: 0.3rem 1rem;
            border-radius: 60px;
            font-size: 0.9rem;
            border: 1px solid rgba(245, 200, 66, 0.15);
        }
        .friend-links li a:hover {
            background: rgba(245, 200, 66, 0.18);
            border-color: #f5c842;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(212, 197, 178, 0.15);
            font-size: 0.85rem;
            color: #9a8e7e;
        }
        .copyright strong {
            color: #d4c5b2;
        }
        .last-updated {
            display: inline-block;
            background: #f1ede6;
            padding: 0.3rem 1.2rem;
            border-radius: 60px;
            font-size: 0.85rem;
            color: #5a4e3e;
            margin-bottom: 1rem;
        }
        .last-updated i {
            margin-right: 0.4rem;
            color: #b7410e;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0 0.5rem;
                gap: 0.2rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.5rem 0;
                font-size: 1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .content-card {
                padding: 1.2rem 1rem;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .interact-grid {
                grid-template-columns: 1fr;
            }
            .search-form input {
                padding: 0.7rem 1rem;
                font-size: 0.9rem;
            }
            .search-form button {
                padding: 0 1rem;
                font-size: 0.9rem;
            }
            .table-wrap {
                font-size: 0.85rem;
            }
            table {
                min-width: 400px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .content-card {
                padding: 0.8rem 0.8rem;
            }
            .feature-item {
                padding: 1rem;
            }
            .tip-box {
                padding: 1rem 1.2rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
        }
        .emoji-lg {
            font-size: 1.4em;
            margin-right: 0.2em;
        }
        .badge {
            background: #f5c842;
            color: #1a1a2e;
            padding: 0.2rem 0.8rem;
            border-radius: 60px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            display: inline-block;
        }
        .divider {
            width: 80px;
            height: 4px;
            background: #f5c842;
            border-radius: 4px;
            margin: 0.8rem 0 1.2rem;
        }
