* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #FFF8F0;
            color: #2D3436;
            line-height: 1.8;
            font-size: 1.05rem;
        }
        a {
            color: #D6336C;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #9B2D4F;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        header {
            background: linear-gradient(135deg, #FFDEE9 0%, #B5FFFC 100%);
            padding: 16px 0;
            border-bottom: 4px solid #FF6B8A;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(214, 51, 108, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #FF6B8A, #FF8E53);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 12px rgba(255, 107, 138, 0.2);
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #FF6B8A;
            margin-right: 6px;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #D6336C;
            cursor: pointer;
            padding: 6px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(214, 51, 108, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            padding: 8px 18px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            color: #4A235A;
            background: rgba(255, 255, 255, 0.5);
            transition: all 0.25s;
            border: 1px solid transparent;
        }
        .nav-menu a:hover {
            background: #fff;
            border-color: #FF6B8A;
            color: #D6336C;
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 138, 0.2);
        }
        .nav-menu a i {
            margin-right: 6px;
        }
        .breadcrumb {
            background: #FFF0F0;
            padding: 12px 24px;
            border-radius: 40px;
            margin: 20px 0 10px;
            font-size: 0.9rem;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            border: 1px solid #FFD6D6;
        }
        .breadcrumb a {
            color: #7C4DFF;
        }
        .breadcrumb span {
            color: #888;
        }
        .breadcrumb .current {
            color: #D6336C;
            font-weight: 600;
        }
        main {
            padding: 30px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #2D1B36;
            margin: 20px 0 16px;
            line-height: 1.2;
            background: linear-gradient(135deg, #FF6B8A, #7C4DFF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #2D1B36;
            margin: 48px 0 18px;
            padding-bottom: 8px;
            border-bottom: 4px solid #FFD6E0;
            position: relative;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 80px;
            height: 4px;
            background: #FF6B8A;
            border-radius: 4px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #3D2A4A;
            margin: 36px 0 14px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #5A3D6A;
            margin: 24px 0 10px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #3D3D3D;
        }
        .highlight {
            background: linear-gradient(120deg, #FFF0F5 0%, #FFF0F5 40%, #FFE4EC 100%);
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.6rem;
            margin-right: 6px;
        }
        .info-box {
            background: #FFFFFF;
            border-left: 6px solid #FF6B8A;
            padding: 24px 28px;
            border-radius: 20px;
            margin: 28px 0;
            box-shadow: 0 8px 30px rgba(255, 107, 138, 0.08);
        }
        .info-box.tip {
            border-left-color: #7C4DFF;
            background: #F8F4FF;
        }
        .info-box.warning {
            border-left-color: #FF8E53;
            background: #FFF8F0;
        }
        .info-box.stat {
            border-left-color: #448AFF;
            background: #F0F6FF;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin: 30px 0;
        }
        .card {
            background: #fff;
            border-radius: 24px;
            padding: 28px 22px;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
            border: 1px solid #F5E8EE;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(255, 107, 138, 0.12);
            border-color: #FFD6E0;
        }
        .card i {
            font-size: 2.4rem;
            color: #FF6B8A;
            margin-bottom: 12px;
        }
        .card h3 {
            margin-top: 0;
        }
        .card p {
            font-size: 0.98rem;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 20px;
            background: #FFF5F5;
            font-size: 0.9rem;
            color: #666;
            font-style: italic;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 16px;
            margin: 20px 0 30px;
            padding: 0;
            list-style: none;
        }
        .link-list li a {
            background: #F5E8EE;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: all 0.2s;
            display: inline-block;
        }
        .link-list li a:hover {
            background: #FFD6E0;
            color: #9B2D4F;
            text-decoration: none;
            transform: scale(1.02);
        }
        .form-section {
            background: #fff;
            border-radius: 28px;
            padding: 32px 36px;
            margin: 40px 0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
            border: 1px solid #F0E4EC;
        }
        .form-section h2 i {
            color: #FF6B8A;
            margin-right: 10px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: #2D1B36;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #E8DDE6;
            border-radius: 16px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.2s;
            background: #FAFAFA;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #FF6B8A;
            outline: none;
            background: #fff;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            padding: 14px 36px;
            border: none;
            border-radius: 40px;
            font-size: 1.05rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-primary {
            background: linear-gradient(135deg, #FF6B8A, #FF8E53);
            color: #fff;
            box-shadow: 0 6px 20px rgba(255, 107, 138, 0.25);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(255, 107, 138, 0.35);
        }
        .btn-secondary {
            background: #F0E4EC;
            color: #4A235A;
        }
        .btn-secondary:hover {
            background: #E0D0DC;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.15s;
            color: #ddd;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #FFB800;
        }
        .comment-item {
            padding: 18px 0;
            border-bottom: 1px solid #F0E4EC;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: 700;
            color: #2D1B36;
        }
        .comment-date {
            font-size: 0.85rem;
            color: #999;
            margin-left: 12px;
        }
        .comment-text {
            margin-top: 6px;
            color: #3D3D3D;
        }
        footer {
            background: #2D1B36;
            color: #EDE0F0;
            padding: 48px 0 28px;
            margin-top: 60px;
            border-radius: 40px 40px 0 0;
        }
        footer a {
            color: #FFB0C8;
        }
        footer a:hover {
            color: #FFD6E0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-grid h4 {
            color: #FFD6E0;
            margin-bottom: 16px;
            font-size: 1.1rem;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid ul li {
            margin-bottom: 8px;
        }
        .footer-grid ul li a {
            font-size: 0.95rem;
            opacity: 0.85;
        }
        .footer-grid ul li a:hover {
            opacity: 1;
            text-decoration: underline;
        }
        friend-link {
            display: block;
            padding: 20px 0 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 20px;
            font-size: 0.95rem;
        }
        friend-link a {
            margin: 0 8px 0 4px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            font-size: 0.9rem;
            opacity: 0.7;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 16px;
                gap: 6px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                text-align: center;
                padding: 12px;
            }
            .form-section {
                padding: 20px 18px;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 10px 16px;
                flex-wrap: wrap;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            footer {
                padding: 32px 16px 20px;
                border-radius: 24px 24px 0 0;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .last-updated {
            display: inline-block;
            background: #FFF0F5;
            padding: 6px 20px;
            border-radius: 40px;
            font-size: 0.9rem;
            color: #7C4DFF;
            font-weight: 500;
            margin-bottom: 20px;
        }
        .last-updated i {
            margin-right: 6px;
        }
