        *,
        *::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: #faf8f5;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0 16px;
            max-width: 1200px;
            margin: 0 auto;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 14px;
        }
        a {
            color: #b45f2b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a3e1a;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.6rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
            color: #1a2634;
        }
        h1 {
            font-size: 2.2rem;
            border-bottom: 4px solid #e5b87b;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.75rem;
            border-left: 5px solid #d4895a;
            padding-left: 1rem;
            margin-top: 2.6rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #3a4a5e;
        }
        p {
            margin-bottom: 1.2rem;
            word-break: break-word;
        }
        .container {
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
            padding: 24px 20px;
            margin: 20px 0 30px;
        }
        @media (min-width:768px) {
            body {
                padding: 0 32px;
            }
            .container {
                padding: 40px 48px;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0 12px;
            border-bottom: 2px solid #ede3d8;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #c37d4a, #8b5e3c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #c37d4a;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
        }
        .nav-toggle-label {
            display: block;
            font-size: 1.8rem;
            cursor: pointer;
            user-select: none;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
            color: #3a2a1a;
        }
        .nav-toggle-label:hover {
            background: #f0e6dc;
        }
        .nav-menu {
            display: none;
            width: 100%;
            flex-direction: column;
            gap: 6px;
            padding: 16px 0 8px;
            border-top: 1px solid #ede3d8;
            margin-top: 12px;
        }
        .nav-menu a {
            padding: 10px 14px;
            border-radius: 10px;
            font-weight: 500;
            color: #2c3e50;
            background: #f8f3ee;
            transition: background 0.2s, transform 0.1s;
        }
        .nav-menu a:hover {
            background: #e5d5c8;
            text-decoration: none;
            transform: translateX(4px);
        }
        .nav-menu a i {
            margin-right: 10px;
            width: 20px;
            color: #b45f2b;
        }
        #nav-toggle:checked~.nav-menu {
            display: flex;
        }
        @media (min-width:768px) {
            .nav-toggle-label {
                display: none;
            }
            .nav-menu {
                display: flex !important;
                flex-direction: row;
                width: auto;
                border-top: none;
                margin-top: 0;
                padding: 0;
                gap: 4px;
                flex-wrap: wrap;
            }
            .nav-menu a {
                background: transparent;
                padding: 6px 14px;
                font-size: 0.95rem;
                border-radius: 30px;
            }
            .nav-menu a:hover {
                background: #ede3d8;
                transform: none;
            }
            .site-header {
                flex-wrap: nowrap;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 10px;
            font-size: 0.85rem;
            padding: 12px 0 4px;
            color: #6b7a8a;
        }
        .breadcrumb a {
            color: #8b6b4a;
            font-weight: 500;
        }
        .breadcrumb span {
            color: #9a8a7a;
        }
        .breadcrumb .current {
            color: #3a2a1a;
            font-weight: 600;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0 10px;
            padding: 16px 18px;
            background: #f6f0ea;
            border-radius: 18px;
            align-items: center;
        }
        .search-form label {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            color: #3a2a1a;
        }
        .search-form input[type="text"] {
            flex: 1 1 220px;
            padding: 12px 16px;
            border: 2px solid #ddd2c6;
            border-radius: 40px;
            font-size: 0.95rem;
            background: #fff;
            outline: none;
            transition: border 0.25s;
        }
        .search-form input[type="text"]:focus {
            border-color: #c37d4a;
        }
        .search-form button {
            padding: 12px 28px;
            background: #c37d4a;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #9e6438;
            transform: scale(1.02);
        }
        .rating-area,
        .comment-area {
            margin: 30px 0 20px;
            padding: 20px 22px;
            background: #f9f5f0;
            border-radius: 20px;
            border: 1px solid #e8ddd2;
        }
        .rating-area h3,
        .comment-area h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 1.8rem;
            margin: 10px 0 14px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #ccc;
            transition: color 0.2s, transform 0.1s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
        }
        .star-rating label:hover {
            transform: scale(1.15);
        }
        .rating-area form,
        .comment-area form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .rating-area form input[type="text"],
        .rating-area form input[type="email"],
        .comment-area form input[type="text"],
        .comment-area form input[type="email"],
        .comment-area form textarea {
            padding: 12px 16px;
            border: 2px solid #ddd2c6;
            border-radius: 14px;
            font-size: 0.95rem;
            background: #fff;
            outline: none;
            transition: border 0.25s;
            font-family: inherit;
        }
        .rating-area form input:focus,
        .comment-area form input:focus,
        .comment-area form textarea:focus {
            border-color: #c37d4a;
        }
        .comment-area form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn-submit {
            padding: 12px 28px;
            background: #2a4a3a;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            align-self: flex-start;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .btn-submit:hover {
            background: #1d3529;
            transform: scale(1.02);
        }
        .featured-image {
            margin: 28px 0 24px;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
        }
        .featured-image figcaption {
            padding: 12px 16px;
            font-size: 0.85rem;
            color: #5a4a3a;
            background: #f6f0ea;
            font-style: italic;
        }
        .data-table {
            overflow-x: auto;
            margin: 24px 0;
        }
        .data-table table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fcfaf8;
            border-radius: 16px;
            overflow: hidden;
        }
        .data-table th {
            background: #d4895a;
            color: #fff;
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #ede3d8;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f6efe8;
        }
        .site-footer {
            margin-top: 40px;
            padding: 32px 0 20px;
            border-top: 2px solid #ede3d8;
            font-size: 0.9rem;
            color: #4a3a2a;
        }
        .site-footer friend-link {
            display: block;
            margin: 16px 0 10px;
            padding: 16px 18px;
            background: #f6f0ea;
            border-radius: 16px;
        }
        .site-footer friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 0;
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            padding-top: 18px;
            font-size: 0.85rem;
            color: #6b5a4a;
            border-top: 1px solid #ede3d8;
            margin-top: 12px;
        }
        .last-updated {
            display: block;
            text-align: right;
            font-size: 0.8rem;
            color: #8a7a6a;
            margin: 6px 0 12px;
        }
        .highlight-box {
            background: #fdf6ef;
            border-left: 5px solid #d4895a;
            padding: 18px 22px;
            border-radius: 0 16px 16px 0;
            margin: 24px 0;
        }
        .emoji-big {
            font-size: 1.3rem;
        }
        .tag {
            display: inline-block;
            background: #e8dcd0;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #4a3a2a;
            margin-right: 4px;
        }
        .interview-block {
            background: #f4eee8;
            padding: 20px 22px;
            border-radius: 18px;
            margin: 22px 0;
            border: 1px solid #e4d7cb;
        }
        .interview-block .q {
            font-weight: 700;
            color: #7a4a2a;
        }
        .interview-block .a {
            padding-left: 12px;
            border-left: 3px solid #c37d4a;
            margin-bottom: 14px;
        }
        @media (max-width:480px) {
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .container {
                padding: 16px 14px;
            }
            .search-form {
                flex-direction: column;
                align-items: stretch;
            }
            .search-form button {
                justify-content: center;
            }
            .btn-submit {
                width: 100%;
                justify-content: center;
            }
        }
        .anchor-offset {
            scroll-margin-top: 80px;
        }
        friend-link {
            display: block;
        }
