        *,
        *::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: #fafaf8;
            color: #1e1e1e;
            line-height: 1.7;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #9b4b2e;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #6d3420;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 600;
            line-height: 1.3;
            color: #1e1e1e;
        }
        h1 {
            font-size: 2.4rem;
            margin: 0.5rem 0 1.2rem;
            border-left: 6px solid #c0392b;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
            border-bottom: 2px solid #e8d5c4;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 2rem 0 0.6rem;
            color: #2c3e50;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.4rem;
            color: #3e2c1f;
        }
        p {
            margin: 0 0 1.2rem;
            color: #2d2d2d;
        }
        ul,
        ol {
            margin: 0 0 1.2rem 1.6rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        blockquote {
            border-left: 4px solid #c0392b;
            background: #f7efe9;
            padding: 1rem 1.6rem;
            margin: 1.5rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #3e2c1f;
        }
        hr {
            border: none;
            border-top: 2px solid #e8d5c4;
            margin: 2.5rem 0;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 0;
            border-bottom: 2px solid #e8d5c4;
            position: relative;
            background: #fafaf8;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #9b4b2e, #c0392b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            text-decoration: none !important;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none !important;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            -webkit-text-fill-color: #666;
            color: #666;
            letter-spacing: 0;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        .main-nav {
            display: flex;
            gap: 1.2rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .main-nav a {
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .main-nav a:hover {
            background: #f0e4db;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #9b4b2e;
            padding: 0.2rem 0.5rem;
        }
        .hamburger:focus {
            outline: 2px solid #c0392b;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            list-style: none;
            margin: 0.8rem 0 0.2rem;
            padding: 0;
            font-size: 0.9rem;
            color: #7f7f7f;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #b08a7a;
        }
        .breadcrumb a {
            color: #9b4b2e;
        }
        .breadcrumb .active {
            color: #3e2c1f;
            font-weight: 500;
        }
        .search-section {
            background: #f7efe9;
            border-radius: 16px;
            padding: 2rem 2.2rem;
            margin: 2rem 0 1.8rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
        }
        .search-section label {
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form {
            display: flex;
            flex: 1 1 300px;
            gap: 0.5rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 2px solid #dcc4b6;
            border-radius: 30px;
            font-size: 1rem;
            background: #fff;
            transition: border 0.2s;
            min-width: 0;
        }
        .search-form input:focus {
            border-color: #9b4b2e;
            outline: none;
        }
        .search-form button {
            background: #9b4b2e;
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 0.7rem 1.6rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            white-space: nowrap;
        }
        .search-form button:hover {
            background: #6d3420;
            transform: scale(1.02);
        }
        .hero-figure {
            margin: 1.8rem 0 2.2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            background: #e8d5c4;
        }
        .hero-figure img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .hero-figure figcaption {
            padding: 0.8rem 1.4rem;
            font-size: 0.9rem;
            color: #4a3a2e;
            background: #f7efe9;
            font-style: italic;
        }
        .content-layout {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 2.5rem;
            margin: 1.5rem 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 1.5rem;
            align-self: start;
            background: #f7efe9;
            border-radius: 16px;
            padding: 1.6rem 1.4rem;
            font-size: 0.95rem;
        }
        .sidebar h3 {
            font-size: 1.1rem;
            margin-top: 0;
            border-bottom: 2px solid #dcc4b6;
            padding-bottom: 0.4rem;
        }
        .sidebar ul {
            list-style: none;
            margin: 0.8rem 0 0;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 0.5rem;
            padding: 0.2rem 0;
            border-bottom: 1px dashed #e0cfc2;
        }
        .sidebar li:last-child {
            border-bottom: none;
        }
        .sidebar a {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .interaction-box {
            background: #f7efe9;
            border-radius: 16px;
            padding: 2rem 2.2rem;
            margin: 2.5rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem 3rem;
        }
        .rating-area,
        .comment-area {
            flex: 1 1 260px;
        }
        .rating-area h3,
        .comment-area h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .star-group {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #dcc4b6;
            cursor: pointer;
            margin: 0.6rem 0 0.8rem;
        }
        .star-group .fas.fa-star {
            color: #e6a817;
        }
        .star-group .far.fa-star {
            color: #b08a7a;
        }
        .star-group i {
            transition: transform 0.15s, color 0.15s;
        }
        .star-group i:hover {
            transform: scale(1.2);
        }
        .rating-form button,
        .comment-form button {
            background: #9b4b2e;
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 0.6rem 1.6rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #6d3420;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #dcc4b6;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 80px;
            background: #fff;
            transition: border 0.2s;
        }
        .comment-form textarea:focus {
            border-color: #9b4b2e;
            outline: none;
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 0.6rem 1rem;
            border: 2px solid #dcc4b6;
            border-radius: 30px;
            font-size: 0.95rem;
            background: #fff;
            margin: 0.4rem 0 0.8rem;
        }
        .comment-form input:focus {
            border-color: #9b4b2e;
            outline: none;
        }
        .site-footer {
            margin-top: auto;
            border-top: 2px solid #e8d5c4;
            padding: 2rem 0 1.5rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem;
            font-size: 0.95rem;
        }
        .site-footer .copyright {
            color: #5a4a3e;
        }
        .site-footer .copyright small {
            display: block;
            color: #8a7a6e;
            margin-top: 0.3rem;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.6rem;
            align-items: center;
            background: #f7efe9;
            padding: 0.8rem 1.4rem;
            border-radius: 40px;
            font-weight: 500;
        }
        friend-link a {
            color: #9b4b2e;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        friend-link::before {
            content: "🤝 Friends";
            font-weight: 600;
            color: #3e2c1f;
            margin-right: 0.4rem;
        }
        @media (max-width: 860px) {
            .content-layout {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .main-content {
                order: 1;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .site-header {
                flex-wrap: wrap;
            }
            .nav-wrapper {
                flex-basis: 100%;
                display: none;
                flex-direction: column;
                background: #fafaf8;
                padding: 1rem 0 0.5rem;
                border-top: 1px solid #e8d5c4;
                margin-top: 0.6rem;
            }
            .nav-wrapper.open {
                display: flex;
            }
            .main-nav {
                flex-direction: column;
                gap: 0.5rem;
                width: 100%;
            }
            .main-nav a {
                display: block;
                padding: 0.5rem 0.8rem;
            }
            .hamburger {
                display: block;
            }
            .interaction-box {
                flex-direction: column;
                gap: 1.8rem;
                padding: 1.6rem;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
                padding: 1.4rem 1.2rem;
            }
            .search-form {
                flex-wrap: wrap;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .site-footer {
                flex-direction: column;
                align-items: flex-start;
            }
            friend-link {
                flex-wrap: wrap;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.5rem;
                padding-left: 0.6rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .hero-figure {
                margin: 1rem 0;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
        }
        .text-muted {
            color: #7a6a5e;
        }
        .badge {
            display: inline-block;
            background: #c0392b;
            color: #fff;
            padding: 0.15rem 0.7rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            vertical-align: middle;
        }
        .last-updated {
            display: inline-block;
            background: #e8d5c4;
            padding: 0.2rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #3e2c1f;
            margin: 0.4rem 0 1.2rem;
        }
        .emoji-lg {
            font-size: 1.3em;
            margin-right: 0.2rem;
        }
        :target {
            scroll-margin-top: 1.2rem;
        }
