* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #f9f7f2;
            color: #2d2d2d;
            line-height: 1.8;
            font-size: 16px;
        }
        a {
            color: #c4452b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #a3321d;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #f55b3e 0%, #c4452b 100%);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: #fff;
            text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #fff;
        }
        .my-logo i {
            margin-right: 8px;
            color: #ffd966;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            color: #fff;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: background 0.25s, transform 0.2s;
            display: inline-block;
        }
        .nav-list li a:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-2px);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255,255,255,0.2);
        }
        .breadcrumb {
            background: #f0ebe3;
            padding: 12px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #e0d8cc;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 12px;
            color: #999;
        }
        .breadcrumb a {
            color: #7a5a4a;
        }
        .breadcrumb .current {
            color: #c4452b;
            font-weight: 600;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 900;
            color: #2d1f1a;
            margin-bottom: 12px;
            line-height: 1.2;
        }
        h1 i {
            color: #f55b3e;
        }
        .last-updated {
            display: inline-block;
            background: #e8ddd0;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #5a4036;
            margin-bottom: 28px;
            font-weight: 500;
        }
        .last-updated i {
            margin-right: 6px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #2d1f1a;
            margin: 48px 0 16px;
            border-left: 6px solid #f55b3e;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #3d2d24;
            margin: 32px 0 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #4d3a30;
            margin: 24px 0 8px;
        }
        p {
            margin-bottom: 18px;
            color: #3a2f2a;
        }
        .intro-box {
            background: #fff8f0;
            border-radius: 20px;
            padding: 30px 34px;
            border: 1px solid #f0e4d8;
            margin: 20px 0 30px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
        }
        .featured-image {
            border-radius: 20px;
            overflow: hidden;
            margin: 30px 0;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .featured-image figcaption {
            background: #f0ebe3;
            padding: 10px 20px;
            font-size: 0.85rem;
            color: #5a4a3e;
            text-align: center;
        }
        .inline-link-list {
            background: #f4eee7;
            border-radius: 16px;
            padding: 20px 26px;
            margin: 24px 0;
            border-left: 4px solid #f55b3e;
        }
        .inline-link-list ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
        }
        .inline-link-list ul li a {
            font-weight: 600;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s;
        }
        .inline-link-list ul li a:hover {
            border-bottom-color: #f55b3e;
            text-decoration: none;
        }
        .search-section {
            background: #fff;
            border-radius: 20px;
            padding: 32px 34px;
            margin: 40px 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            border: 1px solid #ece4da;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #e0d4c8;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            background: #faf8f5;
        }
        .search-form input[type="text"]:focus {
            border-color: #f55b3e;
        }
        .search-form button {
            background: #f55b3e;
            color: #fff;
            border: none;
            padding: 14px 34px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
        }
        .search-form button:hover {
            background: #c4452b;
            transform: translateY(-2px);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0;
        }
        @media (max-width:800px) {
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        .card {
            background: #fff;
            border-radius: 20px;
            padding: 28px 30px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            border: 1px solid #ece4da;
        }
        .card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .card h3 i {
            color: #f55b3e;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e0d4c8;
            border-radius: 16px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border-color 0.3s;
            background: #faf8f5;
        }
        .comment-form textarea:focus {
            border-color: #f55b3e;
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 12px 18px;
            border: 2px solid #e0d4c8;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            background: #faf8f5;
            margin: 10px 0;
        }
        .comment-form input[type="text"]:focus {
            border-color: #f55b3e;
        }
        .comment-form button {
            background: #f55b3e;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
            font-size: 1rem;
            margin-top: 6px;
        }
        .comment-form button:hover {
            background: #c4452b;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin: 12px 0 16px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .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-form button {
            background: #f55b3e;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
            font-size: 1rem;
        }
        .rating-form button:hover {
            background: #c4452b;
            transform: translateY(-2px);
        }
        footer {
            background: #2d1f1a;
            color: #e8ddd0;
            padding: 40px 0 30px;
            margin-top: 40px;
        }
        footer a {
            color: #f5b89e;
        }
        footer a:hover {
            color: #ffd9c4;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        @media (max-width:700px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        .footer-inner h4 {
            color: #ffd9c4;
            margin-top: 0;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .footer-inner ul {
            list-style: none;
        }
        .footer-inner ul li {
            margin-bottom: 6px;
        }
        .footer-inner ul li a {
            font-size: 0.95rem;
        }
        friend-link {
            display: block;
            padding: 12px 0;
            border-top: 1px solid #4a342c;
            margin-top: 30px;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 20px;
            padding: 4px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            font-size: 0.85rem;
            color: #b8a89c;
            border-top: 1px solid #4a342c;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(196,69,43,0.95);
                padding: 16px 0;
                border-radius: 0 0 20px 20px;
                margin-top: 12px;
                gap: 4px;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                padding: 12px 20px;
                border-radius: 0;
                width: 100%;
            }
            .header-inner {
                position: relative;
            }
            .nav-wrapper {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }
            .nav-list.open {
                display: flex;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .container {
                padding: 0 14px;
            }
            .intro-box {
                padding: 20px;
            }
            .search-section {
                padding: 20px;
            }
            .card {
                padding: 20px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
        }
        .mt-20 { margin-top: 20px; }
        .mb-20 { margin-bottom: 20px; }
        .highlight {
            background: linear-gradient(to top, #ffedd5 40%, transparent 40%);
            font-weight: 700;
        }
        .badge {
            display: inline-block;
            background: #f55b3e;
            color: #fff;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        html {
            scroll-behavior: smooth;
        }
        .schema-hidden {
            display: none;
        }
