*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #faf0f7;
            color: #2d1b2e;
            line-height: 1.7;
            padding: 0 1rem;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            background: #fffafd;
            box-shadow: 0 0 40px rgba(180, 80, 140, 0.08);
            border-radius: 32px 32px 0 0;
            overflow: hidden;
            padding: 0 1.5rem 2rem;
        }
        a {
            color: #b34180;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #6b2d5a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 20px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #c65b9b, #7a2d6e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        .my-logo a {
            background: inherit;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        header {
            padding: 1.2rem 0 0.6rem;
            border-bottom: 2px solid #f3e0ee;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #7a2d6e;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f3e0ee;
        }
        nav#main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.6rem;
            flex-wrap: wrap;
        }
        nav#main-nav a {
            font-weight: 600;
            padding: 0.3rem 0.6rem;
            border-radius: 20px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        nav#main-nav a:hover {
            background: #f3e0ee;
            text-decoration: none;
        }
        .breadcrumbs {
            padding: 0.8rem 0 0.2rem;
            font-size: 0.85rem;
            color: #7a6b78;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            list-style: none;
        }
        .breadcrumbs li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #c99bb8;
        }
        .breadcrumbs a {
            color: #7a6b78;
        }
        .breadcrumbs a:hover {
            color: #b34180;
        }
        .hero {
            padding: 2rem 0 1.5rem;
            text-align: center;
        }
        .hero h1 {
            font-size: clamp(2.2rem, 6vw, 4rem);
            font-weight: 900;
            line-height: 1.15;
            background: linear-gradient(135deg, #c65b9b, #4a1a44);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.6rem;
        }
        .hero .subtitle {
            font-size: 1.2rem;
            color: #6b4d63;
            max-width: 700px;
            margin: 0 auto 1.2rem;
        }
        .hero img {
            max-width: 100%;
            border-radius: 28px;
            margin: 1.2rem auto 0;
            box-shadow: 0 12px 40px rgba(120, 40, 100, 0.15);
        }
        .last-updated {
            display: inline-block;
            background: #f3e0ee;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #5a2d4e;
            margin-top: 0.8rem;
        }
        .search-bar {
            max-width: 560px;
            margin: 1.6rem auto 0;
            display: flex;
            border-radius: 60px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(180, 80, 140, 0.12);
            background: #fff;
            border: 1px solid #f0dceb;
        }
        .search-bar input {
            flex: 1;
            border: none;
            padding: 0.9rem 1.4rem;
            font-size: 1rem;
            outline: none;
            background: transparent;
            color: #2d1b2e;
        }
        .search-bar input::placeholder {
            color: #b38aa8;
        }
        .search-bar button {
            background: #b34180;
            border: none;
            color: #fff;
            padding: 0 1.6rem;
            font-size: 1.2rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-bar button:hover {
            background: #7a2d6e;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin-top: 2rem;
        }
        @media (max-width: 860px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .hamburger {
                display: block;
            }
            nav#main-nav {
                display: none;
                width: 100%;
                margin-top: 1rem;
                border-top: 1px solid #f3e0ee;
                padding-top: 1rem;
            }
            nav#main-nav.open {
                display: block;
            }
            nav#main-nav ul {
                flex-direction: column;
                gap: 0.6rem;
            }
            nav#main-nav a {
                display: block;
                padding: 0.6rem 1rem;
                background: #faf0f7;
                border-radius: 12px;
            }
            header {
                align-items: flex-start;
            }
        }
        .main-content h2 {
            font-size: 1.9rem;
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            color: #4a1a44;
            border-left: 6px solid #c65b9b;
            padding-left: 1rem;
        }
        .main-content h3 {
            font-size: 1.4rem;
            margin-top: 2rem;
            margin-bottom: 0.7rem;
            color: #6b2d5a;
        }
        .main-content h4 {
            font-size: 1.15rem;
            margin-top: 1.4rem;
            margin-bottom: 0.4rem;
            color: #8a3d76;
            font-weight: 700;
        }
        .main-content p {
            margin-bottom: 1.1rem;
            font-size: 1.05rem;
            color: #2d1b2e;
        }
        .main-content ul,
        .main-content ol {
            margin: 0.6rem 0 1.2rem 1.6rem;
        }
        .main-content li {
            margin-bottom: 0.4rem;
        }
        .main-content .highlight-box {
            background: #faf0f7;
            border-radius: 20px;
            padding: 1.6rem 2rem;
            margin: 1.6rem 0;
            border-left: 6px solid #c65b9b;
        }
        .inline-link-list {
            background: #fdf6fb;
            border-radius: 18px;
            padding: 1.2rem 1.8rem;
            margin: 1.2rem 0;
        }
        .inline-link-list a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
        }
        .sidebar {
            position: sticky;
            top: 1.5rem;
            align-self: start;
        }
        .sidebar-card {
            background: #faf0f7;
            border-radius: 24px;
            padding: 1.6rem 1.4rem;
            margin-bottom: 1.8rem;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            color: #4a1a44;
            margin-bottom: 0.8rem;
            border-bottom: 2px solid #f0dceb;
            padding-bottom: 0.5rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 0.5rem;
        }
        .sidebar-card a {
            display: block;
            padding: 0.4rem 0.6rem;
            border-radius: 12px;
            transition: background 0.2s;
            font-size: 0.95rem;
        }
        .sidebar-card a:hover {
            background: #f0dceb;
            text-decoration: none;
        }
        .rating-box {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            margin-top: 0.6rem;
        }
        .stars {
            font-size: 1.6rem;
            color: #e6b422;
            letter-spacing: 4px;
            cursor: pointer;
            user-select: none;
        }
        .stars span {
            transition: transform 0.1s, color 0.1s;
            display: inline-block;
        }
        .stars span:hover {
            transform: scale(1.2);
            color: #c9940e;
        }
        .rating-box form {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .rating-box form input[type="number"] {
            width: 70px;
            padding: 0.4rem 0.6rem;
            border: 1px solid #e0c8d8;
            border-radius: 12px;
            background: #fff;
            font-size: 0.95rem;
        }
        .rating-box form button {
            background: #b34180;
            color: #fff;
            border: none;
            padding: 0.4rem 1.2rem;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.2s;
        }
        .rating-box form button:hover {
            background: #7a2d6e;
        }
        .comment-section {
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 2px solid #f3e0ee;
        }
        .comment-section h3 {
            font-size: 1.5rem;
            color: #4a1a44;
            margin-bottom: 1rem;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            max-width: 650px;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 0.8rem 1.2rem;
            border: 1px solid #e0c8d8;
            border-radius: 16px;
            font-size: 1rem;
            outline: none;
            background: #fff;
            transition: border 0.2s;
            font-family: inherit;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #c65b9b;
        }
        .comment-form textarea {
            min-height: 110px;
            resize: vertical;
        }
        .comment-form button {
            align-self: flex-start;
            background: #b34180;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .comment-form button:hover {
            background: #7a2d6e;
            transform: scale(1.02);
        }
        friend-link {
            display: block;
            padding: 1.8rem 0 0.8rem;
            border-top: 2px solid #f3e0ee;
            margin-top: 2.5rem;
        }
        friend-link h3 {
            font-size: 1.3rem;
            color: #4a1a44;
            margin-bottom: 0.8rem;
        }
        friend-link .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.4rem;
            list-style: none;
        }
        friend-link .friend-list a {
            font-size: 0.95rem;
            padding: 0.2rem 0;
        }
        footer {
            padding: 1.8rem 0 1.2rem;
            text-align: center;
            color: #6b4d63;
            font-size: 0.9rem;
            border-top: 1px solid #f3e0ee;
            margin-top: 1.2rem;
        }
        footer .copyright {
            margin-top: 0.6rem;
            opacity: 0.8;
            font-size: 0.82rem;
        }
        .styled-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(180, 80, 140, 0.06);
        }
        .styled-table th {
            background: #b34180;
            color: #fff;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 700;
        }
        .styled-table td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #f3e0ee;
            background: #fff;
        }
        .styled-table tr:last-child td {
            border-bottom: none;
        }
        .styled-table tr:hover td {
            background: #fdf6fb;
        }
        @media (max-width: 480px) {
            .wrapper {
                padding: 0 0.8rem 1.5rem;
                border-radius: 16px 16px 0 0;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .search-bar input {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }
            .search-bar button {
                padding: 0 1rem;
                font-size: 1rem;
            }
            .main-content h2 {
                font-size: 1.5rem;
            }
            .main-content h3 {
                font-size: 1.2rem;
            }
            .sidebar {
                position: static;
            }
            .rating-box form {
                flex-direction: column;
                align-items: stretch;
            }
            .rating-box form input[type="number"] {
                width: 100%;
            }
        }
        .emoji-lg {
            font-size: 1.4em;
            line-height: 1;
        }
        .bolder {
            font-weight: 700;
        }
        .accent-text {
            color: #b34180;
        }
        .gap-1 {
            gap: 0.5rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
