        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #faf9f8;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #7b2d8e;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #b14fd0;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 0;
            color: #1a1a2e;
        }
        h1 {
            font-size: 2.2rem;
            margin-bottom: 0.75rem;
        }
        h2 {
            font-size: 1.7rem;
            margin-top: 2.5rem;
            margin-bottom: 0.6rem;
            border-bottom: 3px solid #e8d5f5;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.3rem;
            margin-top: 1.8rem;
            margin-bottom: 0.4rem;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.2rem;
            margin-bottom: 0.3rem;
            color: #3d2c5e;
        }
        p {
            margin-bottom: 1.1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #2d1b4e, #1b1233);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #ffd966;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 8px rgba(255, 217, 102, 0.25);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #ffd966;
        }
        .my-logo small {
            display: block;
            font-size: 0.65rem;
            color: #b8a9d4;
            letter-spacing: 1px;
            font-weight: 400;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
        }
        .main-nav a {
            color: #ddd9f0;
            padding: 0.4rem 0.9rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #ffd966;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #7b2d8e;
            color: #fff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.7rem;
            color: #ffd966;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
        }
        .nav-check {
            display: none;
        }
        .breadcrumb {
            background: #f0ebf8;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #ddd6ea;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #9a7bb5;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #6a4b8a;
        }
        .breadcrumb .current {
            color: #2d1b4e;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #f5eefe, #e6d9f5);
            padding: 2.5rem 0 2rem;
            text-align: center;
            border-bottom: 1px solid #dccceb;
        }
        .hero h1 {
            font-size: 2.6rem;
            color: #1b1233;
            max-width: 850px;
            margin: 0 auto 0.6rem;
        }
        .hero p {
            font-size: 1.1rem;
            color: #3d2c5e;
            max-width: 750px;
            margin: 0 auto;
        }
        .hero .meta-info {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #6a4b8a;
        }
        .hero .meta-info i {
            margin-right: 0.3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 90px;
            align-self: start;
        }
        .sidebar-box {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem 1.2rem;
            margin-bottom: 1.8rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            border: 1px solid #ede7f5;
        }
        .sidebar-box h3 {
            font-size: 1.1rem;
            margin-top: 0;
            margin-bottom: 0.8rem;
            color: #2d1b4e;
            border-bottom: 2px solid #e8d5f5;
            padding-bottom: 0.4rem;
        }
        .sidebar-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-links li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #f0ebf8;
        }
        .sidebar-links li:last-child {
            border-bottom: none;
        }
        .sidebar-links a {
            font-size: 0.92rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar-links a i {
            color: #9a7bb5;
            width: 1.1rem;
            text-align: center;
        }
        .search-form {
            display: flex;
            gap: 0.4rem;
            margin: 1.2rem 0;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 2px solid #ddd6ea;
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #7b2d8e;
        }
        .search-form button {
            background: #7b2d8e;
            color: #fff;
            border: none;
            padding: 0.7rem 1.4rem;
            border-radius: 30px;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-form button:hover {
            background: #9d3db5;
        }
        .featured-image {
            margin: 1.8rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
            background: #ede7f5;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .featured-image figcaption {
            padding: 0.7rem 1.2rem;
            font-size: 0.85rem;
            color: #5a4a72;
            background: #f8f5fc;
            font-style: italic;
        }
        .styled-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.92rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .styled-table thead {
            background: #2d1b4e;
            color: #fff;
        }
        .styled-table th,
        .styled-table td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e8d5f5;
        }
        .styled-table tbody tr:hover {
            background: #f5f0fb;
        }
        .comment-section,
        .rating-section {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 1.8rem 2rem;
            margin: 2rem 0 1.5rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede7f5;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            border-bottom: 2px solid #e8d5f5;
            padding-bottom: 0.5rem;
        }
        .comment-form textarea,
        .comment-form input,
        .rating-form select,
        .rating-form input {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #ddd6ea;
            border-radius: 10px;
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
            font-family: inherit;
            outline: none;
            transition: border 0.2s;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .rating-form select:focus {
            border-color: #7b2d8e;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            background: #7b2d8e;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 30px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            font-weight: 600;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #9d3db5;
        }
        .star-display {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #f0c050;
            margin: 0.3rem 0 0.8rem;
            cursor: pointer;
        }
        .star-display i {
            transition: transform 0.15s;
        }
        .star-display i:hover {
            transform: scale(1.2);
        }
        friend-link {
            display: block;
            padding: 1.5rem 0 1rem;
            border-top: 1px solid #ddd6ea;
            margin-top: 1.5rem;
        }
        friend-link h3 {
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            color: #2d1b4e;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.5rem;
        }
        friend-link li a {
            font-size: 0.92rem;
            color: #6a4b8a;
        }
        friend-link li a:hover {
            color: #7b2d8e;
        }
        .site-footer {
            background: #1b1233;
            color: #c4b8dd;
            padding: 2rem 0 1.5rem;
            margin-top: 2rem;
            font-size: 0.9rem;
        }
        .site-footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1rem;
            align-items: center;
        }
        .site-footer a {
            color: #b8a9d4;
        }
        .site-footer a:hover {
            color: #ffd966;
        }
        .site-footer .copyright {
            font-size: 0.82rem;
            color: #8f7db0;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .sidebar .sidebar-box {
                margin-bottom: 0;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 1rem 0 0.5rem;
                gap: 0.3rem;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-radius: 8px;
                width: 100%;
            }
            .nav-check:checked~.main-nav {
                display: flex;
            }
            .header-inner {
                align-items: center;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 0.95rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .styled-table {
                font-size: 0.82rem;
            }
            .styled-table th,
            .styled-table td {
                padding: 0.5rem 0.6rem;
            }
            .site-footer .footer-inner {
                flex-direction: column;
                text-align: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .comment-section,
            .rating-section {
                padding: 1.2rem;
            }
            .star-display {
                font-size: 1.3rem;
            }
        }
        .highlight {
            background: #f5eefe;
            padding: 0.1rem 0.3rem;
            border-radius: 4px;
        }
        .badge {
            display: inline-block;
            background: #7b2d8e;
            color: #fff;
            padding: 0.15rem 0.7rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .emoji-icon {
            font-size: 1.2rem;
            margin-right: 0.3rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-center {
            text-align: center;
        }
        .schema-hidden {
            display: none;
        }
