* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f8f4f0;
            color: #2d2a2e;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #9b5de5;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #7b2dbf;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
            padding: 18px 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;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f15bb5, #fee440);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 0.5px;
            text-shadow: 0 0 30px rgba(241, 91, 181, 0.3);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            background: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        nav {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: #e0e0e0;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        nav a:hover {
            background: rgba(241, 91, 181, 0.25);
            color: #fff;
            text-decoration: none;
            transform: translateY(-1px);
        }
        nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .breadcrumb {
            background: #fff8f5;
            padding: 12px 0;
            border-bottom: 1px solid #eee5e0;
            font-size: 0.88rem;
            color: #777;
        }
        .breadcrumb a {
            color: #9b5de5;
        }
        .breadcrumb a:hover {
            color: #7b2dbf;
        }
        .breadcrumb span {
            margin: 0 6px;
            color: #bbb;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #1a1a2e, #9b5de5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-top: 48px;
            margin-bottom: 16px;
            color: #1a1a2e;
            border-left: 6px solid #f15bb5;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-top: 32px;
            margin-bottom: 12px;
            color: #2d2a2e;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-top: 24px;
            margin-bottom: 8px;
            color: #444;
        }
        p {
            margin-bottom: 18px;
            color: #3a3539;
        }
        .content-highlight {
            background: #fff0f5;
            padding: 20px 24px;
            border-radius: 16px;
            border-left: 5px solid #f15bb5;
            margin: 24px 0;
        }
        .content-highlight strong {
            color: #9b5de5;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .featured-image-wrapper {
            margin: 32px 0 40px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
            background: #fff;
            padding: 12px;
        }
        .featured-image-wrapper img {
            width: 100%;
            border-radius: 10px;
        }
        .featured-image-wrapper figcaption {
            text-align: center;
            padding: 12px 0 4px;
            font-size: 0.9rem;
            color: #888;
            font-style: italic;
        }
        .search-section {
            background: linear-gradient(135deg, #f9f0ff, #ffe8f0);
            padding: 32px 28px;
            border-radius: 20px;
            margin: 40px 0;
            box-shadow: 0 6px 24px rgba(155, 93, 229, 0.12);
        }
        .search-section h3 {
            margin-top: 0;
            color: #1a1a2e;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #e4d5f0;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            background: #fff;
        }
        .search-form input:focus {
            border-color: #9b5de5;
        }
        .search-form button {
            background: #9b5de5;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form button:hover {
            background: #7b2dbf;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(155, 93, 229, 0.35);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0;
        }
        @media (max-width:768px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px 24px;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.06);
            border: 1px solid #f0e8e4;
        }
        .feedback-card h3 {
            margin-top: 0;
            color: #1a1a2e;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e4d5f0;
            border-radius: 14px;
            font-size: 0.95rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border 0.3s;
            background: #fcfaff;
        }
        .feedback-card textarea:focus {
            border-color: #9b5de5;
        }
        .feedback-card input[type="text"] {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e4d5f0;
            border-radius: 14px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
            background: #fcfaff;
            margin-top: 8px;
        }
        .feedback-card input[type="text"]:focus {
            border-color: #9b5de5;
        }
        .feedback-card .btn-submit {
            background: #1a1a2e;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
            margin-top: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .feedback-card .btn-submit:hover {
            background: #9b5de5;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(155, 93, 229, 0.3);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            margin: 12px 0;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .star-rating i {
            transition: all 0.2s;
        }
        .star-rating i.active,
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #fee440;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 14px;
            margin: 24px 0;
        }
        .links-grid a {
            background: #fff;
            padding: 14px 20px;
            border-radius: 14px;
            border: 1px solid #ede6f0;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.25s ease;
            font-weight: 500;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
        }
        .links-grid a:hover {
            background: #f5edff;
            border-color: #9b5de5;
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(155, 93, 229, 0.15);
            text-decoration: none;
        }
        .links-grid a i {
            color: #f15bb5;
            font-size: 1.1rem;
            width: 24px;
            text-align: center;
        }
        footer {
            background: #1a1a2e;
            color: #ccc;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        footer .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        footer a {
            color: #f5b0d8;
        }
        footer a:hover {
            color: #fff;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        @media (max-width:768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .footer-grid h4 {
            color: #fff;
            margin-top: 0;
            font-size: 1.15rem;
            border-left: 4px solid #f15bb5;
            padding-left: 12px;
        }
        .footer-links a {
            display: block;
            padding: 4px 0;
            font-size: 0.92rem;
        }
        .footer-links a i {
            margin-right: 8px;
            font-size: 0.7rem;
            color: #f15bb5;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.04);
            padding: 20px 24px;
            border-radius: 16px;
            margin: 16px 0 24px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 6px 14px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 30px;
            font-size: 0.9rem;
            transition: all 0.2s;
        }
        friend-link a:hover {
            background: rgba(241, 91, 181, 0.2);
            color: #fff;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 24px;
            font-size: 0.85rem;
            color: #999;
            letter-spacing: 0.3px;
        }
        .copyright strong {
            color: #ddd;
        }
        .last-update {
            display: inline-block;
            background: rgba(241, 91, 181, 0.12);
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #f5b0d8;
            margin-top: 8px;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 16px;
                gap: 4px;
            }
            nav.show {
                display: flex;
            }
            nav a {
                width: 100%;
                padding: 12px 16px;
                border-radius: 12px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.7rem;
            }
            .search-form input {
                min-width: 140px;
            }
            .feedback-card {
                padding: 20px 16px;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f0ebe8;
        }
        ::-webkit-scrollbar-thumb {
            background: #c4b0d6;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #9b5de5;
        }
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0 28px;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .info-table th {
            background: #1a1a2e;
            color: #fff;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        .info-table td {
            padding: 12px 18px;
            border-bottom: 1px solid #eee5e0;
            background: #fff;
        }
        .info-table tr:last-child td {
            border-bottom: none;
        }
        .info-table tr:hover td {
            background: #f9f4ff;
        }
        .tip-box {
            background: #eef9ff;
            border-radius: 16px;
            padding: 20px 24px;
            border-left: 6px solid #00b4d8;
            margin: 24px 0;
        }
        .tip-box i {
            color: #00b4d8;
            margin-right: 8px;
        }
