        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f4f6fa;
            color: #1e1e2f;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #c0392b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #e74c3c;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #0c0c1a;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0c0c1a 0%, #1a1a3e 100%);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #fff;
            background: linear-gradient(135deg, #e94560, #c0392b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(233, 69, 96, 0.3);
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.04);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: rgba(255, 255, 255, 0.5);
            display: block;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .nav-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.25rem 0.5rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            color: rgba(255, 255, 255, 0.85);
            padding: 0.5rem 0.9rem;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.3s, color 0.3s;
            display: inline-block;
        }
        .nav-list li a:hover {
            background: rgba(233, 69, 96, 0.2);
            color: #fff;
            text-decoration: none;
        }
        .nav-list li a i {
            margin-right: 0.35rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #eef0f5;
            padding: 0.7rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #dce0e8;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #c0392b;
        }
        .breadcrumb span {
            color: #888;
            margin: 0 0.2rem;
        }
        .breadcrumb .current {
            color: #1e1e2f;
            font-weight: 600;
        }
        .wiki-content {
            padding: 2.5rem 0 3rem;
        }
        .wiki-content h1 {
            font-size: 2.6rem;
            margin-bottom: 0.5rem;
            border-left: 6px solid #e94560;
            padding-left: 1.2rem;
            background: linear-gradient(135deg, #0c0c1a, #1a1a3e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .wiki-content .subhead {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 2rem;
            padding-left: 1.8rem;
        }
        .wiki-content .last-updated {
            display: inline-block;
            background: #e8ecf4;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #444;
            margin-bottom: 1.8rem;
        }
        .wiki-content .last-updated i {
            margin-right: 0.4rem;
            color: #e94560;
        }
        .featured-img-wrap {
            margin: 2rem 0 2.5rem;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
            background: #fff;
            padding: 0.5rem;
        }
        .featured-img-wrap img {
            border-radius: 16px;
            width: 100%;
            object-fit: cover;
        }
        .featured-img-wrap figcaption {
            padding: 0.75rem 1rem 0.5rem;
            font-size: 0.85rem;
            color: #666;
            font-style: italic;
            text-align: center;
        }
        .wiki-section {
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 2px solid #e8ecf4;
        }
        .wiki-section h2 {
            font-size: 2rem;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .wiki-section h2 i {
            color: #e94560;
            font-size: 1.6rem;
        }
        .wiki-section h3 {
            font-size: 1.4rem;
            margin: 1.8rem 0 0.8rem;
            color: #1a1a3e;
        }
        .wiki-section h4 {
            font-size: 1.15rem;
            margin: 1.2rem 0 0.5rem;
            color: #2c2c4a;
            font-weight: 600;
        }
        .wiki-section p {
            margin-bottom: 1rem;
            color: #2d2d40;
        }
        .wiki-section ul,
        .wiki-section ol {
            margin-bottom: 1.2rem;
        }
        .wiki-section li {
            margin-bottom: 0.4rem;
        }
        .highlight-box {
            background: #eef2ff;
            border-left: 5px solid #e94560;
            padding: 1.2rem 1.5rem;
            border-radius: 12px;
            margin: 1.5rem 0;
        }
        .highlight-box strong {
            color: #c0392b;
        }
        .tip-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .tip-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #eef0f5;
        }
        .tip-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
        }
        .tip-card h4 {
            margin-top: 0;
            color: #c0392b;
        }
        .tip-card h4 i {
            margin-right: 0.5rem;
        }
        .search-section {
            background: #fff;
            border-radius: 20px;
            padding: 2rem;
            margin: 3rem 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f5;
        }
        .search-section h2 {
            margin-top: 0;
            border-top: none;
            padding-top: 0;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 1rem;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 0.85rem 1.2rem;
            border: 2px solid #dce0e8;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            border-color: #e94560;
        }
        .search-form button {
            padding: 0.85rem 2rem;
            background: linear-gradient(135deg, #e94560, #c0392b);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 20px rgba(233, 69, 96, 0.3);
        }
        .rating-area {
            background: #fff;
            border-radius: 20px;
            padding: 2rem;
            margin: 2rem 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f5;
            text-align: center;
        }
        .rating-area h3 {
            margin-top: 0;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 2.2rem;
            cursor: pointer;
            direction: rtl;
        }
        .stars input {
            display: none;
        }
        .stars label {
            color: #ddd;
            transition: color 0.2s, transform 0.2s;
            cursor: pointer;
        }
        .stars label:hover,
        .stars label:hover~label,
        .stars input:checked~label {
            color: #f1c40f;
            transform: scale(1.1);
        }
        .rating-area .score-btn {
            padding: 0.7rem 2.2rem;
            background: #1a1a3e;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .rating-area .score-btn:hover {
            background: #2c2c5e;
            transform: scale(1.02);
        }
        .rating-feedback {
            margin-top: 0.8rem;
            font-size: 0.9rem;
            color: #27ae60;
            font-weight: 600;
            min-height: 1.6rem;
        }
        .comment-section {
            background: #fff;
            border-radius: 20px;
            padding: 2rem;
            margin: 2rem 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f5;
        }
        .comment-section h3 {
            margin-top: 0;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 0.85rem 1.2rem;
            border: 2px solid #dce0e8;
            border-radius: 12px;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #e94560;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button {
            align-self: flex-start;
            padding: 0.8rem 2.2rem;
            background: linear-gradient(135deg, #1a1a3e, #2c2c5e);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form button:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 20px rgba(26, 26, 62, 0.3);
        }
        .comment-list {
            margin-top: 2rem;
        }
        .comment-item {
            padding: 1rem 1.2rem;
            border-bottom: 1px solid #eef0f5;
            border-radius: 12px;
            background: #f9faff;
            margin-bottom: 0.8rem;
        }
        .comment-item strong {
            color: #c0392b;
        }
        .comment-item .date {
            font-size: 0.75rem;
            color: #999;
            margin-left: 1rem;
        }
        .comment-item p {
            margin: 0.3rem 0 0;
        }
        friend-link {
            display: block;
            background: #0c0c1a;
            color: rgba(255, 255, 255, 0.8);
            padding: 2rem 0;
            margin-top: 3rem;
            text-align: center;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.2rem 2.5rem;
        }
        friend-link a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            font-weight: 500;
            transition: color 0.3s;
        }
        friend-link a:hover {
            color: #e94560;
            text-decoration: none;
        }
        friend-link .fl-label {
            width: 100%;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .site-footer {
            background: #06060e;
            color: rgba(255, 255, 255, 0.6);
            padding: 1.5rem 0;
            text-align: center;
            font-size: 0.85rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .site-footer a {
            color: rgba(255, 255, 255, 0.6);
        }
        .site-footer a:hover {
            color: #e94560;
        }
        .site-footer .copyright {
            margin-top: 0.3rem;
            letter-spacing: 0.3px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-wrapper {
                display: none;
                width: 100%;
                margin-top: 1rem;
            }
            #nav-toggle:checked~.nav-wrapper {
                display: block;
            }
            .nav-list {
                flex-direction: column;
                gap: 0.3rem;
                background: rgba(255, 255, 255, 0.04);
                padding: 0.8rem;
                border-radius: 16px;
            }
            .nav-list li a {
                display: block;
                padding: 0.6rem 1rem;
            }
            .header-inner {
                align-items: center;
            }
            .wiki-content h1 {
                font-size: 1.8rem;
                padding-left: 0.8rem;
            }
            .wiki-content .subhead {
                padding-left: 1rem;
                font-size: 0.95rem;
            }
            .wiki-section h2 {
                font-size: 1.5rem;
            }
            .wiki-section h3 {
                font-size: 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                min-width: unset;
            }
            .stars {
                font-size: 1.8rem;
            }
            .breadcrumb .container {
                font-size: 0.75rem;
            }
            .tip-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .rating-area,
            .comment-section,
            .search-section {
                padding: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            .wiki-content h1 {
                font-size: 1.5rem;
            }
            .wiki-section h2 {
                font-size: 1.3rem;
            }
            .featured-img-wrap {
                margin: 1.2rem 0;
            }
            .highlight-box {
                padding: 1rem;
            }
            .comment-form button,
            .rating-area .score-btn,
            .search-form button {
                width: 100%;
                justify-content: center;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }
            *,
            *::before,
            *::after {
                transition: none !important;
                animation: none !important;
            }
        }
