        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #0f0f1a;
            color: #e0e0e0;
            line-height: 1.7;
            min-height: 100vh;
            padding: 0 1rem;
        }
        a {
            color: #7aa2f7;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #bb9af7;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.3rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #16162a;
            border-radius: 1.5rem;
            padding: 0 1.5rem 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
        }
        .site-header {
            padding: 1.2rem 0 0.8rem;
            border-bottom: 2px solid #2a2a4a;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f72585, #b5179e, #7aa2f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: inline-block;
        }
        .my-logo:hover {
            text-decoration: none;
            filter: brightness(1.2);
        }
        .logo-sub {
            font-size: 0.7rem;
            color: #8888aa;
            display: block;
            font-weight: 400;
            -webkit-text-fill-color: #8888aa;
            letter-spacing: 1px;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #e0e0e0;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: 0.4rem;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #2a2a4a;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.2rem 0.8rem;
        }
        .main-nav a {
            color: #c0c0d0;
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 0.4rem;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .main-nav a:hover {
            background: #2a2a4a;
            color: #fff;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.3rem;
            font-size: 0.85rem;
        }
        .breadcrumb {
            padding: 0.8rem 0 0.2rem;
            font-size: 0.85rem;
            color: #8888aa;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            list-style: none;
        }
        .breadcrumb li {
            display: inline;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #555;
        }
        .breadcrumb a {
            color: #7aa2f7;
        }
        .breadcrumb .active {
            color: #bb9af7;
        }
        .hero {
            padding: 2rem 0 1.5rem;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 900;
            background: linear-gradient(135deg, #f72585, #b5179e, #7aa2f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 0.8rem;
        }
        .hero p {
            font-size: 1.15rem;
            color: #b0b0cc;
            max-width: 750px;
            margin: 0 auto 1.5rem;
        }
        .hero-image {
            border-radius: 1rem;
            margin: 1.5rem auto;
            max-width: 850px;
            box-shadow: 0 10px 40px rgba(247, 37, 133, 0.25);
            border: 2px solid #2a2a4a;
        }
        .search-form {
            display: flex;
            max-width: 520px;
            margin: 1.2rem auto 0.5rem;
            gap: 0.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 0.75rem 1.2rem;
            border-radius: 2rem;
            border: 2px solid #2a2a4a;
            background: #0f0f1a;
            color: #e0e0e0;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            border-color: #7aa2f7;
        }
        .search-form button {
            padding: 0.75rem 1.8rem;
            border-radius: 2rem;
            border: none;
            background: linear-gradient(135deg, #f72585, #b5179e);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .search-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(247, 37, 133, 0.4);
        }
        .content {
            padding: 1.5rem 0;
        }
        .content h2 {
            font-size: 1.9rem;
            font-weight: 800;
            color: #bb9af7;
            margin: 2.5rem 0 1rem;
            border-left: 5px solid #f72585;
            padding-left: 1rem;
        }
        .content h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #7aa2f7;
            margin: 1.8rem 0 0.8rem;
        }
        .content h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #c0caf5;
            margin: 1.2rem 0 0.5rem;
        }
        .content p {
            margin-bottom: 1rem;
            text-align: justify;
        }
        .content ul,
        .content ol {
            margin-bottom: 1rem;
        }
        .highlight-box {
            background: #1e1e3a;
            border-radius: 1rem;
            padding: 1.5rem 2rem;
            margin: 1.5rem 0;
            border-left: 6px solid #f72585;
        }
        .highlight-box strong {
            color: #f72585;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1rem;
            list-style: none;
            padding: 0;
            margin: 1rem 0;
        }
        .link-list-inline li {
            margin: 0;
        }
        .link-list-inline a {
            background: #1e1e3a;
            padding: 0.3rem 1rem;
            border-radius: 2rem;
            font-size: 0.9rem;
            border: 1px solid #2a2a4a;
            transition: background 0.2s, border-color 0.2s;
        }
        .link-list-inline a:hover {
            background: #2a2a4a;
            border-color: #7aa2f7;
            text-decoration: none;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a1a30;
            border-radius: 0.8rem;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid #2a2a4a;
        }
        th {
            background: #2a2a4a;
            color: #bb9af7;
            font-weight: 700;
        }
        tr:hover td {
            background: #222244;
        }
        .review-section {
            background: #1a1a30;
            border-radius: 1.2rem;
            padding: 2rem;
            margin: 2.5rem 0;
            border: 1px solid #2a2a4a;
        }
        .review-section h2 {
            margin-top: 0;
            border-left-color: #7aa2f7;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 1.8rem;
            margin: 0.8rem 0 1.2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #444466;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c842;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 0.8rem;
            border: 2px solid #2a2a4a;
            background: #0f0f1a;
            color: #e0e0e0;
            font-size: 1rem;
            min-height: 100px;
            resize: vertical;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .comment-form textarea:focus {
            border-color: #7aa2f7;
        }
        .comment-form .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 0.8rem 0;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 150px;
            padding: 0.7rem 1rem;
            border-radius: 0.6rem;
            border: 2px solid #2a2a4a;
            background: #0f0f1a;
            color: #e0e0e0;
            outline: none;
        }
        .comment-form .form-row input:focus {
            border-color: #7aa2f7;
        }
        .comment-form button {
            padding: 0.7rem 2.2rem;
            border-radius: 2rem;
            border: none;
            background: linear-gradient(135deg, #7aa2f7, #b5179e);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .comment-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(122, 162, 247, 0.4);
        }
        .site-footer {
            padding: 2rem 0 1rem;
            border-top: 2px solid #2a2a4a;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-bottom: 1.5rem;
        }
        .footer-grid h4 {
            color: #bb9af7;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .footer-grid a {
            display: block;
            padding: 0.2rem 0;
            font-size: 0.9rem;
        }
        friend-link {
            display: block;
            padding: 1rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.8rem 0.2rem 0;
            color: #7aa2f7;
        }
        .copyright {
            text-align: center;
            padding: 1rem 0 0.5rem;
            font-size: 0.85rem;
            color: #666688;
            border-top: 1px solid #222244;
        }
        .copyright strong {
            color: #8888aa;
        }
        @media (max-width: 820px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 1rem 0 0.5rem;
                gap: 0.3rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                padding: 0.5rem 0.8rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .content h2 {
                font-size: 1.5rem;
            }
            .content h3 {
                font-size: 1.2rem;
            }
            .container {
                padding: 0 1rem 1.5rem;
                border-radius: 1rem;
            }
            .review-section {
                padding: 1.2rem;
            }
            .star-rating {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.5rem;
            }
            .container {
                padding: 0 0.8rem 1rem;
                border-radius: 0.8rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .hero p {
                font-size: 0.95rem;
            }
            .search-form input {
                font-size: 0.9rem;
                padding: 0.6rem 1rem;
            }
            .search-form button {
                font-size: 0.9rem;
                padding: 0.6rem 1.4rem;
            }
            .content h2 {
                font-size: 1.2rem;
            }
            .content h3 {
                font-size: 1.05rem;
            }
            .highlight-box {
                padding: 1rem 1.2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
        }
        .anchor-offset {
            scroll-margin-top: 80px;
        }
        body {
            animation: fadeIn 0.5s ease;
        }
        @keyframes fadeIn {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }
        .eeat-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #1e1e3a;
            padding: 0.3rem 1rem;
            border-radius: 2rem;
            font-size: 0.8rem;
            color: #8888aa;
            border: 1px solid #2a2a4a;
            margin: 1rem 0;
        }
        .eeat-badge i {
            color: #f5c842;
        }
        .last-updated {
            color: #8888aa;
            font-size: 0.85rem;
            text-align: right;
            padding: 0.5rem 0;
        }
        .last-updated i {
            margin-right: 0.3rem;
        }
