        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #fef9f0;
            color: #2d2a24;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #c44b2e;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #8b2e1a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #fce4d6, #f8d5b0);
            padding: 16px 0;
            border-bottom: 3px solid #e6b88a;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #9b4b2e, #c96d3a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(201, 109, 58, 0.25);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo a {
            color: inherit;
            background: inherit;
            -webkit-background-clip: inherit;
            -webkit-text-fill-color: inherit;
            background-clip: inherit;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #5a3e2e;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(90, 62, 46, 0.1);
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 18px;
            list-style: none;
        }
        .nav-menu a {
            font-weight: 600;
            color: #5a3e2e;
            padding: 6px 2px;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .nav-menu a:hover {
            border-bottom-color: #c44b2e;
            color: #c44b2e;
            text-decoration: none;
        }
        .breadcrumb-wrap {
            background: #fff7ed;
            padding: 10px 0;
            border-bottom: 1px solid #f0ddd0;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            font-size: 0.9rem;
            color: #7a6a5a;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 10px;
            color: #c4a88a;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7a6a5a;
        }
        .breadcrumb a:hover {
            color: #c44b2e;
        }
        .breadcrumb .active {
            color: #c44b2e;
            font-weight: 600;
        }
        .page-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        @media (max-width: 992px) {
            .page-wrapper {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        .main-content h1 {
            font-size: 2.4rem;
            color: #5a2e1a;
            margin-bottom: 12px;
            line-height: 1.25;
            border-left: 6px solid #c96d3a;
            padding-left: 18px;
        }
        .main-content h2 {
            font-size: 1.8rem;
            color: #6b3f2a;
            margin-top: 40px;
            margin-bottom: 16px;
            border-bottom: 2px dashed #e6c8b0;
            padding-bottom: 6px;
        }
        .main-content h3 {
            font-size: 1.4rem;
            color: #7a4d34;
            margin-top: 28px;
            margin-bottom: 10px;
        }
        .main-content h4 {
            font-size: 1.15rem;
            color: #8b5e44;
            margin-top: 20px;
            margin-bottom: 8px;
            font-weight: 700;
        }
        .main-content p {
            margin-bottom: 18px;
            text-align: justify;
        }
        .main-content ul,
        .main-content ol {
            margin-bottom: 18px;
            padding-left: 28px;
        }
        .main-content li {
            margin-bottom: 8px;
        }
        .main-content .highlight-box {
            background: #fdf3ea;
            border-left: 5px solid #c96d3a;
            padding: 18px 22px;
            border-radius: 0 10px 10px 0;
            margin: 24px 0;
        }
        .main-content .highlight-box strong {
            color: #8b2e1a;
        }
        .main-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 0.95rem;
            background: #fffcf8;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        .main-content th,
        .main-content td {
            padding: 12px 16px;
            border: 1px solid #f0ddd0;
            text-align: left;
        }
        .main-content th {
            background: #e6c8b0;
            color: #3a2418;
            font-weight: 700;
        }
        .main-content tr:nth-child(even) {
            background: #faf0e8;
        }
        .main-content .featured-img {
            margin: 28px 0;
            border-radius: 14px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
        }
        .main-content .featured-img figcaption {
            font-size: 0.88rem;
            color: #7a6a5a;
            text-align: center;
            margin-top: 8px;
            font-style: italic;
        }
        .sidebar {
            background: #fffcf8;
            border-radius: 16px;
            padding: 24px 20px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            border: 1px solid #f0ddd0;
            align-self: start;
            position: sticky;
            top: 20px;
        }
        .sidebar h3 {
            font-size: 1.3rem;
            color: #5a2e1a;
            margin-bottom: 14px;
            border-bottom: 2px solid #e6c8b0;
            padding-bottom: 6px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 10px;
        }
        .sidebar a {
            display: block;
            padding: 6px 10px;
            background: #fdf3ea;
            border-radius: 8px;
            font-weight: 500;
            transition: background 0.2s, transform 0.15s;
        }
        .sidebar a:hover {
            background: #f0ddd0;
            transform: translateX(4px);
            text-decoration: none;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 16px 0 24px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 140px;
            padding: 10px 16px;
            border: 2px solid #e6c8b0;
            border-radius: 40px;
            font-size: 0.95rem;
            background: #fffcf8;
            transition: border-color 0.2s;
            outline: none;
        }
        .search-form input:focus {
            border-color: #c96d3a;
        }
        .search-form button {
            padding: 10px 24px;
            background: #c96d3a;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-form button:hover {
            background: #a8522a;
            transform: scale(1.02);
        }
        .comment-section,
        .rating-section {
            margin-top: 40px;
            padding-top: 28px;
            border-top: 2px solid #f0ddd0;
        }
        .comment-section h2,
        .rating-section h2 {
            font-size: 1.6rem;
            color: #5a2e1a;
            margin-bottom: 16px;
        }
        .comment-form textarea,
        .rating-form select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e6c8b0;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #fffcf8;
            resize: vertical;
            min-height: 90px;
            transition: border-color 0.2s;
            outline: none;
        }
        .comment-form textarea:focus,
        .rating-form select:focus {
            border-color: #c96d3a;
        }
        .comment-form button,
        .rating-form button {
            padding: 10px 28px;
            background: #6b3f2a;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            margin-top: 10px;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #4a2a1a;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #e6c8b0;
            cursor: pointer;
            margin: 8px 0;
        }
        .rating-stars .star {
            transition: color 0.2s, transform 0.1s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #f5b342;
            transform: scale(1.1);
        }
        .site-footer {
            background: #2d241e;
            color: #e0d4c8;
            padding: 40px 0 24px;
            margin-top: 50px;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 28px;
        }
        .footer-grid h4 {
            color: #f5dcc8;
            font-size: 1.1rem;
            margin-bottom: 12px;
            border-bottom: 1px solid #4a3a32;
            padding-bottom: 6px;
        }
        .footer-grid a {
            color: #c4b0a0;
            display: block;
            padding: 3px 0;
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        .footer-grid a:hover {
            color: #f5dcc8;
            text-decoration: none;
        }
        .footer-grid friend-link {
            display: block;
        }
        .footer-grid friend-link a {
            display: inline;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #4a3a32;
            font-size: 0.88rem;
            color: #a09080;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fce4d6;
                padding: 16px 0 10px;
                border-radius: 0 0 12px 12px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .header-inner {
                position: relative;
            }
            .main-content h1 {
                font-size: 1.8rem;
                padding-left: 12px;
            }
            .main-content h2 {
                font-size: 1.4rem;
            }
            .main-content h3 {
                font-size: 1.2rem;
            }
            .page-wrapper {
                margin: 20px auto;
            }
            .sidebar {
                position: static;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .container,
            .header-inner,
            .page-wrapper,
            .footer-inner {
                padding-left: 14px;
                padding-right: 14px;
            }
            .search-form input {
                min-width: 100px;
            }
            .main-content h1 {
                font-size: 1.5rem;
            }
        }
        .last-updated {
            font-size: 0.85rem;
            color: #8a7a6a;
            background: #fdf3ea;
            display: inline-block;
            padding: 4px 16px;
            border-radius: 30px;
            margin-bottom: 18px;
        }
        .emoji-lg {
            font-size: 1.3rem;
        }
        .tag {
            display: inline-block;
            background: #e6c8b0;
            color: #3a2418;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 4px;
        }
