*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #b44a8a;
            --primary-dark: #8f2e6b;
            --secondary: #f5d6e8;
            --accent: #ffb347;
            --accent-light: #ffe0a0;
            --bg: #fcf6fa;
            --bg-card: #ffffff;
            --text: #2d1b2a;
            --text-light: #5a4a56;
            --border: #e8d5e0;
            --shadow: 0 6px 24px rgba(180, 74, 138, 0.10);
            --radius: 16px;
            --max-width: 1120px;
            --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            padding: 0 16px;
            margin: 0;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color .2s, background .2s;
        }
        a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 8px;
        }
        header {
            background: var(--bg-card);
            border-bottom: 2px solid var(--secondary);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .header-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px 16px;
            padding: 0 8px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--primary), #c77dff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: var(--primary);
            font-size: 1.4rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid var(--primary);
            color: var(--primary);
            font-size: 1.4rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: .2s;
        }
        .nav-toggle:hover {
            background: var(--secondary);
        }
        .nav-menu {
            display: flex;
            gap: 6px 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            font-size: 0.95rem;
        }
        .nav-menu a:hover {
            border-bottom-color: var(--primary);
            text-decoration: none;
        }
        @media(max-width:768px) {
            .nav-toggle {
                display: inline-block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 12px 0 4px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 8px 12px;
                border-radius: 8px;
                width: 100%;
            }
            .nav-menu a:hover {
                background: var(--secondary);
                border-bottom-color: transparent;
            }
        }
        .breadcrumb {
            max-width: var(--max-width);
            margin: 8px auto 0;
            padding: 6px 8px 2px;
            font-size: 0.85rem;
            color: var(--text-light);
            display: flex;
            flex-wrap: wrap;
            gap: 4px 10px;
            list-style: none;
        }
        .breadcrumb li {
            display: inline;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: var(--primary);
            font-weight: 600;
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb .current {
            color: var(--primary);
            font-weight: 600;
        }
        main {
            padding: 28px 0 48px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        @media(min-width:900px) {
            .content-grid {
                grid-template-columns: 2fr 1fr;
                gap: 48px;
            }
            .content-grid .sidebar {
                position: sticky;
                top: 100px;
                align-self: start;
            }
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 8px;
            color: var(--primary-dark);
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-top: 48px;
            margin-bottom: 12px;
            color: var(--primary-dark);
            border-left: 5px solid var(--primary);
            padding-left: 16px;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            margin-top: 32px;
            margin-bottom: 8px;
            color: var(--text);
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 20px;
            margin-bottom: 6px;
            color: var(--text-light);
        }
        p {
            margin-bottom: 16px;
            max-width: 72ch;
        }
        .lead {
            font-size: 1.15rem;
            color: var(--text-light);
            font-weight: 400;
            max-width: 68ch;
        }
        .card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 24px 20px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: transform .2s, box-shadow .2s;
        }
        .card:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 32px rgba(180, 74, 138, 0.12);
        }
        .card h3 {
            margin-top: 0;
        }
        .sidebar .card {
            margin-bottom: 24px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            padding: 6px 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.95rem;
        }
        .sidebar li:last-child {
            border-bottom: none;
        }
        .sidebar li a {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar li a i {
            width: 18px;
            color: var(--primary);
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 4px;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 10px 14px;
            border: 2px solid var(--border);
            border-radius: 10px;
            font-size: 1rem;
            background: #fff;
            transition: border .2s;
            font-family: var(--font);
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: .2s;
            background: var(--primary);
            color: #fff;
        }
        .btn:hover {
            background: var(--primary-dark);
            transform: scale(1.02);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        .btn-outline:hover {
            background: var(--secondary);
            color: var(--primary-dark);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 1.6rem;
            cursor: pointer;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            transition: color .2s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--accent);
        }
        .comment-item {
            padding: 16px 0;
            border-bottom: 1px solid var(--border);
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: 700;
            color: var(--primary-dark);
        }
        .comment-date {
            font-size: 0.8rem;
            color: var(--text-light);
        }
        .comment-body {
            margin-top: 4px;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            padding: 16px 0 8px;
            font-size: 0.95rem;
        }
        friend-link a {
            color: var(--text-light);
            border-bottom: 1px dotted var(--border);
        }
        friend-link a:hover {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }
        footer {
            border-top: 2px solid var(--secondary);
            padding: 28px 0 24px;
            margin-top: 32px;
            font-size: 0.9rem;
            color: var(--text-light);
        }
        footer .footer-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 8px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 16px;
            align-items: center;
        }
        footer .copyright {
            font-size: 0.85rem;
        }
        .badge {
            display: inline-block;
            background: var(--secondary);
            color: var(--primary-dark);
            padding: 2px 12px;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .emoji-lg {
            font-size: 1.8rem;
            line-height: 1;
        }
        .divider {
            margin: 32px 0;
            border: none;
            height: 2px;
            background: linear-gradient(90deg, var(--secondary), transparent);
        }
        .tips {
            background: #f0f7ff;
            border-left: 4px solid #5b9bd5;
            padding: 16px 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 20px 0;
        }
        .tips strong {
            color: #2a6f9e;
        }
        .interview-box {
            background: linear-gradient(135deg, #fdf2f8, #fce4ec);
            border-radius: var(--radius);
            padding: 24px;
            margin: 24px 0;
            border: 1px solid #f8d0e0;
        }
        .interview-box h3 {
            margin-top: 0;
        }
        .featured-image {
            margin: 24px 0;
            border-radius: var(--radius);
            overflow: hidden;
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
        }
        .featured-image figcaption {
            font-size: 0.85rem;
            color: var(--text-light);
            padding: 8px 4px 0;
            font-style: italic;
        }
        @media(max-width:600px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
                padding-left: 12px;
            }
            h3 {
                font-size: 1.15rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .card {
                padding: 16px 14px;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            footer .footer-inner {
                flex-direction: column;
                text-align: center;
            }
        }
        @media print {
            header {
                position: static;
            }
            .nav-toggle,
            .nav-menu {
                display: none !important;
            }
            .sidebar {
                display: none;
            }
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .skip-link {
            position: absolute;
            top: -100px;
            left: 16px;
            padding: 12px 24px;
            background: var(--primary);
            color: #fff;
            z-index: 999;
            border-radius: 8px;
        }
        .skip-link:focus {
            top: 12px;
        }
        :target {
            scroll-margin-top: 100px;
        }
