        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #f9f7f4;
            color: #2d2a24;
            line-height: 1.7;
            padding: 0 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        a {
            color: #7c3a8c;
            text-decoration: none;
            transition: color 0.25s, border-bottom 0.25s;
        }
        a:hover,
        a:focus {
            color: #b35cc2;
            border-bottom: 2px solid #b35cc2;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            color: #1f1b16;
            font-weight: 700;
            letter-spacing: -0.01em;
        }
        h1 {
            font-size: 2.4rem;
            margin: 1.5rem 0 1rem;
            border-left: 6px solid #d9a0e0;
            padding-left: 1.2rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
            border-bottom: 3px solid #e6d3e8;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 2rem 0 0.75rem;
            color: #3d2e44;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.25rem 0 0.5rem;
            color: #4d3b54;
            font-weight: 600;
        }
        p {
            margin: 0 0 1.25rem;
        }
        ul,
        ol {
            margin: 0 0 1.25rem 1.5rem;
        }
        li {
            margin-bottom: 0.35rem;
        }
        blockquote {
            border-left: 5px solid #d9a0e0;
            background: #f3edf5;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #3d2e44;
        }
        hr {
            border: none;
            border-top: 2px dashed #ddd6e0;
            margin: 2.5rem 0;
        }
        .container {
            width: 100%;
            padding: 0 0.5rem;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0 0.5rem;
            border-bottom: 2px solid #e6d3e8;
            position: relative;
            background: #f9f7f4;
            z-index: 100;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #4a2d5a;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #7c3a8c, #b35cc2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            border-bottom: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #b35cc2;
            margin-right: 0.3rem;
            font-size: 1.7rem;
        }
        .nav-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #4a2d5a;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #e6d3e8;
        }
        nav {
            display: flex;
            gap: 0.25rem;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            padding: 0.5rem 0.9rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #3d2e44;
            transition: background 0.25s, color 0.25s;
            border: 1px solid transparent;
        }
        nav a:hover {
            background: #e6d3e8;
            color: #2d1a36;
            border-bottom: 1px solid #b35cc2;
        }
        nav a i {
            margin-right: 0.3rem;
            font-size: 0.85rem;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
            padding: 0.75rem 0;
            font-size: 0.9rem;
            color: #6b5e72;
            border-bottom: 1px solid #e6d3e8;
            margin-bottom: 1.5rem;
            background: #f9f7f4;
        }
        .breadcrumb a {
            color: #6b5e72;
        }
        .breadcrumb a:hover {
            color: #7c3a8c;
        }
        .breadcrumb .sep {
            color: #b39cb8;
        }
        .breadcrumb .current {
            color: #2d1a36;
            font-weight: 600;
        }
        .hero-img-wrap {
            margin: 1.5rem 0 2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            background: #e6d3e8;
            position: relative;
        }
        .hero-img-wrap img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
            border-radius: 16px;
        }
        .hero-img-wrap .img-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(30, 20, 40, 0.7));
            color: #fff;
            padding: 1.5rem 1.2rem 0.8rem;
            font-size: 0.9rem;
            font-style: italic;
        }
        .search-section {
            background: #f3edf5;
            padding: 1.8rem 1.5rem;
            border-radius: 16px;
            margin: 2rem 0;
            border: 1px solid #e6d3e8;
        }
        .search-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 0.8rem;
        }
        .search-form input[type="text"] {
            flex: 1 1 240px;
            padding: 0.75rem 1.2rem;
            border: 2px solid #ddd6e0;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            transition: border 0.3s, box-shadow 0.3s;
            outline: none;
        }
        .search-form input[type="text"]:focus {
            border-color: #b35cc2;
            box-shadow: 0 0 0 4px rgba(179, 92, 194, 0.15);
        }
        .search-form button {
            padding: 0.75rem 1.8rem;
            background: #7c3a8c;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #9a4aad;
            transform: scale(1.02);
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        @media (max-width:700px) {
            .interact-grid {
                grid-template-columns: 1fr;
            }
        }
        .card {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem 1.8rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #eee8f0;
        }
        .card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .card form input,
        .card form textarea {
            padding: 0.7rem 1rem;
            border: 2px solid #ddd6e0;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border 0.3s;
            outline: none;
            background: #fcfafc;
        }
        .card form input:focus,
        .card form textarea:focus {
            border-color: #b35cc2;
        }
        .card form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .card form button {
            align-self: flex-start;
            padding: 0.65rem 1.8rem;
            background: #4a2d5a;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .card form button:hover {
            background: #6b3d7e;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 0.25rem;
            justify-content: flex-end;
            margin: 0.3rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ddd6e0;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
        }
        .star-rating label:hover {
            transform: scale(1.15);
        }
        friend-link {
            display: block;
            padding: 1.5rem 0 0.5rem;
            border-top: 2px solid #e6d3e8;
            margin-top: 2rem;
        }
        friend-link .fl-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem 1.5rem;
            align-items: center;
            justify-content: center;
        }
        friend-link .fl-wrap a {
            padding: 0.3rem 0.6rem;
            font-size: 0.9rem;
            color: #4d3b54;
            background: #f3edf5;
            border-radius: 30px;
            transition: background 0.25s, color 0.25s;
            border: 1px solid transparent;
        }
        friend-link .fl-wrap a:hover {
            background: #d9c4de;
            color: #2d1a36;
            border-color: #b35cc2;
        }
        friend-link .fl-label {
            font-weight: 700;
            color: #3d2e44;
            font-size: 1rem;
            margin-right: 0.5rem;
        }
        footer {
            padding: 1.8rem 0 2.5rem;
            text-align: center;
            color: #6b5e72;
            font-size: 0.9rem;
            border-top: 2px solid #e6d3e8;
            margin-top: 2rem;
        }
        footer .copyright {
            margin-top: 1rem;
            font-size: 0.85rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem 1.5rem;
        }
        footer .copyright i {
            margin-right: 0.3rem;
        }
        @media (max-width: 760px) {
            body {
                padding: 0 0.75rem;
            }
            h1 {
                font-size: 1.7rem;
                padding-left: 0.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 0.75rem 0 0.5rem;
                gap: 0.15rem;
                background: #f9f7f4;
                border-top: 1px solid #e6d3e8;
                margin-top: 0.5rem;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 0.6rem 1rem;
                border-radius: 12px;
                width: 100%;
            }
            .breadcrumb {
                font-size: 0.8rem;
                gap: 0.2rem 0.4rem;
            }
            .search-form input[type="text"] {
                flex: 1 1 100%;
            }
            .card {
                padding: 1.2rem;
            }
            .star-rating label {
                font-size: 1.5rem;
            }
        }
        @media (min-width: 761px) {
            nav {
                display: flex !important;
            }
            .nav-toggle {
                display: none !important;
            }
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .data-table th {
            background: #4a2d5a;
            color: #fff;
            padding: 0.75rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #eee8f0;
            background: #fff;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f8f2fa;
        }
        .tip-box {
            background: #f0eaf3;
            border-radius: 14px;
            padding: 1.2rem 1.5rem;
            margin: 1.5rem 0;
            border-left: 6px solid #b35cc2;
        }
        .tip-box strong {
            color: #3d2e44;
        }
        .update-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #e6d3e8;
            padding: 0.25rem 1rem 0.25rem 0.75rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #2d1a36;
            font-weight: 500;
            margin-bottom: 1rem;
        }
        .update-badge i {
            color: #7c3a8c;
        }
        .emoji-big {
            font-size: 1.4em;
            display: inline-block;
            margin-right: 0.2rem;
        }
        .tag {
            display: inline-block;
            background: #e6d3e8;
            padding: 0.15rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #3d2e44;
            font-weight: 500;
        }
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
