        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.75;
            color: #1a1a2e;
            background: #faf8f5;
            padding: 0;
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #7b2d8e;
            text-decoration: none;
            transition: color 0.2s ease, border-bottom 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #c44569;
            border-bottom: 2px solid #c44569;
        }
        a:focus-visible {
            outline: 3px solid #c44569;
            outline-offset: 2px;
            border-radius: 4px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #1a1a2e;
            margin-top: 1.8em;
            margin-bottom: 0.6em;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4em;
            border-left: 6px solid #7b2d8e;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 3px solid #e8d5f0;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #3d1b56;
        }
        h4 {
            font-size: 1.1rem;
            color: #5a2d7a;
        }
        p {
            margin-bottom: 1.2em;
            color: #2d2d44;
        }
        ul,
        ol {
            margin-bottom: 1.2em;
            padding-left: 1.8em;
        }
        li {
            margin-bottom: 0.4em;
        }
        blockquote {
            border-left: 5px solid #7b2d8e;
            padding-left: 1.2em;
            margin: 1.5em 0;
            font-style: italic;
            background: #f3edf7;
            padding: 1em 1.5em;
            border-radius: 0 12px 12px 0;
        }
        hr {
            border: none;
            height: 2px;
            background: linear-gradient(to right, #e8d5f0, transparent);
            margin: 2.5em 0;
        }
        strong {
            color: #3d1b56;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #2d1b3d 50%, #1a1a2e 100%);
            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;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            letter-spacing: -0.5px;
            background: linear-gradient(to right, #f8a5c2, #c44569);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: opacity 0.3s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            border-bottom: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #c44569;
            font-size: 1.6rem;
        }
        .nav-toggle {
            display: none;
            font-size: 1.6rem;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #e8d5f0;
            padding: 0.4rem 0.9rem;
            border-radius: 6px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            border-bottom: none;
        }
        .nav-menu a:hover {
            background: rgba(196, 69, 105, 0.25);
            color: #fff;
            border-bottom: none;
        }
        .nav-menu a.active {
            background: rgba(196, 69, 105, 0.3);
            color: #f8a5c2;
        }
        .breadcrumb {
            background: #f0eaf5;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #e0d6e8;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li {
            margin: 0;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #9a7aaa;
            font-weight: 700;
            margin-right: 0.4rem;
        }
        .breadcrumb a {
            color: #7b2d8e;
        }
        .breadcrumb .current {
            color: #3d1b56;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #2d1b3d, #1a1a2e);
            color: #fff;
            padding: 3rem 0 2.5rem;
            margin-bottom: 2rem;
            border-radius: 0 0 40px 40px;
        }
        .hero-content {
            text-align: center;
        }
        .hero h1 {
            color: #fff;
            border-left: none;
            padding-left: 0;
            font-size: 2.8rem;
            margin-top: 0;
            background: linear-gradient(to right, #f8a5c2, #e8d5f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            color: #d4c4e0;
            font-size: 1.15rem;
            max-width: 700px;
            margin: 1rem auto 0;
        }
        .hero .last-update {
            display: inline-block;
            margin-top: 1rem;
            background: rgba(255, 255, 255, 0.08);
            padding: 0.3rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #d4c4e0;
        }
        .search-section {
            margin: 0 0 2.5rem;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 2px solid #e8d5f0;
            transition: border-color 0.3s;
        }
        .search-form:focus-within {
            border-color: #7b2d8e;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.9rem 1.4rem;
            border: none;
            font-size: 1rem;
            outline: none;
            background: #fff;
            min-width: 0;
        }
        .search-form button {
            background: #7b2d8e;
            color: #fff;
            border: none;
            padding: 0 1.8rem;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
        }
        .search-form button:hover {
            background: #5a1d6e;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding-bottom: 3rem;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.6rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            margin-bottom: 1.5rem;
            border: 1px solid #f0eaf5;
        }
        .sidebar-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 2px solid #e8d5f0;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .sidebar-link-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-link-list li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #f5f0f8;
            margin: 0;
        }
        .sidebar-link-list li:last-child {
            border-bottom: none;
        }
        .sidebar-link-list a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.92rem;
        }
        .sidebar-link-list a i {
            color: #c44569;
            font-size: 0.8rem;
            width: 1.2rem;
        }
        .featured-image {
            margin: 1.8rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .featured-image img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #f5f0f8;
            padding: 0.6rem 1rem;
            font-size: 0.9rem;
            color: #5a4a6a;
            text-align: center;
        }
        .content-card {
            background: #fff;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            margin-bottom: 2rem;
            border: 1px solid #f5f0f8;
        }
        .content-card h2:first-child {
            margin-top: 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-item {
            background: linear-gradient(135deg, #f8f5fc, #f0eaf5);
            padding: 1.2rem;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #e8d5f0;
        }
        .stat-item .num {
            font-size: 2rem;
            font-weight: 800;
            color: #7b2d8e;
            display: block;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #5a4a6a;
            margin-top: 0.2rem;
        }
        .tip-box {
            background: #f0f4ff;
            border-left: 5px solid #7b2d8e;
            padding: 1.2rem 1.6rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .tip-box strong {
            color: #3d1b56;
        }
        .interview-box {
            background: #faf5f0;
            border-radius: 16px;
            padding: 1.6rem;
            margin: 1.8rem 0;
            border: 1px solid #e8ddd0;
        }
        .interview-box .quote {
            font-style: italic;
            font-size: 1.05rem;
            color: #3d2b1a;
        }
        .interview-box .attribution {
            margin-top: 0.8rem;
            font-weight: 600;
            color: #7b2d8e;
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .interaction-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.6rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #f0eaf5;
        }
        .interaction-card h3 {
            margin-top: 0;
            font-size: 1.15rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin: 0.8rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f1c40f;
        }
        .interaction-card textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #e8d5f0;
            border-radius: 10px;
            font-family: inherit;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 80px;
            transition: border-color 0.3s;
        }
        .interaction-card textarea:focus {
            outline: none;
            border-color: #7b2d8e;
        }
        .interaction-card .btn {
            background: #7b2d8e;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            margin-top: 0.8rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .interaction-card .btn:hover {
            background: #5a1d6e;
            transform: translateY(-1px);
        }
        .interaction-card .btn:active {
            transform: translateY(0);
        }
        friend-link {
            display: block;
            padding: 1.8rem 0;
            border-top: 2px solid #e8d5f0;
            margin-top: 2rem;
        }
        friend-link .fl-head {
            font-size: 1.3rem;
            font-weight: 700;
            color: #3d1b56;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        friend-link .fl-list li {
            margin: 0;
        }
        friend-link .fl-list a {
            color: #7b2d8e;
            font-weight: 500;
            padding: 0.2rem 0;
            border-bottom: 2px solid transparent;
        }
        friend-link .fl-list a:hover {
            border-bottom-color: #c44569;
        }
        .site-footer {
            background: #1a1a2e;
            color: #c4b8d0;
            padding: 2.5rem 0 1.5rem;
            margin-top: auto;
        }
        .site-footer .copyright {
            text-align: center;
            font-size: 0.9rem;
            border-top: 1px solid #2d2d4a;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
        }
        .site-footer .copyright a {
            color: #f8a5c2;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .main-content {
                order: 1;
            }
            .interaction-area {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1a1a2e;
                padding: 0.8rem 0;
                border-radius: 0 0 16px 16px;
                gap: 0.1rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.7rem 1.2rem;
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-card {
                padding: 1.2rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .search-form {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-form input[type="text"] {
                border-radius: 14px 14px 0 0;
                padding: 0.8rem 1rem;
            }
            .search-form button {
                border-radius: 0 0 14px 14px;
                padding: 0.7rem;
                justify-content: center;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
                gap: 0.2rem 0.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .hero {
                padding: 2rem 0 1.5rem;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .content-card {
                padding: 1rem;
                border-radius: 14px;
            }
            .interaction-card {
                padding: 1rem;
            }
            .star-rating label {
                font-size: 1.4rem;
            }
        }
        .text-muted {
            color: #7a7a9a;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 0;
            background: #7b2d8e;
            color: #fff;
            padding: 0.6rem 1.2rem;
            z-index: 10000;
            border-radius: 0 0 8px 0;
            font-weight: 600;
        }
        .skip-link:focus {
            top: 0;
        }
        .nav-menu {
            transition: all 0.3s ease;
        }
