* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #f8f6f2;
            color: #1e1e1e;
            line-height: 1.7;
            font-size: 16px;
            padding: 0 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 24px;
            padding: 20px 28px 40px;
            margin-top: 20px;
            margin-bottom: 40px;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0 16px;
            border-bottom: 2px solid #f0ebe3;
            position: relative;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #b8860b, #ffd700, #b8860b);
            -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: #b8860b;
            font-size: 30px;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .hamburger {
            display: none;
            font-size: 28px;
            background: none;
            border: none;
            color: #5a3e1b;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0ebe3;
        }
        nav#main-nav ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 6px 18px;
            padding: 0;
            margin: 0;
        }
        nav#main-nav ul li a {
            text-decoration: none;
            color: #3d2b1a;
            font-weight: 600;
            font-size: 15px;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.25s, color 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        nav#main-nav ul li a:hover {
            border-bottom-color: #b8860b;
            color: #b8860b;
        }
        nav#main-nav ul li a i {
            font-size: 14px;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 10px;
            padding: 14px 0 10px;
            font-size: 14px;
            color: #7a6a5a;
            border-bottom: 1px solid #f0ebe3;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #7a6a5a;
            text-decoration: none;
            transition: color 0.2s;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb i {
            font-size: 12px;
            color: #c4b5a5;
        }
        .breadcrumb .current {
            color: #3d2b1a;
            font-weight: 600;
        }
        h1 {
            font-size: 38px;
            font-weight: 800;
            color: #1a1208;
            margin: 16px 0 10px;
            line-height: 1.2;
        }
        h2 {
            font-size: 28px;
            font-weight: 700;
            color: #2c1f12;
            margin: 48px 0 14px;
            padding-bottom: 8px;
            border-bottom: 3px solid #f0ebe3;
        }
        h3 {
            font-size: 22px;
            font-weight: 600;
            color: #3d2b1a;
            margin: 32px 0 10px;
        }
        h4 {
            font-size: 18px;
            font-weight: 600;
            color: #5a4228;
            margin: 24px 0 8px;
        }
        p {
            margin: 0 0 18px;
            font-size: 16px;
            color: #2a241e;
        }
        strong {
            color: #1a1208;
            font-weight: 700;
        }
        em {
            font-style: italic;
            color: #5a4228;
        }
        .content-img {
            margin: 28px 0 32px;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
            background: #faf6f0;
            text-align: center;
        }
        .content-img img {
            width: 100%;
            height: auto;
            display: block;
            max-width: 100%;
        }
        .content-img figcaption {
            padding: 12px 18px;
            font-size: 14px;
            color: #6a5a4a;
            background: #faf6f0;
            font-style: italic;
        }
        .last-updated {
            display: inline-block;
            background: #f0ebe3;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 14px;
            color: #5a4a3a;
            margin: 6px 0 20px;
        }
        .last-updated i {
            margin-right: 6px;
        }
        .search-section {
            background: #faf6f0;
            border-radius: 18px;
            padding: 24px 28px;
            margin: 30px 0 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
            border: 1px solid #e8e0d6;
        }
        .search-section label {
            font-weight: 600;
            color: #3d2b1a;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-section input[type="text"] {
            flex: 1 1 220px;
            padding: 12px 18px;
            border: 2px solid #e0d6ca;
            border-radius: 40px;
            font-size: 15px;
            background: #fff;
            transition: border 0.25s;
            outline: none;
            min-width: 160px;
        }
        .search-section input[type="text"]:focus {
            border-color: #b8860b;
        }
        .search-section button {
            background: #b8860b;
            border: none;
            color: #fff;
            font-weight: 700;
            padding: 12px 28px;
            border-radius: 40px;
            font-size: 15px;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .search-section button:hover {
            background: #9a7008;
            transform: scale(1.02);
        }
        .search-section button i {
            font-size: 14px;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 40px 0 30px;
        }
        .comment-box,
        .rating-box {
            background: #faf6f0;
            border-radius: 18px;
            padding: 22px 24px;
            border: 1px solid #e8e0d6;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            margin-bottom: 12px;
            font-size: 20px;
            border-bottom: none;
            padding-bottom: 0;
        }
        .comment-box textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0d6ca;
            border-radius: 14px;
            font-size: 15px;
            font-family: inherit;
            resize: vertical;
            min-height: 90px;
            background: #fff;
            transition: border 0.25s;
            outline: none;
        }
        .comment-box textarea:focus {
            border-color: #b8860b;
        }
        .comment-box button,
        .rating-box button {
            background: #3d2b1a;
            border: none;
            color: #fff;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 40px;
            font-size: 15px;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            margin-top: 10px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-box button:hover,
        .rating-box button:hover {
            background: #5a4228;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 30px;
            color: #d4c8b8;
            cursor: pointer;
            margin: 8px 0 12px;
            transition: color 0.2s;
        }
        .rating-stars i.active {
            color: #ffd700;
            text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
        }
        .rating-stars i:hover,
        .rating-stars i.hover {
            color: #f0c850;
        }
        .rating-stars i {
            transition: color 0.15s, transform 0.15s;
        }
        .rating-stars i:hover {
            transform: scale(1.15);
        }
        .rating-feedback {
            font-size: 14px;
            color: #5a4a3a;
            margin-top: 4px;
        }
        friend-link {
            display: block;
            margin-top: 40px;
            padding: 24px 20px 18px;
            border-top: 2px solid #f0ebe3;
            font-size: 15px;
            color: #5a4a3a;
        }
        friend-link a {
            color: #3d2b1a;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }
        friend-link a:hover {
            color: #b8860b;
            text-decoration: underline;
        }
        friend-link .friend-label {
            font-weight: 700;
            font-size: 18px;
            color: #2c1f12;
            display: block;
            margin-bottom: 10px;
        }
        footer {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 2px solid #f0ebe3;
            font-size: 14px;
            color: #7a6a5a;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }
        footer .copyright {
            font-weight: 500;
        }
        footer .copyright i {
            margin-right: 4px;
            color: #b8860b;
        }
        footer a {
            color: #5a4a3a;
            text-decoration: none;
        }
        footer a:hover {
            color: #b8860b;
        }
        @media (max-width: 820px) {
            .container {
                padding: 16px 16px 30px;
                border-radius: 16px;
                margin-top: 12px;
                margin-bottom: 20px;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
                margin-top: 36px;
            }
            h3 {
                font-size: 20px;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
                padding: 18px 16px;
            }
            .search-section input[type="text"] {
                flex: 1 1 auto;
            }
            .search-section button {
                justify-content: center;
            }
            .my-logo {
                font-size: 24px;
            }
            .breadcrumb {
                font-size: 13px;
            }
        }
        @media (max-width: 680px) {
            .hamburger {
                display: inline-block;
            }
            nav#main-nav {
                width: 100%;
                display: none;
                margin-top: 12px;
                padding-top: 12px;
                border-top: 1px solid #f0ebe3;
            }
            nav#main-nav.open {
                display: block;
            }
            nav#main-nav ul {
                flex-direction: column;
                gap: 2px;
            }
            nav#main-nav ul li a {
                padding: 10px 0;
                border-bottom: 1px solid #f5f0ea;
                width: 100%;
            }
            header {
                padding-bottom: 8px;
            }
            .rating-stars {
                font-size: 26px;
            }
        }
        @media (min-width: 681px) {
            nav#main-nav {
                display: block !important;
            }
        }
        .emoji-lg {
            font-size: 22px;
            margin-right: 4px;
        }
        .highlight-box {
            background: #fcf8f2;
            border-left: 4px solid #b8860b;
            padding: 18px 22px;
            border-radius: 12px;
            margin: 24px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .inline-icon {
            margin-right: 6px;
            color: #b8860b;
        }
        a.insite-link {
            color: #8a6e2b;
            text-decoration: underline;
            text-underline-offset: 2px;
            font-weight: 500;
            transition: color 0.2s;
        }
        a.insite-link:hover {
            color: #b8860b;
        }
        ul,
        ol {
            margin: 0 0 20px 24px;
            color: #2a241e;
        }
        li {
            margin-bottom: 6px;
        }
        hr {
            border: none;
            border-top: 2px solid #f0ebe3;
            margin: 32px 0;
        }
