        *,
        *::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, sans-serif;
            background: #fcf7f0;
            color: #2d2a24;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #c44536;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #8e2d1e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #1f1b16;
            font-weight: 700;
            margin-top: 1.8em;
            margin-bottom: 0.6em;
        }
        h1 {
            font-size: 2.6rem;
            margin-top: 0.4em;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 3px solid #f0c9b0;
            padding-bottom: 0.25em;
        }
        h3 {
            font-size: 1.5rem;
            color: #3a3028;
        }
        h4 {
            font-size: 1.2rem;
            color: #4d3f34;
        }
        p {
            margin-bottom: 1.2em;
        }
        ul,
        ol {
            margin: 0.6em 0 1.2em 1.8em;
        }
        li {
            margin-bottom: 0.4em;
        }
        strong {
            color: #1f1b16;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1f1b16 0%, #3a2f26 100%);
            padding: 14px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f7d94e, #f9a825);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
            background: inherit;
            -webkit-text-fill-color: transparent;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.5rem;
            display: block;
            -webkit-text-fill-color: #bbb5ae;
            color: #bbb5ae;
            letter-spacing: 1px;
            font-weight: 400;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f0e6da;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .primary-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .primary-nav a {
            color: #f0e6da;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .primary-nav a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #f7d94e;
            text-decoration: none;
        }
        .primary-nav a i {
            margin-right: 6px;
            font-size: 0.9rem;
        }
        .breadcrumb {
            background: #f1ebe4;
            padding: 12px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #e2d7cc;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            margin: 0;
            padding: 0 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb li {
            margin: 0;
            display: flex;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #a09080;
            font-size: 1.2rem;
        }
        .breadcrumb a {
            color: #6a5a4a;
        }
        .breadcrumb a:hover {
            color: #c44536;
        }
        .breadcrumb .current {
            color: #2d2a24;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #f7e9dc 0%, #fce9d4 100%);
            padding: 40px 0 50px;
            text-align: center;
            border-bottom: 4px solid #f0c9b0;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin: 0 0 10px;
            background: linear-gradient(135deg, #c44536, #8e2d1e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            color: #4d3f34;
            max-width: 720px;
            margin: 0 auto 20px;
        }
        .hero .meta {
            font-size: 0.95rem;
            color: #7a6a5a;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .hero .meta i {
            margin-right: 6px;
        }
        .search-section {
            background: #fff;
            padding: 30px 0;
            border-bottom: 1px solid #e2d7cc;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            border: 1px solid #dccfc2;
        }
        .search-form input {
            flex: 1;
            padding: 16px 22px;
            border: none;
            font-size: 1rem;
            background: #fff;
            outline: none;
            color: #2d2a24;
        }
        .search-form input::placeholder {
            color: #a09080;
        }
        .search-form button {
            background: #c44536;
            color: #fff;
            border: none;
            padding: 16px 30px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            font-weight: 600;
        }
        .search-form button:hover {
            background: #8e2d1e;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0 60px;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 28px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede6de;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 16px;
            border-bottom: 2px solid #f0c9b0;
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 10px;
        }
        .sidebar-card a {
            display: block;
            padding: 8px 12px;
            background: #f8f3ed;
            border-radius: 8px;
            transition: background 0.2s, transform 0.15s;
            font-weight: 500;
        }
        .sidebar-card a:hover {
            background: #f0c9b0;
            transform: translateX(4px);
            text-decoration: none;
        }
        .sidebar-card a i {
            margin-right: 8px;
            color: #c44536;
        }
        .image-wrapper {
            margin: 2em 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            background: #f1ebe4;
        }
        .image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
        }
        .image-wrapper figcaption {
            padding: 12px 18px;
            font-size: 0.9rem;
            color: #5a4e40;
            background: #f8f3ed;
            border-top: 1px solid #e2d7cc;
            font-style: italic;
        }
        .interaction-section {
            background: #fff;
            border-radius: 16px;
            padding: 28px 32px;
            margin: 2.5em 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede6de;
        }
        .interaction-section h3 {
            margin-top: 0;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #dccfc2;
            cursor: pointer;
            margin: 12px 0 16px;
            transition: color 0.15s;
        }
        .rating-stars i {
            transition: color 0.15s, transform 0.1s;
        }
        .rating-stars i:hover,
        .rating-stars i.hovered {
            color: #f9a825;
            transform: scale(1.1);
        }
        .rating-stars i.active {
            color: #f9a825;
        }
        .rating-form button,
        .comment-form button {
            background: #c44536;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #8e2d1e;
            transform: scale(1.02);
        }
        .comment-form textarea {
            width: 100%;
            padding: 16px 18px;
            border: 1px solid #dccfc2;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            background: #fcfaf7;
            transition: border 0.2s;
        }
        .comment-form textarea:focus {
            border-color: #c44536;
            outline: none;
            box-shadow: 0 0 0 3px rgba(196, 69, 54, 0.12);
        }
        .comment-form .form-group {
            margin-bottom: 16px;
        }
        .comment-form label {
            font-weight: 600;
            display: block;
            margin-bottom: 4px;
            color: #3a3028;
        }
        .rating-display {
            font-size: 1.1rem;
            color: #4d3f34;
            margin-top: 8px;
        }
        .rating-display i {
            color: #f9a825;
        }
        .site-footer {
            background: #1f1b16;
            color: #ccc5bc;
            padding: 40px 0 20px;
            border-top: 4px solid #3a2f26;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        .footer-inner h4 {
            color: #f0e6da;
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 2px solid #3a2f26;
            padding-bottom: 8px;
        }
        .footer-inner a {
            color: #cfa392;
        }
        .footer-inner a:hover {
            color: #f7d94e;
        }
        .footer-inner ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-inner li {
            margin-bottom: 6px;
        }
        friend-link {
            display: block;
            margin-top: 12px;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 16px;
            padding: 4px 0;
        }
        .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid #3a2f26;
            padding-top: 20px;
            margin-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: #9a8e80;
        }
        .copyright strong {
            color: #ccc5bc;
        }
        @media (max-width: 900px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 720px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                padding-top: 16px;
                gap: 4px;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                width: 100%;
                text-align: left;
                padding: 12px 16px;
                border-radius: 8px;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .interaction-section {
                padding: 20px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .search-form {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-form input {
                border-radius: 16px 16px 0 0;
            }
            .search-form button {
                border-radius: 0 0 16px 16px;
                padding: 14px;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .breadcrumb ol {
                padding: 0 14px;
                font-size: 0.8rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
        }
        .text-muted {
            color: #7a6a5a;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .gap-8 {
            gap: 8px;
        }
        .emoji-lg {
            font-size: 1.4em;
            display: inline-block;
        }
        .highlight-box {
            background: #f8f3ed;
            border-left: 4px solid #c44536;
            padding: 18px 22px;
            border-radius: 0 12px 12px 0;
            margin: 1.6em 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .btn-sm {
            background: #c44536;
            color: #fff;
            border: none;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .btn-sm:hover {
            background: #8e2d1e;
        }
