        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background: #faf8f5;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0 1rem;
            max-width: 1240px;
            margin: 0 auto;
        }
        a {
            color: #8b3a62;
            text-decoration: underline;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #c5598a;
            text-decoration: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
            font-weight: 700;
            line-height: 1.3;
            color: #2c1810;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #8b3a62;
            padding-left: 1.2rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #e6d6ce;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #4a2c24;
        }
        h4 {
            font-size: 1.15rem;
            color: #5a3a32;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        ul,
        ol {
            margin-left: 1.8rem;
            margin-bottom: 1.4rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        blockquote {
            border-left: 4px solid #8b3a62;
            background: #f0ebe7;
            padding: 1rem 1.5rem;
            margin: 1.6rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #3d2b24;
        }
        .container {
            padding: 1rem 0 2rem;
        }
        .badge {
            display: inline-block;
            background: #8b3a62;
            color: #fff;
            font-size: 0.75rem;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            letter-spacing: 0.5px;
            font-weight: 600;
            text-transform: uppercase;
        }
        header {
            padding: 1.2rem 0 0.6rem;
            border-bottom: 2px solid #e6d6ce;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            font-family: 'Segoe UI', Arial, sans-serif;
            color: #2c1810;
            text-decoration: none;
            letter-spacing: -0.5px;
            background: linear-gradient(145deg, #5a2a3a, #8b3a62);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #8b3a62;
            margin-right: 0.3rem;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            flex-wrap: wrap;
        }
        nav a {
            font-family: 'Segoe UI', Arial, sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            padding: 0.4rem 0.9rem;
            border-radius: 30px;
            background: transparent;
            color: #2c1810;
            text-decoration: none;
            transition: background 0.2s, color 0.2s;
        }
        nav a:hover {
            background: #8b3a62;
            color: #fff;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #2c1810;
            border-radius: 8px;
            padding: 0.4rem 0.7rem;
            font-size: 1.4rem;
            cursor: pointer;
            color: #2c1810;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #e6d6ce;
        }
        .nav-links {
            display: flex;
            gap: 0.4rem;
            flex-wrap: wrap;
        }
        .breadcrumb {
            font-size: 0.85rem;
            padding: 0.8rem 0 0.2rem;
            color: #6b5a52;
            width: 100%;
            border-top: 1px solid #e6d6ce;
            margin-top: 0.6rem;
        }
        .breadcrumb a {
            color: #6b5a52;
            text-decoration: underline;
        }
        .breadcrumb a:hover {
            color: #8b3a62;
        }
        .breadcrumb span {
            margin: 0 0.3rem;
        }
        .search-wrap {
            background: #f0ebe7;
            padding: 1.8rem 2rem;
            border-radius: 18px;
            margin: 2rem 0 1.8rem;
            text-align: center;
        }
        .search-wrap form {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.6rem;
            max-width: 640px;
            margin: 0 auto;
        }
        .search-wrap input[type="text"] {
            flex: 1 1 260px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #ccc5bf;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            transition: border 0.3s;
            outline: none;
        }
        .search-wrap input[type="text"]:focus {
            border-color: #8b3a62;
        }
        .search-wrap button {
            padding: 0.8rem 2rem;
            background: #8b3a62;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-wrap button:hover {
            background: #6d2c4e;
        }
        .featured-image {
            margin: 2rem 0 2.2rem;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .featured-image figcaption {
            font-size: 0.9rem;
            color: #6b5a52;
            text-align: center;
            margin-top: 0.6rem;
            font-style: italic;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.8rem 0 1.8rem;
        }
        .comment-box,
        .score-box {
            background: #f0ebe7;
            padding: 1.8rem 2rem;
            border-radius: 18px;
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-box form,
        .score-box form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .comment-box input,
        .comment-box textarea,
        .score-box select,
        .score-box button {
            padding: 0.7rem 1rem;
            border: 2px solid #ccc5bf;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            background: #fff;
            outline: none;
            transition: border 0.3s;
        }
        .comment-box input:focus,
        .comment-box textarea:focus,
        .score-box select:focus {
            border-color: #8b3a62;
        }
        .comment-box textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-box button,
        .score-box button {
            background: #8b3a62;
            color: #fff;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            padding: 0.7rem 1.6rem;
            border-radius: 40px;
            align-self: flex-start;
        }
        .comment-box button:hover,
        .score-box button:hover {
            background: #6d2c4e;
        }
        footer {
            border-top: 2px solid #e6d6ce;
            padding: 2rem 0 1.5rem;
            margin-top: 3rem;
            text-align: center;
        }
        friend-link {
            display: block;
            margin: 1.2rem 0 0.8rem;
            font-size: 1rem;
            color: #4a2c24;
        }
        friend-link a {
            margin: 0 0.5rem;
        }
        .copyright {
            font-size: 0.85rem;
            color: #6b5a52;
            margin-top: 0.8rem;
        }
        @media (max-width: 820px) {
            h1 {
                font-size: 1.8rem;
                padding-left: 0.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
            .search-wrap {
                padding: 1.2rem 1rem;
            }
            .search-wrap form {
                flex-direction: column;
                align-items: stretch;
            }
            .search-wrap input[type="text"] {
                flex: 1 1 auto;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #faf8f5;
                padding: 0.8rem 0 0.4rem;
                border-top: 1px solid #e6d6ce;
                margin-top: 0.6rem;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-toggle {
                display: inline-block;
            }
            header {
                align-items: flex-start;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.6rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            .comment-box,
            .score-box {
                padding: 1.2rem 1rem;
            }
            .comment-box button,
            .score-box button {
                width: 100%;
                text-align: center;
            }
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .inline-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
            list-style: none;
            margin-left: 0;
        }
        .inline-list li::before {
            content: "▸ ";
            color: #8b3a62;
        }
        .highlight {
            background: linear-gradient(120deg, #f0e3dd 0%, #f0e3dd 40%, transparent 80%);
            padding: 0 0.3rem;
            font-weight: 600;
        }
        .section-icon {
            margin-right: 0.6rem;
            color: #8b3a62;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.6rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #ece6e1;
        }
        th {
            background: #8b3a62;
            color: #fff;
            font-weight: 600;
            font-family: 'Segoe UI', Arial, sans-serif;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f8f2ef;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #6b5a52;
            text-align: right;
            margin-top: 0.2rem;
            font-style: italic;
        }
