* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f5f3ef;
            color: #2d2a24;
            line-height: 1.7;
            font-size: 16px;
            padding: 0 16px;
        }
        .container {
            max-width: 1160px;
            margin: 0 auto;
            background: #fffdfa;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
            border-radius: 28px;
            padding: 24px 28px 20px;
            margin-top: 20px;
            margin-bottom: 40px;
        }
        @media (max-width: 600px) {
            .container {
                padding: 16px 14px 12px;
                border-radius: 18px;
                margin-top: 12px;
            }
            body {
                padding: 0 8px;
            }
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 16px;
            border-bottom: 2px solid #e8e3da;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #c0392b, #e67e22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: inline-block;
            line-height: 1.2;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .my-logo small {
            font-size: 0.55rem;
            font-weight: 400;
            display: block;
            -webkit-text-fill-color: #7f8c8d;
            color: #7f8c8d;
            letter-spacing: 0.3px;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: #2d2a24;
            padding: 4px 8px;
            border-radius: 8px;
        }
        .hamburger:hover {
            background: #f0ebe4;
        }
        nav#mainNav ul {
            display: flex;
            list-style: none;
            gap: 6px 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav#mainNav ul li a {
            text-decoration: none;
            color: #3d3832;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 30px;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        nav#mainNav ul li a:hover {
            background: #e8e3da;
            color: #c0392b;
        }
        @media (max-width: 760px) {
            .hamburger {
                display: block;
            }
            nav#mainNav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                padding-top: 16px;
                gap: 4px;
            }
            nav#mainNav ul.show {
                display: flex;
            }
            nav#mainNav ul li a {
                padding: 12px 16px;
                border-radius: 12px;
                background: #f8f6f2;
                width: 100%;
            }
            header {
                padding-bottom: 10px;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 14px 0 10px;
            font-size: 0.85rem;
            color: #7f8c8d;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 10px;
            color: #bdc3c7;
        }
        .breadcrumb a {
            color: #7f8c8d;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #c0392b;
        }
        .breadcrumb .active {
            color: #2d2a24;
            font-weight: 500;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 0.4em 0 0.3em;
            color: #1a1a1a;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 1.6em 0 0.5em;
            padding-bottom: 6px;
            border-bottom: 3px solid #e8e3da;
            color: #2c3e50;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 1.2em 0 0.4em;
            color: #34495e;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 1em 0 0.3em;
            color: #3d3a35;
        }
        p {
            margin: 0.7em 0 1em;
            color: #3d3832;
        }
        .content-section {
            margin: 1.8em 0;
        }
        .hero-img-wrap {
            margin: 1.6em 0 2em;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
            background: #e8e3da;
            aspect-ratio: 1200/630;
            max-height: 460px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .hero-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .hero-img-wrap .img-placeholder {
            font-size: 3rem;
            color: #7f8c8d;
            background: linear-gradient(135deg, #d5ccc0, #e8e3da);
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-direction: column;
        }
        .hero-img-wrap .img-placeholder i {
            font-size: 4rem;
            color: #c0392b;
        }
        .hero-img-wrap .img-placeholder span {
            font-size: 1rem;
            font-weight: 500;
            color: #5a534b;
        }
        .search-box {
            display: flex;
            max-width: 520px;
            margin: 1.4em 0 0.6em;
            border-radius: 60px;
            overflow: hidden;
            border: 1px solid #d5ccc0;
            background: #fff;
            transition: box-shadow 0.2s;
        }
        .search-box:focus-within {
            box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.2);
            border-color: #c0392b;
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 14px 22px;
            font-size: 1rem;
            outline: none;
            background: transparent;
            font-family: inherit;
        }
        .search-box button {
            background: #c0392b;
            color: #fff;
            border: none;
            padding: 0 26px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: #a93226;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 2.2em 0 1.2em;
        }
        @media (max-width: 640px) {
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        .card {
            background: #f8f6f2;
            border-radius: 20px;
            padding: 22px 24px 26px;
            border: 1px solid #e8e3da;
        }
        .card h3 {
            margin-top: 0;
            border-bottom: none;
            font-size: 1.25rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .card textarea,
        .card input[type="text"],
        .card select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #d5ccc0;
            border-radius: 14px;
            font-family: inherit;
            font-size: 0.95rem;
            background: #fff;
            transition: border 0.2s;
            resize: vertical;
        }
        .card textarea:focus,
        .card input:focus,
        .card select:focus {
            border-color: #c0392b;
            outline: none;
            box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
        }
        .card textarea {
            min-height: 90px;
            margin: 8px 0 10px;
        }
        .card .btn {
            background: #c0392b;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .card .btn:hover {
            background: #a93226;
            transform: translateY(-1px);
        }
        .card .btn:active {
            transform: scale(0.97);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            margin: 10px 0 14px;
            font-size: 1.7rem;
            cursor: pointer;
            color: #d5ccc0;
            transition: color 0.15s;
        }
        .star-rating i {
            transition: color 0.15s, transform 0.1s;
        }
        .star-rating i.active,
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #f1c40f;
        }
        .star-rating i:hover {
            transform: scale(1.15);
        }
        .star-rating i.active {
            color: #f1c40f;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            padding: 0.4em 0 0.8em;
        }
        .link-list a {
            color: #c0392b;
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px solid transparent;
            transition: border 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .link-list a:hover {
            border-bottom-color: #c0392b;
        }
        friend-link {
            display: block;
            padding: 1.2em 0 0.6em;
            border-top: 2px solid #e8e3da;
            margin-top: 2em;
        }
        friend-link .fl-head {
            font-weight: 600;
            font-size: 1.05rem;
            margin-bottom: 0.6em;
            color: #2c3e50;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 22px;
        }
        friend-link .fl-list a {
            color: #7f8c8d;
            text-decoration: none;
            font-size: 0.92rem;
        }
        friend-link .fl-list a:hover {
            color: #c0392b;
            text-decoration: underline;
        }
        footer {
            margin-top: 2.2em;
            padding-top: 1.2em;
            border-top: 1px solid #e8e3da;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: #7f8c8d;
        }
        footer .copyright {
            font-weight: 400;
        }
        footer .copyright strong {
            color: #2d2a24;
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .hero-img-wrap {
                border-radius: 16px;
                max-height: 240px;
            }
            .card {
                padding: 16px 16px 20px;
            }
            .search-box input {
                padding: 12px 16px;
                font-size: 0.9rem;
            }
            .search-box button {
                padding: 0 16px;
                font-size: 0.95rem;
            }
            .search-box button span {
                display: none;
            }
        }
        .text-muted {
            color: #7f8c8d;
            font-size: 0.9rem;
        }
        .last-updated {
            display: inline-block;
            background: #f0ebe4;
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #5a534b;
            margin-bottom: 0.8em;
        }
        .highlight {
            background: linear-gradient(to top, #fce5d7 40%, transparent 40%);
            padding: 0 4px;
        }
        .emoji-lg {
            font-size: 1.3em;
            line-height: 1;
        }
        .btn-small {
            background: transparent;
            border: 1px solid #d5ccc0;
            border-radius: 30px;
            padding: 4px 14px;
            font-size: 0.75rem;
            color: #5a534b;
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn-small:hover {
            background: #e8e3da;
            border-color: #bdc3c7;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        @media (max-width: 600px) {
            .grid-2 {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1em 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.92rem;
            background: #f8f6f2;
            border-radius: 16px;
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #e8e3da;
        }
        th {
            background: #e8e3da;
            font-weight: 600;
            color: #2c3e50;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .comment-list {
            margin-top: 14px;
            max-height: 200px;
            overflow-y: auto;
            font-size: 0.9rem;
        }
        .comment-list .cmt-item {
            padding: 10px 0;
            border-bottom: 1px solid #e8e3da;
        }
        .comment-list .cmt-item:last-child {
            border-bottom: none;
        }
        .comment-list .cmt-item strong {
            color: #2c3e50;
        }
        .comment-list .cmt-item .cmt-time {
            font-size: 0.75rem;
            color: #95a5a6;
            margin-left: 10px;
        }
        .toast {
            background: #2d2a24;
            color: #fff;
            padding: 10px 20px;
            border-radius: 40px;
            font-size: 0.85rem;
            display: inline-block;
            margin-top: 6px;
            animation: fadeIn 0.3s;
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(6px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
