* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
        }
        body {
            background: #f5f1ea;
            color: #2d2a24;
            line-height: 1.7;
            font-size: 1.05rem;
            padding: 0 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fffcf7;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
            border-radius: 28px 28px 0 0;
            overflow: hidden;
            padding: 0 24px 40px;
        }
        header {
            padding: 20px 0 12px;
            border-bottom: 2px solid #e8e0d4;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 2.1rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            text-decoration: none;
            color: #b45f2b;
            background: linear-gradient(135deg, #b45f2b, #d4834a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #b45f2b;
            font-size: 2rem;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            cursor: pointer;
            color: #2d2a24;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0e8dc;
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            align-items: center;
        }
        nav a {
            text-decoration: none;
            color: #3d3730;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 30px;
            transition: all 0.2s;
            font-size: 0.95rem;
        }
        nav a:hover,
        nav a:focus-visible {
            background: #b45f2b;
            color: #fff;
            outline: none;
        }
        .breadcrumb {
            width: 100%;
            margin-top: 12px;
            font-size: 0.85rem;
            color: #6b5e50;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 6px 0 2px;
            border-top: 1px solid #ede6dc;
        }
        .breadcrumb a {
            color: #7f6b58;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #b45f2b;
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #b45f2b;
        }
        .hero {
            padding: 40px 0 20px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1f1b16;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }
        .hero h1 i {
            color: #b45f2b;
            margin-right: 10px;
        }
        .hero p {
            font-size: 1.2rem;
            color: #5f5344;
            max-width: 750px;
            margin: 16px auto 0;
        }
        .last-updated {
            display: inline-block;
            margin-top: 12px;
            background: #f0e8dc;
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #5f4f3c;
        }
        .last-updated i {
            margin-right: 6px;
        }
        .search-section {
            margin: 32px 0 20px;
            display: flex;
            justify-content: center;
        }
        .search-form {
            display: flex;
            width: 100%;
            max-width: 560px;
            background: #fff;
            border: 2px solid #e0d6c8;
            border-radius: 60px;
            overflow: hidden;
            transition: border-color 0.25s;
        }
        .search-form:focus-within {
            border-color: #b45f2b;
        }
        .search-form input {
            flex: 1;
            padding: 14px 22px;
            border: none;
            font-size: 1rem;
            background: transparent;
            outline: none;
            color: #2d2a24;
        }
        .search-form input::placeholder {
            color: #8f7e6a;
        }
        .search-form button {
            padding: 14px 28px;
            border: none;
            background: #b45f2b;
            color: #fff;
            font-size: 1.2rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #9a4f22;
        }
        .featured-image {
            margin: 40px 0 32px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            max-height: 480px;
        }
        .featured-image figcaption {
            padding: 12px 20px;
            background: #f9f4ec;
            font-size: 0.9rem;
            color: #5f5344;
            font-style: italic;
        }
        .content {
            max-width: 880px;
            margin: 0 auto;
        }
        .content h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1f1b16;
            margin-top: 56px;
            margin-bottom: 18px;
            padding-bottom: 8px;
            border-bottom: 3px solid #e8dccc;
        }
        .content h2 i {
            color: #b45f2b;
            margin-right: 10px;
        }
        .content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2d251e;
            margin-top: 36px;
            margin-bottom: 12px;
        }
        .content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #3d3229;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        .content p {
            margin-bottom: 18px;
            color: #2d2a24;
        }
        .content ul,
        .content ol {
            margin: 12px 0 24px 28px;
        }
        .content li {
            margin-bottom: 8px;
        }
        .content strong {
            color: #1f1b16;
        }
        .content .highlight {
            background: #fcf3e9;
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: 500;
        }
        .content .insight-box {
            background: #f4ede4;
            border-left: 6px solid #b45f2b;
            padding: 20px 28px;
            border-radius: 12px;
            margin: 28px 0;
        }
        .content .insight-box i {
            color: #b45f2b;
            margin-right: 8px;
        }
        .content .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            background: #f9f5ef;
            padding: 20px 28px;
            border-radius: 16px;
            margin: 28px 0;
        }
        .content .link-list a {
            color: #7f5d3a;
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px dashed #c7b5a2;
            transition: all 0.2s;
        }
        .content .link-list a:hover {
            color: #b45f2b;
            border-bottom-color: #b45f2b;
        }
        .interaction-area {
            margin: 48px 0 32px;
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            background: #faf6f0;
            border-radius: 24px;
            padding: 32px 28px;
        }
        .rating-box,
        .comment-box {
            flex: 1 1 280px;
        }
        .rating-box h3,
        .comment-box h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: #1f1b16;
        }
        .rating-box h3 i,
        .comment-box h3 i {
            color: #b45f2b;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            cursor: pointer;
            color: #d9cec0;
            transition: color 0.2s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #e8a73b;
        }
        .star-rating i {
            transition: color 0.15s;
        }
        .rating-form button,
        .comment-form button {
            margin-top: 14px;
            background: #b45f2b;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #9a4f22;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e0d6c8;
            border-radius: 16px;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            background: #fff;
            transition: border-color 0.2s;
            font-family: inherit;
        }
        .comment-form textarea:focus {
            border-color: #b45f2b;
            outline: none;
        }
        .comment-form input {
            width: 100%;
            padding: 12px 18px;
            border: 2px solid #e0d6c8;
            border-radius: 50px;
            font-size: 1rem;
            margin-bottom: 12px;
            background: #fff;
            transition: border-color 0.2s;
        }
        .comment-form input:focus {
            border-color: #b45f2b;
            outline: none;
        }
        footer {
            margin-top: 60px;
            padding: 32px 0 16px;
            border-top: 2px solid #e8e0d4;
        }
        friend-link {
            display: block;
            margin-bottom: 20px;
            font-size: 0.95rem;
            color: #5f5344;
        }
        friend-link a {
            color: #7f5d3a;
            text-decoration: none;
            margin: 0 10px 0 4px;
            font-weight: 500;
        }
        friend-link a:hover {
            color: #b45f2b;
            text-decoration: underline;
        }
        .copyright {
            font-size: 0.85rem;
            color: #6b5e50;
            text-align: center;
            padding-top: 16px;
            border-top: 1px solid #ede6dc;
        }
        .copyright i {
            margin: 0 4px;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 0 14px 32px;
                border-radius: 16px 16px 0 0;
            }
            header {
                padding: 14px 0 8px;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 6px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                width: 100%;
                padding: 10px 16px;
                border-radius: 12px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content h2 {
                font-size: 1.6rem;
            }
            .content h3 {
                font-size: 1.3rem;
            }
            .interaction-area {
                padding: 20px 16px;
                flex-direction: column;
            }
            .search-form input {
                padding: 12px 16px;
                font-size: 0.95rem;
            }
            .search-form button {
                padding: 12px 18px;
                font-size: 1rem;
            }
            .featured-image img {
                max-height: 260px;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .content .link-list {
                padding: 16px 18px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .container {
                padding: 0 8px 24px;
            }
            .content ul,
            .content ol {
                margin-left: 16px;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        .fa-solid,
        .fa-regular {
            pointer-events: none;
        }
        .no-wrap {
            white-space: nowrap;
        }
