        *, *::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: #faf9f7;
            color: #1e1e1e;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        a { color: #b45f2b; text-decoration: none; transition: color 0.2s; }
        a:hover, a:focus { color: #7a3e1a; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.3; color: #2c2c2c; }
        .wrapper { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .site-header {
            background: #ffffff;
            border-bottom: 2px solid #e8dccc;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0,0,0,0.03);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: #3d2b1f;
            background: linear-gradient(135deg, #3d2b1f, #b45f2b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo:hover { text-decoration: none; opacity: 0.85; }
        .my-logo small { font-size: 0.6rem; display: block; font-weight: 400; letter-spacing: 0.3px; color: #7a6b5d; -webkit-text-fill-color: #7a6b5d; }
        .main-nav { display: flex; align-items: center; gap: 8px; }
        .main-nav a {
            padding: 8px 16px;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #3d2b1f;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover, .main-nav a.active { background: #efe5d9; color: #7a3e1a; text-decoration: none; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.6rem;
            color: #3d2b1f;
            cursor: pointer;
            padding: 4px 8px;
        }
        .hamburger:focus { outline: 2px solid #b45f2b; }
        .breadcrumb {
            background: #f3efe9;
            padding: 12px 0;
            font-size: 0.85rem;
            color: #5a4a3a;
        }
        .breadcrumb a { color: #7a5a3a; }
        .breadcrumb a:hover { color: #b45f2b; }
        .breadcrumb .sep { margin: 0 6px; color: #b39b87; }
        .hero {
            background: linear-gradient(145deg, #f7f2eb 0%, #e8dccc 100%);
            padding: 48px 0 40px;
            border-radius: 0 0 40px 40px;
            margin-bottom: 32px;
        }
        .hero h1 { font-size: 2.6rem; margin-bottom: 12px; color: #2c1f14; }
        .hero p { font-size: 1.15rem; color: #4d3a2a; max-width: 720px; }
        .search-block {
            background: #ffffff;
            border-radius: 60px;
            padding: 6px 6px 6px 20px;
            display: flex;
            align-items: center;
            max-width: 560px;
            margin-top: 24px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            border: 1px solid #ddd6cc;
        }
        .search-block i { color: #b39b87; font-size: 1rem; }
        .search-block input {
            flex: 1;
            border: none;
            padding: 12px 12px;
            font-size: 0.95rem;
            background: transparent;
            outline: none;
            font-family: inherit;
            color: #1e1e1e;
        }
        .search-block input::placeholder { color: #a0907e; }
        .search-block button {
            background: #b45f2b;
            border: none;
            color: #fff;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.2s;
            font-family: inherit;
        }
        .search-block button:hover { background: #7a3e1a; }
        .content-grid { display: grid; grid-template-columns: 1fr 300px; gap: 48px; margin: 40px 0; }
        .content-main { min-width: 0; }
        .content-sidebar { position: sticky; top: 120px; align-self: start; }
        .content-main h2 {
            font-size: 1.8rem;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #e8dccc;
        }
        .content-main h3 {
            font-size: 1.35rem;
            margin: 32px 0 12px;
            color: #3d2b1f;
        }
        .content-main h4 {
            font-size: 1.1rem;
            margin: 24px 0 8px;
            color: #5a4a3a;
            font-weight: 600;
        }
        .content-main p { margin-bottom: 20px; color: #2e2a26; }
        .content-main ul, .content-main ol { margin: 16px 0 24px 24px; }
        .content-main li { margin-bottom: 8px; }
        .content-main blockquote {
            border-left: 4px solid #b45f2b;
            background: #f7f2eb;
            padding: 16px 24px;
            margin: 24px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #4d3a2a;
        }
        .feature-image {
            margin: 32px 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
        }
        .feature-image img { width: 100%; object-fit: cover; }
        .feature-image figcaption { padding: 12px 16px; background: #f7f2eb; font-size: 0.85rem; color: #5a4a3a; text-align: center; }
        .inline-link-list { background: #f7f2eb; padding: 20px 24px; border-radius: 16px; margin: 24px 0; }
        .inline-link-list a { display: inline-block; margin: 4px 8px 4px 0; }
        .comment-section, .score-section {
            background: #ffffff;
            border-radius: 24px;
            padding: 32px;
            margin: 40px 0;
            box-shadow: 0 4px 24px rgba(0,0,0,0.04);
            border: 1px solid #ece6dd;
        }
        .comment-section h3, .score-section h3 { margin-top: 0; }
        .comment-form, .score-form { display: flex; flex-direction: column; gap: 16px; margin-top: 16px; }
        .comment-form textarea, .comment-form input, .score-form select, .score-form input {
            padding: 14px 18px;
            border: 1px solid #ddd6cc;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fcfaf7;
            transition: border 0.2s;
        }
        .comment-form textarea:focus, .comment-form input:focus, .score-form select:focus {
            border-color: #b45f2b;
            outline: none;
        }
        .comment-form button, .score-form button {
            align-self: flex-start;
            background: #3d2b1f;
            color: #fff;
            border: none;
            padding: 12px 36px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-family: inherit;
            font-size: 0.95rem;
        }
        .comment-form button:hover, .score-form button:hover { background: #b45f2b; }
        .sidebar-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 24px;
            margin-bottom: 24px;
            border: 1px solid #ece6dd;
            box-shadow: 0 4px 16px rgba(0,0,0,0.03);
        }
        .sidebar-card h4 { margin-top: 0; font-size: 1.05rem; border-bottom: 2px solid #e8dccc; padding-bottom: 8px; }
        .sidebar-card ul { list-style: none; margin: 12px 0 0; padding: 0; }
        .sidebar-card li { margin-bottom: 10px; }
        .sidebar-card a { font-size: 0.9rem; }
        .site-footer {
            background: #2c1f14;
            color: #d9cdc1;
            padding: 48px 0 32px;
            margin-top: 60px;
        }
        .site-footer a { color: #e0cbb8; }
        .site-footer a:hover { color: #f5e6d8; }
        .footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
        .footer-copy { grid-column: 1 / -1; border-top: 1px solid #4d3a2a; padding-top: 24px; margin-top: 24px; font-size: 0.85rem; text-align: center; color: #a0907e; }
        friend-link { display: block; margin-top: 8px; font-style: normal; }
        friend-link a { display: inline-block; margin: 4px 12px 4px 0; }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
            .content-sidebar { position: static; }
            .footer-inner { grid-template-columns: 1fr 1fr; }
            .hero h1 { font-size: 2rem; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #ffffff;
                padding: 16px 0 8px;
                border-top: 1px solid #e8dccc;
                margin-top: 12px;
            }
            .main-nav.open { display: flex; }
            .main-nav a { padding: 12px 20px; border-radius: 0; width: 100%; }
            .hero h1 { font-size: 1.7rem; }
            .search-block { flex-direction: column; border-radius: 24px; padding: 12px; }
            .search-block input { width: 100%; padding: 10px 0; }
            .search-block button { width: 100%; margin-top: 8px; }
            .footer-inner { grid-template-columns: 1fr; gap: 24px; }
            .comment-section, .score-section { padding: 20px; }
        }
        .emoji-lg { font-size: 1.4rem; }
        .badge { background: #efe5d9; color: #3d2b1f; padding: 2px 12px; border-radius: 40px; font-size: 0.75rem; font-weight: 600; }
        .mt-2 { margin-top: 16px; }
        .mb-2 { margin-bottom: 16px; }
        .flex { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
        .star-rating { display: flex; gap: 6px; font-size: 1.8rem; color: #e0cbb8; cursor: pointer; }
        .star-rating .fas { color: #e0cbb8; transition: color 0.15s; }
        .star-rating .fas.active, .star-rating .fas:hover { color: #f5b342; }
