        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f8f4f0;
            color: #2d2a2e;
            line-height: 1.8;
            padding: 0 16px;
            max-width: 1200px;
            margin: 0 auto;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b34180;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #6b2d5a;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #1e1a22;
            margin: 1.6rem 0 0.8rem;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2d1f3a;
            margin: 2.4rem 0 0.8rem;
            border-bottom: 3px solid #e8c7d8;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            color: #3f2b4e;
            margin: 1.6rem 0 0.5rem;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #553a64;
            margin: 1.2rem 0 0.3rem;
        }
        p {
            margin-bottom: 1.1rem;
        }
        .text-muted {
            color: #6b5f6e;
            font-size: 0.92rem;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 0;
            border-bottom: 2px solid #e0d3dc;
            position: relative;
            background: #f8f4f0;
            z-index: 20;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            color: #2d1f3a;
            text-decoration: none;
            letter-spacing: -0.3px;
            background: linear-gradient(135deg, #b34180, #6b2d5a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        .my-logo i {
            -webkit-text-fill-color: #b34180;
            margin-right: 4px;
        }
        .nav-links {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-links li a {
            display: block;
            padding: 0.5rem 1rem;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.93rem;
            color: #2d2a2e;
            transition: background 0.2s, color 0.2s;
        }
        .nav-links li a:hover {
            background: #e8c7d8;
            color: #1e1a22;
            text-decoration: none;
        }
        .nav-links li a.active {
            background: #b34180;
            color: #fff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.6rem;
            color: #2d1f3a;
            cursor: pointer;
            padding: 0 0.3rem;
            z-index: 25;
        }
        .hamburger:focus {
            outline: 2px solid #b34180;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
            padding: 0.6rem 0 0.2rem;
            font-size: 0.88rem;
            color: #6b5f6e;
            background: #f8f4f0;
        }
        .breadcrumb a {
            color: #b34180;
        }
        .breadcrumb .sep {
            color: #b8a8b4;
        }
        .search-section {
            background: #fff;
            border-radius: 20px;
            padding: 1.6rem 1.8rem;
            margin: 1.8rem 0 1.2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .search-section label {
            font-weight: 600;
            color: #2d1f3a;
            font-size: 1.05rem;
        }
        .search-section form {
            display: flex;
            flex: 1;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1.2rem;
            border: 2px solid #e0d3dc;
            border-radius: 40px;
            font-size: 0.95rem;
            background: #fcfafb;
            transition: border 0.2s;
        }
        .search-section input[type="text"]:focus {
            border-color: #b34180;
            outline: none;
            background: #fff;
        }
        .search-section button {
            padding: 0.7rem 1.6rem;
            background: #b34180;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-section button:hover {
            background: #6b2d5a;
        }
        .content-area {
            background: #fff;
            border-radius: 24px;
            padding: 2rem 2.4rem;
            margin: 1.2rem 0 2rem;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.04);
        }
        .content-area p {
            text-align: justify;
        }
        .featured-image {
            border-radius: 18px;
            margin: 1.6rem 0 2rem;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
            width: 100%;
        }
        .last-updated {
            display: inline-block;
            background: #f0e8ed;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #553a64;
            margin-bottom: 1rem;
        }
        .rating-section {
            background: #fcfafb;
            border-radius: 20px;
            padding: 1.4rem 1.8rem;
            margin: 2rem 0 1.2rem;
            border: 1px solid #e8dce4;
        }
        .rating-section form {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.8rem 1.5rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.2rem;
            direction: rtl;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.15s;
        }
        .rating-stars input:checked~label,
        .rating-stars label:hover,
        .rating-stars label:hover~label {
            color: #f5b342;
        }
        .rating-section button {
            padding: 0.5rem 1.8rem;
            background: #b34180;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-section button:hover {
            background: #6b2d5a;
        }
        .comments-section {
            background: #fcfafb;
            border-radius: 20px;
            padding: 1.4rem 1.8rem;
            margin: 1.2rem 0 2rem;
            border: 1px solid #e8dce4;
        }
        .comments-section form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .comments-section input,
        .comments-section textarea {
            padding: 0.7rem 1.2rem;
            border: 2px solid #e0d3dc;
            border-radius: 16px;
            font-size: 0.95rem;
            background: #fff;
            transition: border 0.2s;
            font-family: inherit;
        }
        .comments-section input:focus,
        .comments-section textarea:focus {
            border-color: #b34180;
            outline: none;
        }
        .comments-section textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comments-section button {
            align-self: flex-start;
            padding: 0.6rem 2rem;
            background: #b34180;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comments-section button:hover {
            background: #6b2d5a;
        }
        .site-footer {
            border-top: 2px solid #e0d3dc;
            padding: 2rem 0 1.5rem;
            margin-top: 2rem;
            font-size: 0.92rem;
            color: #4a3d4a;
        }
        .site-footer friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.6rem;
            background: #f0eaee;
            padding: 1rem 1.4rem;
            border-radius: 16px;
            margin-bottom: 1.4rem;
            font-weight: 500;
        }
        .site-footer friend-link a {
            color: #b34180;
        }
        .site-footer friend-link a:hover {
            color: #6b2d5a;
        }
        .copyright {
            text-align: center;
            padding-top: 0.6rem;
            border-top: 1px solid #e0d3dc;
            color: #6b5f6e;
            font-size: 0.85rem;
        }
        .highlight-box {
            background: #f5eef3;
            border-left: 4px solid #b34180;
            padding: 1rem 1.5rem;
            border-radius: 0 16px 16px 0;
            margin: 1.2rem 0;
        }
        .highlight-box strong {
            color: #2d1f3a;
        }
        .emoji-big {
            font-size: 1.3rem;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 10px;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .content-area {
                padding: 1.2rem 1rem;
                border-radius: 18px;
            }
            .search-section {
                padding: 1rem 1.2rem;
                flex-direction: column;
                align-items: stretch;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section input[type="text"] {
                min-width: unset;
            }
            .rating-section form {
                flex-direction: column;
                align-items: flex-start;
            }
            .site-header {
                padding: 0.8rem 0;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fff;
                padding: 0.8rem 0 1.2rem;
                border-radius: 0 0 20px 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                margin-top: 0.6rem;
                gap: 0;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links li a {
                padding: 0.6rem 1.2rem;
                border-radius: 0;
            }
            .breadcrumb {
                font-size: 0.78rem;
                gap: 0.2rem 0.4rem;
            }
            .comments-section input,
            .comments-section textarea {
                font-size: 0.9rem;
            }
            .featured-image {
                border-radius: 12px;
                margin: 1rem 0 1.2rem;
            }
            .site-footer friend-link {
                flex-direction: column;
                gap: 0.4rem 0.8rem;
                padding: 0.8rem 1rem;
            }
        }
        @media (min-width: 769px) {
            .hamburger {
                display: none !important;
            }
            .nav-links {
                display: flex !important;
            }
        }
        .schema-hidden {
            display: none;
        }
        .btn-icon {
            background: none;
            border: none;
            font-size: 1rem;
            cursor: pointer;
            color: #b34180;
        }
        .btn-icon:hover {
            color: #6b2d5a;
        }
        .inline-list {
            display: inline;
            list-style: none;
            padding: 0;
        }
        .inline-list li {
            display: inline;
        }
        .inline-list li::after {
            content: " · ";
        }
        .inline-list li:last-child::after {
            content: none;
        }
        .tag {
            display: inline-block;
            background: #e8dce4;
            padding: 0.1rem 0.8rem;
            border-radius: 40px;
            font-size: 0.78rem;
            color: #4a3d4a;
            margin: 0.2rem 0.1rem;
        }
