        *,
        *::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, 'Helvetica Neue', Arial, sans-serif;
            background: #faf7f2;
            color: #2d2a24;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #c44569;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #a93255;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #1f1b16;
            margin-top: 1.8em;
            margin-bottom: 0.6em;
        }
        h1 {
            font-size: 2.6rem;
            margin-top: 0.4em;
        }
        h2 {
            font-size: 2.0rem;
            border-left: 6px solid #c44569;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2em;
        }
        ul,
        ol {
            margin-bottom: 1.4em;
            padding-left: 1.8em;
        }
        li {
            margin-bottom: 0.4em;
        }
        strong {
            color: #c44569;
            font-weight: 700;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .content-wrapper {
            max-width: 860px;
            margin: 0 auto;
        }
        .site-header {
            background: linear-gradient(135deg, #2d1b2e, #4a2c4a);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 0 20px;
        }
        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            color: #ffd9e6;
            letter-spacing: 1px;
            text-shadow: 0 2px 8px rgba(255, 100, 150, 0.3);
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #fff0f5;
        }
        .my-logo i {
            font-size: 1.4rem;
            color: #f8a5c2;
        }
        .nav-desktop {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-desktop a {
            color: #f0e6ed;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.25s ease;
        }
        .nav-desktop a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #ffd9e6;
            text-decoration: none;
        }
        .nav-desktop a i {
            margin-right: 6px;
            font-size: 0.8rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffd9e6;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-mobile {
            display: none;
            width: 100%;
            background: rgba(45, 27, 46, 0.98);
            padding: 16px 20px 24px;
            border-radius: 0 0 20px 20px;
            flex-direction: column;
            gap: 6px;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #f0e6ed;
            padding: 10px 16px;
            border-radius: 12px;
            font-size: 0.95rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .nav-mobile a:hover {
            background: rgba(255, 255, 255, 0.08);
            text-decoration: none;
        }
        .nav-mobile a i {
            width: 24px;
            text-align: center;
            margin-right: 8px;
        }
        .breadcrumb-wrap {
            background: #f1ebe4;
            padding: 12px 0;
            border-bottom: 1px solid #e5ddd4;
        }
        .breadcrumb {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            font-size: 0.85rem;
            color: #6b5e52;
        }
        .breadcrumb a {
            color: #8a6d7a;
        }
        .breadcrumb a:hover {
            color: #c44569;
        }
        .breadcrumb span {
            margin: 0 6px;
            color: #a09184;
        }
        .hero {
            background: linear-gradient(145deg, #f8f0ea, #f0e6dd);
            padding: 50px 0 40px;
            border-bottom: 2px solid #e5ddd4;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.9rem;
            background: linear-gradient(135deg, #c44569, #e17055);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.3em;
        }
        .hero .subtitle {
            font-size: 1.15rem;
            color: #5f4e44;
            max-width: 700px;
            margin: 0 auto 0.6em;
        }
        .hero .meta-info {
            font-size: 0.9rem;
            color: #8a7a6e;
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hero .meta-info i {
            margin-right: 6px;
            color: #c44569;
        }
        .search-section {
            background: #fffbf7;
            padding: 30px 0;
            border-bottom: 1px solid #ede5db;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
            padding: 0 20px;
        }
        .search-form input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid #e5ddd4;
            border-radius: 50px;
            font-size: 1rem;
            background: white;
            transition: border 0.3s;
            outline: none;
        }
        .search-form input:focus {
            border-color: #c44569;
            box-shadow: 0 0 0 4px rgba(196, 69, 105, 0.12);
        }
        .search-form button {
            background: #c44569;
            color: white;
            border: none;
            border-radius: 50px;
            padding: 0 32px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #a93255;
        }
        .main-content {
            padding: 50px 0 60px;
        }
        .main-content .content-wrapper {
            background: white;
            padding: 40px 50px;
            border-radius: 24px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
        }
        .feature-image-wrap {
            margin: 1.8em 0 2.4em;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
        }
        .feature-image-wrap img {
            width: 100%;
            object-fit: cover;
        }
        .feature-image-wrap figcaption {
            padding: 12px 18px;
            background: #f8f3ee;
            font-size: 0.85rem;
            color: #6b5e52;
            font-style: italic;
        }
        .related-links {
            background: #f8f3ee;
            padding: 20px 24px;
            border-radius: 16px;
            margin: 2em 0;
            border-left: 5px solid #c44569;
        }
        .related-links h4 {
            margin-top: 0;
            font-size: 1.1rem;
            color: #2d1b2e;
        }
        .related-links ul {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
        .related-links li {
            margin-bottom: 0;
        }
        .related-links a {
            display: inline-block;
            padding: 4px 14px;
            background: white;
            border-radius: 30px;
            font-size: 0.85rem;
            border: 1px solid #e5ddd4;
            transition: all 0.2s;
        }
        .related-links a:hover {
            background: #c44569;
            color: white;
            border-color: #c44569;
            text-decoration: none;
        }
        .comments-section {
            margin-top: 3.5em;
            padding-top: 2.5em;
            border-top: 2px solid #f0e8e0;
        }
        .comments-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e5ddd4;
            border-radius: 16px;
            font-size: 0.95rem;
            font-family: inherit;
            resize: vertical;
            min-height: 110px;
            transition: border 0.3s;
            outline: none;
            background: #fcfaf8;
        }
        .comment-form textarea:focus {
            border-color: #c44569;
            box-shadow: 0 0 0 4px rgba(196, 69, 105, 0.08);
        }
        .comment-form .form-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
            align-items: center;
        }
        .comment-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 12px 16px;
            border: 2px solid #e5ddd4;
            border-radius: 50px;
            font-size: 0.9rem;
            outline: none;
            background: #fcfaf8;
        }
        .comment-form input[type="text"]:focus {
            border-color: #c44569;
        }
        .comment-form button {
            background: #c44569;
            color: white;
            border: none;
            border-radius: 50px;
            padding: 12px 32px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            font-size: 0.95rem;
        }
        .comment-form button:hover {
            background: #a93255;
        }
        .rating-section {
            margin-top: 2em;
            padding: 20px 24px;
            background: #f8f3ee;
            border-radius: 16px;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px 28px;
        }
        .rating-section .stars {
            display: flex;
            gap: 6px;
            font-size: 1.7rem;
            color: #ddd0c4;
            cursor: pointer;
            transition: color 0.15s;
        }
        .rating-section .stars i {
            transition: color 0.15s, transform 0.15s;
        }
        .rating-section .stars i:hover,
        .rating-section .stars i.active {
            color: #f7b731;
            transform: scale(1.12);
        }
        .rating-section .stars i.active {
            color: #f7b731;
        }
        .rating-section .rating-info {
            font-size: 0.95rem;
            color: #5f4e44;
        }
        .rating-section .rating-btn {
            background: #2d1b2e;
            color: white;
            border: none;
            border-radius: 50px;
            padding: 10px 28px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            font-size: 0.9rem;
        }
        .rating-section .rating-btn:hover {
            background: #4a2c4a;
        }
        .site-footer {
            background: linear-gradient(135deg, #1f1b16, #2d1b2e);
            color: #d4cbc2;
            padding: 50px 0 30px;
            margin-top: 40px;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        .footer-inner h4 {
            color: #f0e6ed;
            margin-top: 0;
            font-size: 1.1rem;
            border-left: 3px solid #c44569;
            padding-left: 12px;
        }
        .footer-inner p,
        .footer-inner a {
            color: #c4b8ae;
            font-size: 0.9rem;
        }
        .footer-inner a:hover {
            color: #f8a5c2;
        }
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 6px;
        }
        .footer-links a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .footer-links a i {
            font-size: 0.7rem;
            color: #c44569;
        }
        friend-link {
            display: block;
            grid-column: 1 / -1;
            background: rgba(255, 255, 255, 0.04);
            padding: 18px 24px;
            border-radius: 16px;
            margin-top: 16px;
            font-size: 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        friend-link a {
            color: #f0e6ed;
            margin: 0 6px;
            padding: 2px 10px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.06);
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: rgba(255, 255, 255, 0.12);
            text-decoration: none;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.8rem;
            color: #9a8e84;
        }
        @media (max-width: 820px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .main-content .content-wrapper {
                padding: 24px 18px;
                border-radius: 16px;
            }
            .hero h1 {
                font-size: 2.0rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            friend-link {
                text-align: center;
            }
            .rating-section {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
                padding: 12px;
            }
            .header-inner {
                height: 60px;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .related-links ul {
                flex-direction: column;
                gap: 6px;
            }
        }
        .emoji-lg {
            font-size: 1.3em;
            margin-right: 4px;
        }
        .highlight-box {
            background: #fcf0f4;
            padding: 18px 22px;
            border-radius: 16px;
            border-left: 5px solid #c44569;
            margin: 1.8em 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
            margin: 1.8em 0;
        }
        .stat-card {
            background: #f8f3ee;
            padding: 18px 14px;
            border-radius: 16px;
            text-align: center;
        }
        .stat-card .num {
            font-size: 2.0rem;
            font-weight: 800;
            color: #c44569;
            display: block;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #6b5e52;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.8em 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        table th {
            background: #2d1b2e;
            color: #ffd9e6;
            padding: 12px 14px;
            text-align: left;
        }
        table td {
            padding: 10px 14px;
            border-bottom: 1px solid #ede5db;
        }
        table tr:nth-child(even) {
            background: #fcfaf8;
        }
        .tag {
            display: inline-block;
            background: #f0e6ed;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.75rem;
            color: #5f4e44;
        }
