        *,
        *::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: #f9f7f2;
            color: #2d2a24;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        a {
            color: #c45a2c;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #9a3f1d;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        :root {
            --primary: #e8782a;
            --primary-dark: #c45a2c;
            --secondary: #2b7a78;
            --accent: #f5c842;
            --bg-cream: #f9f7f2;
            --bg-card: #ffffff;
            --text-dark: #2d2a24;
            --text-mid: #5a5245;
            --text-light: #8a7f6f;
            --border: #e2dcd0;
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
            --shadow-hover: 0 12px 36px rgba(0, 0, 0, 0.10);
        }
        .site-header {
            background: linear-gradient(135deg, #f9f0e0 0%, #fce9d4 100%);
            border-bottom: 3px solid var(--accent);
            padding: 16px 0 12px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-dark);
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }
        .my-logo i {
            font-size: 2rem;
            color: var(--primary);
        }
        .my-logo:hover {
            text-decoration: none;
            color: var(--primary);
        }
        .my-logo span {
            font-weight: 300;
            color: var(--text-mid);
            font-size: 1rem;
            margin-left: 2px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary-dark);
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(232, 120, 42, 0.12);
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 8px 16px;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.9rem;
            color: var(--text-dark);
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: var(--primary);
            color: #fff;
            text-decoration: none;
        }
        .main-nav a.active {
            background: var(--primary-dark);
            color: #fff;
        }
        .breadcrumb {
            padding: 12px 0 4px;
            font-size: 0.85rem;
            color: var(--text-light);
            display: flex;
            flex-wrap: wrap;
            gap: 4px 8px;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--text-mid);
        }
        .breadcrumb a:hover {
            color: var(--primary-dark);
        }
        .breadcrumb .sep {
            color: var(--text-light);
            font-size: 0.7rem;
        }
        .breadcrumb .current {
            color: var(--primary-dark);
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #fceae0 0%, #f5dcc8 100%);
            border-radius: 24px;
            padding: 40px 36px;
            margin: 24px 0 32px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🐱";
            font-size: 8rem;
            position: absolute;
            right: 20px;
            bottom: -10px;
            opacity: 0.10;
            pointer-events: none;
            transform: rotate(8deg);
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--primary-dark);
            line-height: 1.2;
            margin-bottom: 16px;
            max-width: 70%;
        }
        .hero p {
            font-size: 1.15rem;
            color: var(--text-mid);
            max-width: 65%;
            margin-bottom: 20px;
        }
        .hero .meta-badge {
            display: inline-block;
            background: var(--accent);
            padding: 6px 18px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--text-dark);
            box-shadow: 0 2px 6px rgba(245, 200, 66, 0.3);
        }
        .last-updated {
            display: block;
            margin-top: 12px;
            font-size: 0.85rem;
            color: var(--text-light);
        }
        .last-updated i {
            margin-right: 4px;
        }
        .search-section {
            margin: 24px 0 32px;
        }
        .search-form {
            display: flex;
            max-width: 560px;
            background: #fff;
            border-radius: 60px;
            box-shadow: var(--shadow);
            overflow: hidden;
            border: 2px solid var(--border);
            transition: border-color 0.2s;
        }
        .search-form:focus-within {
            border-color: var(--primary);
        }
        .search-form input {
            flex: 1;
            padding: 14px 22px;
            border: none;
            font-size: 1rem;
            background: transparent;
            outline: none;
            color: var(--text-dark);
        }
        .search-form input::placeholder {
            color: var(--text-light);
        }
        .search-form button {
            padding: 14px 28px;
            background: var(--primary);
            color: #fff;
            border: none;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: var(--primary-dark);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            margin: 32px 0;
        }
        .content-main {
            min-width: 0;
        }
        .content-sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .section-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 32px 28px;
            margin-bottom: 32px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        .section-card h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 16px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--accent);
            display: inline-block;
        }
        .section-card h2 i {
            margin-right: 10px;
            color: var(--primary);
        }
        .section-card h3 {
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--text-dark);
            margin: 24px 0 12px;
        }
        .section-card h3 i {
            margin-right: 8px;
            color: var(--secondary);
        }
        .section-card h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-mid);
            margin: 16px 0 8px;
        }
        .section-card p {
            margin-bottom: 16px;
            color: var(--text-mid);
        }
        .section-card ul,
        .section-card ol {
            margin: 12px 0 16px 24px;
            color: var(--text-mid);
        }
        .section-card li {
            margin-bottom: 8px;
        }
        .section-card .highlight {
            background: #fef6e7;
            padding: 16px 20px;
            border-radius: 12px;
            border-left: 4px solid var(--accent);
            margin: 16px 0;
        }
        .section-card .highlight strong {
            color: var(--primary-dark);
        }
        .section-card .emoji-lg {
            font-size: 1.4rem;
            margin-right: 4px;
        }
        .featured-image {
            margin: 20px 0 24px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            background: #f0e8de;
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .featured-image .img-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, #f5dcc8, #e8cfb8);
            color: var(--text-mid);
            font-size: 1.2rem;
            padding: 20px;
            text-align: center;
        }
        .featured-image .img-placeholder i {
            font-size: 4rem;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .featured-image .img-placeholder span {
            font-weight: 500;
        }
        .sidebar-box {
            background: var(--bg-card);
            border-radius: 16px;
            padding: 24px 20px;
            margin-bottom: 24px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        .sidebar-box h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 14px;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 8px;
        }
        .sidebar-box ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-box ul li {
            padding: 6px 0;
            border-bottom: 1px solid var(--border);
        }
        .sidebar-box ul li:last-child {
            border-bottom: none;
        }
        .sidebar-box ul li a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }
        .sidebar-box ul li a i {
            color: var(--primary);
            font-size: 0.85rem;
            width: 18px;
            text-align: center;
        }
        .comment-form,
        .score-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 16px;
        }
        .comment-form textarea,
        .comment-form input,
        .score-form select,
        .score-form input {
            padding: 12px 16px;
            border: 2px solid var(--border);
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            background: #fff;
            transition: border-color 0.2s;
            width: 100%;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .score-form select:focus,
        .score-form input:focus {
            outline: none;
            border-color: var(--primary);
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form .btn,
        .score-form .btn {
            padding: 12px 28px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            align-self: flex-start;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form .btn:hover,
        .score-form .btn:hover {
            background: var(--primary-dark);
            transform: scale(1.02);
        }
        .comment-form .btn i,
        .score-form .btn i {
            font-size: 0.9rem;
        }
        friend-link {
            display: block;
            background: var(--bg-card);
            border-radius: 16px;
            padding: 24px 28px;
            margin: 32px 0 16px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        friend-link h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 14px;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 8px;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
        }
        friend-link ul li a {
            font-weight: 500;
            padding: 4px 0;
            display: inline-block;
        }
        friend-link ul li a i {
            margin-right: 6px;
            color: var(--primary);
            font-size: 0.8rem;
        }
        .site-footer {
            background: #2d2a24;
            color: #e2dcd0;
            padding: 40px 0 28px;
            margin-top: 48px;
            border-radius: 24px 24px 0 0;
        }
        .site-footer .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        .site-footer h4 {
            color: var(--accent);
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        .site-footer p,
        .site-footer a {
            color: #d4cdc0;
            font-size: 0.9rem;
        }
        .site-footer a:hover {
            color: var(--accent);
        }
        .site-footer .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid #4a443a;
            padding-top: 20px;
            margin-top: 24px;
            text-align: center;
            font-size: 0.85rem;
            color: #a89f8e;
        }
        .site-footer .copyright strong {
            color: #e2dcd0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .content-sidebar {
                position: static;
            }
            .hero h1 {
                font-size: 2rem;
                max-width: 100%;
            }
            .hero p {
                max-width: 100%;
                font-size: 1rem;
            }
            .hero::after {
                font-size: 5rem;
                right: 10px;
                bottom: -5px;
            }
            .site-footer .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 12px;
                gap: 2px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 16px;
                border-radius: 8px;
                font-size: 1rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo span {
                font-size: 0.8rem;
            }
            .hero {
                padding: 28px 20px;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .section-card {
                padding: 20px 16px;
            }
            .section-card h2 {
                font-size: 1.4rem;
            }
            .section-card h3 {
                font-size: 1.15rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 20px;
            }
            .search-form input {
                padding: 12px 18px;
            }
            .search-form button {
                padding: 12px 18px;
                justify-content: center;
            }
            .site-footer .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            friend-link ul {
                flex-direction: column;
                gap: 6px;
            }
            .breadcrumb {
                font-size: 0.78rem;
            }
            .featured-image .img-placeholder i {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 1.3rem;
            }
            .hero .meta-badge {
                font-size: 0.75rem;
                padding: 4px 14px;
            }
            .section-card {
                padding: 16px 12px;
            }
            .section-card h2 {
                font-size: 1.2rem;
            }
            .comment-form .btn,
            .score-form .btn {
                width: 100%;
                justify-content: center;
            }
        }
        .scroll-anchor {
            scroll-margin-top: 100px;
        }
        .schema-hidden {
            display: none;
        }
