        *,
        *::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: #f8f5f0;
            color: #2c2a2a;
            line-height: 1.7;
            padding: 0 16px;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #7b3fa0;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #b060d0;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            line-height: 1.3;
            font-weight: 700;
            color: #1f1a2e;
        }
        h1 {
            font-size: 2.2rem;
            margin: 0.8rem 0 1.2rem;
            border-left: 6px solid #b37dd4;
            padding-left: 20px;
        }
        h2 {
            font-size: 1.7rem;
            margin: 2.2rem 0 1rem;
            border-bottom: 3px solid #e2d0f0;
            padding-bottom: 8px;
        }
        h3 {
            font-size: 1.3rem;
            margin: 1.8rem 0 0.7rem;
            color: #3f2e5a;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.5rem;
            color: #4f3a6e;
        }
        p {
            margin-bottom: 1.1rem;
            font-size: 1.02rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.4rem 1.8rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        strong {
            color: #3f2a5a;
        }
        em {
            color: #6b4f8a;
        }
        header {
            padding: 18px 0 10px;
            border-bottom: 2px solid #e0d3e8;
            margin-bottom: 20px;
        }
        .header-top {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #a06bc0, #d9a8e8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: inline-block;
        }
        .my-logo small {
            font-size: 0.9rem;
            -webkit-text-fill-color: #6f4f8a;
            color: #6f4f8a;
            font-weight: 400;
            margin-left: 6px;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        nav.main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        nav.main-nav a {
            padding: 6px 14px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.92rem;
            background: rgba(180, 140, 210, 0.12);
            transition: background 0.2s, transform 0.15s;
        }
        nav.main-nav a:hover {
            background: rgba(180, 140, 210, 0.28);
            transform: translateY(-1px);
            text-decoration: none;
        }
        .hamburger-btn {
            display: none;
            background: none;
            border: 2px solid #9b7db8;
            border-radius: 8px;
            font-size: 1.6rem;
            padding: 6px 14px;
            cursor: pointer;
            color: #5f3f7a;
            transition: background 0.2s;
        }
        .hamburger-btn:hover {
            background: #ede0f5;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 12px 0 8px;
            margin: 0;
            font-size: 0.88rem;
            color: #6f5f7a;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 10px;
            color: #b89fc8;
        }
        .breadcrumb a {
            color: #7b4f9a;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hero-img-wrap {
            margin: 24px 0 32px;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(90, 50, 120, 0.12);
            background: #ede4f5;
        }
        .hero-img-wrap img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
        }
        .hero-img-wrap figcaption {
            padding: 10px 18px;
            font-size: 0.9rem;
            color: #4f3a5f;
            background: #f3ecf8;
            font-style: italic;
        }
        .search-section {
            background: #f0e8f7;
            padding: 24px 26px;
            border-radius: 18px;
            margin: 28px 0;
            box-shadow: 0 2px 12px rgba(120, 80, 160, 0.06);
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .search-form input[type="text"] {
            flex: 1 1 240px;
            padding: 12px 18px;
            border: 2px solid #d5c2e4;
            border-radius: 40px;
            font-size: 1rem;
            background: white;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #a06bc0;
        }
        .search-form button {
            padding: 12px 32px;
            background: #8b5fa8;
            border: none;
            border-radius: 40px;
            color: white;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #a06bc0;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 32px 0;
        }
        .feedback-card {
            background: #fcf9ff;
            padding: 22px 26px;
            border-radius: 18px;
            box-shadow: 0 2px 16px rgba(100, 60, 140, 0.06);
            border: 1px solid #e8ddf0;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.25rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .feedback-card textarea,
        .feedback-card input[type="text"],
        .feedback-card input[type="number"] {
            padding: 10px 16px;
            border: 2px solid #ddd0e8;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            resize: vertical;
            outline: none;
            transition: border 0.2s;
            background: white;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: #a06bc0;
        }
        .feedback-card .star-wrap {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #d4c0e0;
            cursor: pointer;
        }
        .feedback-card .star-wrap .fa-star.active {
            color: #f5b342;
        }
        .feedback-card button {
            align-self: flex-start;
            padding: 10px 28px;
            background: #7b4f9a;
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .feedback-card button:hover {
            background: #9b6fba;
        }
        .rating-display {
            margin-top: 10px;
            font-size: 1.1rem;
            color: #3f2a5a;
        }
        .inline-link-list {
            background: #f4edf9;
            padding: 14px 22px;
            border-radius: 14px;
            margin: 20px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
        }
        .inline-link-list a {
            font-weight: 500;
        }
        footer {
            margin-top: 48px;
            padding: 28px 0 20px;
            border-top: 2px solid #e0d3e8;
        }
        friend-link {
            display: block;
            padding: 16px 0;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            padding: 4px 12px;
            background: #f0e8f5;
            border-radius: 20px;
            font-size: 0.92rem;
        }
        friend-link a:hover {
            background: #e0d0ec;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            font-size: 0.88rem;
            color: #6f5f7a;
            padding-top: 16px;
            border-top: 1px solid #e5dcee;
        }
        @media (max-width: 820px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.7rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.35rem;
            }
            body {
                padding: 0 12px;
            }
            .header-top {
                flex-direction: column;
                align-items: stretch;
            }
            .hamburger-btn {
                display: inline-block;
                align-self: flex-end;
            }
            nav.main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 12px 0 6px;
                gap: 6px;
            }
            nav.main-nav.open {
                display: flex;
            }
            nav.main-nav a {
                padding: 10px 18px;
                width: 100%;
                border-radius: 12px;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .inline-link-list {
                flex-direction: column;
                gap: 6px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.4rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .feedback-card {
                padding: 16px;
            }
        }
        .last-updated {
            display: inline-block;
            background: #efe6f5;
            padding: 4px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #5f4a6f;
            margin-bottom: 18px;
        }
        .emoji-big {
            font-size: 1.4em;
            margin-right: 4px;
        }
        .highlight-box {
            background: #f5edfb;
            padding: 18px 22px;
            border-radius: 16px;
            border-left: 5px solid #a06bc0;
            margin: 20px 0;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 18px 0;
        }
        @media (max-width: 640px) {
            .two-col {
                grid-template-columns: 1fr;
            }
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fcfaff;
            border-radius: 14px;
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #e6dcee;
        }
        th {
            background: #ede0f5;
            font-weight: 600;
            color: #2f1f42;
        }
        tr:last-child td {
            border-bottom: none;
        }
