        *,
        *::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, sans-serif;
            background: #fcf8f0;
            color: #2d2a24;
            line-height: 1.75;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #c44f7a;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #9a2d5a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #3a2c1e;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 6px solid #f7a1c4;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0.5rem;
        }
        header {
            padding: 1.2rem 0 0.6rem 0;
            border-bottom: 2px solid #f0d5c6;
            margin-bottom: 1.2rem;
            position: relative;
        }
        .header-top {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f7a1c4, #c44f7a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(196, 79, 122, 0.15);
            font-family: 'Fredoka One', 'Segoe UI', cursive;
            transition: transform 0.2s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
            background: inherit;
            -webkit-text-fill-color: transparent;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 0.3rem 1.2rem;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            font-weight: 600;
            padding: 0.3rem 0.6rem;
            border-radius: 30px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .nav-list li a:hover {
            background: #f7a1c4;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #c44f7a;
            color: #c44f7a;
            font-size: 1.6rem;
            padding: 0.2rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
        }
        .hamburger:hover {
            background: #c44f7a;
            color: #fff;
        }
        .breadcrumb {
            font-size: 0.85rem;
            color: #7a6b5c;
            padding: 0.5rem 0 0.2rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
        }
        .breadcrumb a {
            color: #7a6b5c;
        }
        .breadcrumb a:hover {
            color: #c44f7a;
        }
        .breadcrumb span {
            margin: 0 0.2rem;
        }
        .search-form {
            display: flex;
            gap: 0.3rem;
            max-width: 400px;
            margin: 1.5rem 0;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 2px solid #e0cfc0;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #c44f7a;
        }
        .search-form button {
            background: #c44f7a;
            color: #fff;
            border: none;
            padding: 0.7rem 1.4rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-form button:hover {
            background: #9a2d5a;
        }
        .content-area {
            background: #fffdfa;
            padding: 1.8rem 1.5rem;
            border-radius: 28px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
            margin: 1.5rem 0;
        }
        .content-area p {
            font-size: 1.05rem;
        }
        .hero-img {
            margin: 1.8rem 0;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        .feature-callout {
            background: #fef3f0;
            padding: 1.2rem 1.8rem;
            border-radius: 20px;
            border-left: 6px solid #f7a1c4;
            margin: 1.8rem 0;
        }
        .user-interact {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 2.5rem 0 1rem 0;
            padding: 1.5rem 0;
            border-top: 2px solid #f0d5c6;
            border-bottom: 2px solid #f0d5c6;
        }
        .rating-section,
        .comment-section {
            flex: 1 1 280px;
        }
        .rating-section h3,
        .comment-section h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 2rem;
            color: #f7c948;
            cursor: pointer;
            margin: 0.5rem 0;
        }
        .star-rating i {
            transition: transform 0.15s, color 0.15s;
        }
        .star-rating i:hover {
            transform: scale(1.25);
            color: #f0b800;
        }
        .star-rating i.selected {
            color: #f0b800;
        }
        .rating-form button,
        .comment-form button {
            background: #c44f7a;
            color: #fff;
            border: none;
            padding: 0.5rem 1.4rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 0.95rem;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #9a2d5a;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #e0cfc0;
            border-radius: 16px;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 80px;
            background: #fff;
            outline: none;
            transition: border 0.2s;
            font-family: inherit;
        }
        .comment-form textarea:focus {
            border-color: #c44f7a;
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 0.6rem 1rem;
            border: 2px solid #e0cfc0;
            border-radius: 40px;
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
            background: #fff;
            outline: none;
            transition: border 0.2s;
        }
        .comment-form input[type="text"]:focus {
            border-color: #c44f7a;
        }
        .comment-form .form-row {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-top: 0.5rem;
        }
        footer {
            padding: 2rem 0 1rem 0;
            margin-top: 2rem;
            border-top: 2px solid #f0d5c6;
            font-size: 0.95rem;
            color: #5a4c3e;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem 3rem;
            justify-content: space-between;
        }
        friend-link {
            display: block;
            font-weight: 600;
            margin: 0.8rem 0;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            margin-bottom: 0.3rem;
        }
        .copyright {
            text-align: center;
            padding: 1.2rem 0 0.5rem 0;
            font-size: 0.85rem;
            color: #8a7c6e;
            border-top: 1px solid #f0d5c6;
            margin-top: 1.2rem;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #8a7c6e;
            margin: 0.3rem 0 1rem 0;
            text-align: right;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .header-top {
                flex-direction: column;
                align-items: stretch;
            }
            .nav-wrapper {
                justify-content: space-between;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fffdfa;
                padding: 0.8rem 1rem;
                border-radius: 16px;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
                margin-top: 0.5rem;
                gap: 0.5rem;
            }
            .nav-list.open {
                display: flex;
            }
            .hamburger {
                display: inline-block;
            }
            .content-area {
                padding: 1.2rem 1rem;
            }
            .user-interact {
                flex-direction: column;
                gap: 1.5rem;
            }
            .footer-inner {
                flex-direction: column;
                gap: 1rem;
            }
            .search-form {
                max-width: 100%;
                flex-wrap: wrap;
            }
            .search-form input[type="text"] {
                min-width: 160px;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.5rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        .emoji-big {
            font-size: 1.8rem;
            display: inline-block;
            margin-right: 0.3rem;
        }
        .highlight {
            background: #fef0d5;
            padding: 0.1rem 0.4rem;
            border-radius: 6px;
            font-weight: 600;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #f0d5c6;
        }
        th {
            background: #f7a1c4;
            color: #fff;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .link-list-inline {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
        }
        .link-list-inline li a {
            font-weight: 500;
        }
        .tag {
            display: inline-block;
            background: #f0d5c6;
            padding: 0.1rem 0.8rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #5a4c3e;
        }
