        *,
        *::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, sans-serif;
            background: #faf9f6;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #c44536;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #9a2a1e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .site-header {
            background: linear-gradient(135deg, #1e1e2a 0%, #2d2d44 100%);
            color: #fff;
            padding: 1.2rem 0;
            border-radius: 0 0 24px 24px;
            margin-bottom: 1.8rem;
            position: relative;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f7d44a;
            text-shadow: 0 2px 8px rgba(247, 212, 74, 0.3);
            transition: transform 0.25s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
            color: #ffdf6b;
        }
        .my-logo i {
            margin-right: 0.4rem;
            color: #ff8a5c;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
        }
        .nav-menu li a {
            display: block;
            padding: 0.5rem 1rem;
            color: #e8e4df;
            font-weight: 500;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .nav-menu li a:hover {
            background: rgba(247, 212, 74, 0.18);
            color: #f7d44a;
            text-decoration: none;
        }
        .nav-menu li a i {
            margin-right: 0.3rem;
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(30, 30, 42, 0.98);
                border-radius: 16px;
                padding: 1rem 0.5rem;
                margin-top: 0.8rem;
                border: 1px solid rgba(255, 255, 255, 0.08);
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 0.7rem 1.2rem;
                border-radius: 6px;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            font-size: 0.85rem;
            color: #b0a8a0;
            padding: 0.8rem 0 0.2rem 0;
            list-style: none;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #7a7068;
            font-weight: 700;
            margin-right: 0.3rem;
        }
        .breadcrumb a {
            color: #c9beb5;
        }
        .breadcrumb a:hover {
            color: #f7d44a;
        }
        .main-content {
            background: #fff;
            border-radius: 24px;
            padding: 2rem 2.2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            margin-bottom: 2rem;
        }
        @media (max-width: 600px) {
            .main-content {
                padding: 1.2rem 1rem;
            }
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: #1a1a2e;
            margin-bottom: 0.5rem;
            letter-spacing: -0.5px;
        }
        h1 i {
            color: #c44536;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 2.2rem 0 1rem 0;
            color: #1e1e2a;
            border-left: 5px solid #f7d44a;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.45rem;
            font-weight: 600;
            margin: 1.6rem 0 0.7rem 0;
            color: #2d2d44;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 1.2rem 0 0.5rem 0;
            color: #3d3d5c;
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.8rem;
            color: #6b625a;
            font-size: 0.9rem;
            padding: 0.6rem 0 1.2rem 0;
            border-bottom: 1px solid #eee;
            margin-bottom: 1.8rem;
        }
        .meta-info i {
            margin-right: 0.3rem;
            color: #c44536;
        }
        .featured-image {
            margin: 1.8rem 0 2.2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        .content-section p {
            margin-bottom: 1.1rem;
            font-size: 1.05rem;
            color: #2c2c3a;
        }
        .content-section .highlight {
            background: #fef7e0;
            padding: 0.2rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .content-section .insight-box {
            background: #f3f0eb;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            margin: 1.6rem 0;
            border-left: 6px solid #f7d44a;
        }
        .content-section .insight-box i {
            color: #c44536;
            margin-right: 0.5rem;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
            padding: 0.6rem 0 0.8rem 0;
            list-style: none;
        }
        .link-list-inline li a {
            font-weight: 500;
            background: #f5f2ed;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: background 0.2s, color 0.2s;
        }
        .link-list-inline li a:hover {
            background: #c44536;
            color: #fff;
            text-decoration: none;
        }
        .search-section {
            background: #f3f0eb;
            border-radius: 20px;
            padding: 2rem 2rem;
            margin: 2.4rem 0;
            text-align: center;
        }
        .search-section form {
            display: flex;
            gap: 0.6rem;
            max-width: 560px;
            margin: 0.8rem auto 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #ddd;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.2s;
        }
        .search-section input[type="text"]:focus {
            border-color: #c44536;
        }
        .search-section button {
            background: #c44536;
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-section button:hover {
            background: #9a2a1e;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.4rem 0;
        }
        @media (max-width: 700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 1.6rem;
            }
        }
        .comment-card,
        .rating-card {
            background: #f9f7f4;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            border: 1px solid #eae5de;
        }
        .comment-card h3,
        .rating-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .comment-card form,
        .rating-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.6rem;
        }
        .comment-card input,
        .comment-card textarea,
        .rating-card select,
        .rating-card input {
            padding: 0.7rem 1rem;
            border: 2px solid #ddd;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border-color 0.2s;
        }
        .comment-card input:focus,
        .comment-card textarea:focus,
        .rating-card select:focus,
        .rating-card input:focus {
            border-color: #c44536;
        }
        .comment-card textarea {
            resize: vertical;
            min-height: 90px;
        }
        .comment-card button,
        .rating-card button {
            background: #2d2d44;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            align-self: flex-start;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-card button:hover,
        .rating-card button:hover {
            background: #1a1a2e;
            transform: scale(1.02);
        }
        .stars-display {
            display: flex;
            gap: 0.2rem;
            font-size: 1.6rem;
            color: #f7c948;
        }
        .site-footer {
            background: #1e1e2a;
            color: #ccc;
            border-radius: 24px 24px 0 0;
            padding: 2.2rem 0 1.6rem 0;
            margin-top: 2rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        @media (max-width: 700px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.6rem;
            }
        }
        .footer-inner h4 {
            color: #f7d44a;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .footer-inner p,
        .footer-inner li {
            font-size: 0.9rem;
            color: #b0a8a0;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner ul li a {
            color: #c9beb5;
            font-size: 0.9rem;
            padding: 0.15rem 0;
            display: inline-block;
        }
        .footer-inner ul li a:hover {
            color: #f7d44a;
        }
        friend-link {
            display: block;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 1.8rem;
            padding-top: 1.4rem;
            font-size: 0.9rem;
            color: #a09888;
        }
        friend-link a {
            color: #c9beb5;
            margin: 0 0.4rem;
        }
        friend-link a:hover {
            color: #f7d44a;
        }
        .copyright {
            text-align: center;
            padding-top: 1.4rem;
            font-size: 0.85rem;
            color: #7a7068;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            margin-top: 1.4rem;
        }
        .copyright i {
            margin: 0 0.2rem;
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .header-inner {
                flex-direction: row;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-section {
                padding: 1.2rem 1rem;
            }
            .comment-card,
            .rating-card {
                padding: 1.2rem;
            }
        }
        .text-muted {
            color: #6b625a;
            font-size: 0.9rem;
        }
        .mt-1 {
            margin-top: 0.8rem;
        }
        .mb-1 {
            margin-bottom: 0.8rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .badge {
            display: inline-block;
            background: #f7d44a;
            color: #1e1e2a;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.15rem 0.7rem;
            border-radius: 20px;
            letter-spacing: 0.3px;
        }
