* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8f6f0;
            color: #2d2a24;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #b85c2a;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #8a3f1a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        header {
            background: #2d2a24;
            color: #f8f6f0;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            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;
            gap: 12px;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 2px;
            color: #f8f6f0;
            background: #b85c2a;
            padding: 6px 20px;
            border-radius: 40px;
            display: inline-block;
            transition: background 0.3s, transform 0.2s;
        }
        .my-logo:hover {
            background: #d4743e;
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo a {
            color: #f8f6f0;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 28px;
            background: none;
            border: none;
            color: #f8f6f0;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        nav a {
            color: #f8f6f0;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 14px;
            transition: background 0.2s, color 0.2s;
        }
        nav a:hover {
            background: #b85c2a;
            color: #fff;
            text-decoration: none;
        }
        .breadcrumb {
            background: #ede9e0;
            padding: 12px 0;
            font-size: 14px;
            border-bottom: 1px solid #d9d2c4;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 10px;
            color: #8a7f6e;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #6d5c4a;
        }
        .breadcrumb a:hover {
            color: #b85c2a;
        }
        .breadcrumb .current {
            color: #2d2a24;
            font-weight: 600;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 48px;
            padding: 40px 0 60px;
        }
        .content-area h1 {
            font-size: 38px;
            font-weight: 800;
            color: #2d2a24;
            margin-bottom: 12px;
            line-height: 1.2;
        }
        .content-area h2 {
            font-size: 28px;
            font-weight: 700;
            color: #2d2a24;
            margin-top: 48px;
            margin-bottom: 16px;
            border-left: 6px solid #b85c2a;
            padding-left: 18px;
        }
        .content-area h3 {
            font-size: 22px;
            font-weight: 600;
            color: #3d352e;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        .content-area h4 {
            font-size: 18px;
            font-weight: 600;
            color: #4d4238;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        .content-area p {
            margin-bottom: 18px;
            font-size: 16px;
            color: #3d352e;
        }
        .content-area ul,
        .content-area ol {
            margin-bottom: 18px;
            padding-left: 28px;
        }
        .content-area li {
            margin-bottom: 6px;
        }
        .content-area .highlight-box {
            background: #ede9e0;
            border-left: 6px solid #b85c2a;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .content-area .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .last-updated {
            display: inline-block;
            background: #2d2a24;
            color: #f8f6f0;
            padding: 4px 18px;
            border-radius: 30px;
            font-size: 13px;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 28px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #e8e2d6;
        }
        .sidebar-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: #2d2a24;
            margin-bottom: 14px;
            padding-bottom: 8px;
            border-bottom: 2px solid #b85c2a;
            display: inline-block;
        }
        .sidebar-link-list {
            list-style: none;
            padding: 0;
        }
        .sidebar-link-list li {
            margin-bottom: 10px;
            padding: 0;
        }
        .sidebar-link-list a {
            display: block;
            padding: 10px 14px;
            background: #f8f6f0;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 500;
            color: #2d2a24;
            transition: background 0.2s, transform 0.15s;
            border-left: 3px solid transparent;
        }
        .sidebar-link-list a:hover {
            background: #ede9e0;
            border-left-color: #b85c2a;
            transform: translateX(4px);
            text-decoration: none;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin-top: 8px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 16px;
            border: 2px solid #d9d2c4;
            border-radius: 40px;
            font-size: 15px;
            outline: none;
            transition: border 0.2s;
            background: #f8f6f0;
        }
        .search-form input:focus {
            border-color: #b85c2a;
        }
        .search-form button {
            background: #b85c2a;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0 22px;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-form button:hover {
            background: #8a3f1a;
        }
        .comment-score-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 24px 0;
        }
        .comment-form textarea,
        .score-form select,
        .score-form input,
        .comment-form input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #d9d2c4;
            border-radius: 12px;
            font-size: 15px;
            outline: none;
            background: #f8f6f0;
            transition: border 0.2s;
            font-family: inherit;
        }
        .comment-form textarea:focus,
        .score-form select:focus,
        .score-form input:focus,
        .comment-form input:focus {
            border-color: #b85c2a;
        }
        .comment-form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .comment-form button,
        .score-form button {
            background: #2d2a24;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            margin-top: 8px;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: #b85c2a;
            transform: scale(1.02);
        }
        .score-form select {
            appearance: auto;
        }
        .score-form .star-display {
            font-size: 28px;
            color: #e0c8a8;
            letter-spacing: 4px;
            margin-bottom: 8px;
        }
        .score-form .star-display span {
            cursor: pointer;
            transition: color 0.15s;
        }
        .score-form .star-display span:hover,
        .score-form .star-display span.active {
            color: #f5b342;
        }
        .featured-image {
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
        }
        .featured-image figcaption {
            background: #ede9e0;
            padding: 12px 20px;
            font-size: 14px;
            color: #5d4f3e;
            font-style: italic;
        }
        footer {
            background: #2d2a24;
            color: #d9d2c4;
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 32px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        footer h4 {
            color: #f8f6f0;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 14px;
        }
        footer a {
            color: #b8ad9a;
        }
        footer a:hover {
            color: #f5b342;
        }
        friend-link {
            display: block;
            margin-top: 8px;
        }
        friend-link a {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 6px;
            font-size: 14px;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            font-size: 14px;
            color: #8a7f6e;
        }
        .copyright strong {
            color: #d9d2c4;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .sidebar-card {
                margin-bottom: 0;
            }
            footer .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 4px;
                padding-top: 12px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 8px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 12px 16px;
                border-radius: 8px;
            }
            .content-area h1 {
                font-size: 28px;
            }
            .content-area h2 {
                font-size: 22px;
            }
            .content-area h3 {
                font-size: 18px;
            }
            .comment-score-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .main-grid {
                padding: 24px 0 40px;
            }
            .my-logo {
                font-size: 22px;
                padding: 4px 16px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                padding: 12px;
            }
            .content-area h1 {
                font-size: 24px;
            }
        }
        .emoji-lg {
            font-size: 28px;
            vertical-align: middle;
        }
        .text-accent {
            color: #b85c2a;
            font-weight: 600;
        }
        .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;
        }
        html {
            scroll-behavior: smooth;
        }
        .star-input {
            display: flex;
            gap: 4px;
            font-size: 28px;
            color: #d9d2c4;
            cursor: pointer;
        }
        .star-input span {
            transition: color 0.15s;
        }
        .star-input span.hover,
        .star-input span.selected {
            color: #f5b342;
        }
