* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #fcf4f0;
            color: #2d2d2d;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #c44569;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #a83256;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
        }
        .container {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
            padding: 18px 0 12px;
            border-bottom: 4px solid #f8a5c2;
            position: relative;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #e84393, #6c5ce7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 12px rgba(232, 67, 147, 0.2);
            transition: transform 0.25s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #e84393;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #c44569;
            border-radius: 8px;
            color: #c44569;
            font-size: 1.6rem;
            padding: 4px 14px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #c44569;
            color: #fff;
        }
        .main-nav {
            display: flex;
            gap: 6px 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            font-weight: 600;
            color: #4a2c2a;
            padding: 4px 8px;
            border-radius: 6px;
            font-size: 0.95rem;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            background: #f8a5c2;
            color: #1e1e1e;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 4px;
            font-size: 0.85rem;
            color: #c44569;
        }
        .breadcrumb {
            background: #fff0e8;
            padding: 10px 0 8px;
            font-size: 0.85rem;
            border-bottom: 1px solid #fadcd5;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #c44569;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7f5539;
        }
        .breadcrumb .current {
            color: #2d2d2d;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(120deg, #f8edeb, #fce4d6);
            padding: 40px 0 36px;
            border-radius: 0 0 40px 40px;
            margin-bottom: 32px;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: #2d1b1a;
            margin-bottom: 16px;
        }
        .hero h1 i {
            color: #e84393;
            margin-right: 10px;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 780px;
            color: #4a2c2a;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 18px 32px;
            margin-top: 18px;
            font-size: 0.95rem;
            color: #6b4a44;
        }
        .hero-meta i {
            color: #c44569;
            margin-right: 6px;
        }
        .last-updated {
            background: #f8a5c2;
            padding: 2px 14px;
            border-radius: 20px;
            font-weight: 600;
            color: #1e1e1e;
            font-size: 0.85rem;
            display: inline-block;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 20px 0 48px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 24px;
            align-self: start;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #2d1b1a;
            margin: 40px 0 16px;
            padding-bottom: 8px;
            border-bottom: 4px solid #f8a5c2;
            display: inline-block;
        }
        h2 i {
            color: #e84393;
            margin-right: 10px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #3d2624;
            margin: 28px 0 12px;
        }
        h3 i {
            color: #6c5ce7;
            margin-right: 8px;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 700;
            color: #4a2c2a;
            margin: 20px 0 8px;
        }
        p {
            margin-bottom: 16px;
        }
        .content-section {
            margin-bottom: 32px;
        }
        .highlight-box {
            background: #fff5f0;
            border-left: 5px solid #e84393;
            padding: 18px 22px;
            border-radius: 12px;
            margin: 20px 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        .highlight-box strong {
            color: #c44569;
        }
        .emoji-big {
            font-size: 1.8rem;
            display: inline-block;
            margin-right: 6px;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .stat-card {
            background: #fff;
            border-radius: 16px;
            padding: 18px 14px;
            text-align: center;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
            border: 1px solid #fadcd5;
            transition: transform 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #e84393;
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #6b4a44;
            font-weight: 500;
        }
        .interview-card {
            background: #fff;
            border-radius: 20px;
            padding: 24px;
            margin: 20px 0;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
            border: 1px solid #fadcd5;
        }
        .interview-card .author {
            font-weight: 700;
            color: #c44569;
            font-size: 1.05rem;
        }
        .interview-card .author i {
            margin-right: 8px;
        }
        .tip-list {
            list-style: none;
            padding: 0;
        }
        .tip-list li {
            padding: 10px 0 10px 32px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e84393" width="20px" height="20px"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>') left center no-repeat;
            background-size: 18px;
            border-bottom: 1px solid #f5e3dd;
        }
        .tip-list li:last-child {
            border-bottom: none;
        }
        .featured-image {
            margin: 28px 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .featured-image figcaption {
            background: #fff0e8;
            padding: 10px 16px;
            font-size: 0.85rem;
            color: #6b4a44;
            font-style: italic;
        }
        .form-card {
            background: #fff;
            border-radius: 20px;
            padding: 24px 28px;
            margin: 28px 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #fadcd5;
        }
        .form-card h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            font-weight: 600;
            display: block;
            margin-bottom: 4px;
            color: #3d2624;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #f0d6ce;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border 0.2s;
            background: #fcf8f6;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #e84393;
            outline: none;
            background: #fff;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: linear-gradient(135deg, #e84393, #c44569);
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(232, 67, 147, 0.3);
        }
        .btn i {
            font-size: 1rem;
        }
        .rating-stars {
            display: flex;
            gap: 4px;
            font-size: 1.8rem;
            color: #f8c291;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            cursor: pointer;
            transition: color 0.15s;
            color: #ddd;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #f8c291;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 20px;
            padding: 20px 22px;
            margin-bottom: 24px;
            border: 1px solid #fadcd5;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        }
        .sidebar-card h4 {
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 2px solid #f8a5c2;
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            padding: 8px 0;
            border-bottom: 1px solid #f5e3dd;
        }
        .sidebar-card li:last-child {
            border-bottom: none;
        }
        .sidebar-card a {
            font-weight: 500;
        }
        .sidebar-card a i {
            margin-right: 6px;
            color: #c44569;
            font-size: 0.8rem;
        }
        .site-footer {
            background: #2d1b1a;
            color: #fcf4f0;
            padding: 36px 0 24px;
            margin-top: 48px;
            border-radius: 40px 40px 0 0;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        .site-footer a {
            color: #f8a5c2;
        }
        .site-footer a:hover {
            color: #ffd6e0;
        }
        .site-footer .my-logo {
            font-size: 1.4rem;
            display: inline-block;
            margin-bottom: 10px;
        }
        friend-link {
            display: block;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid #4a2c2a;
        }
        friend-link a {
            display: inline-block;
            margin-right: 18px;
            padding: 4px 0;
        }
        .copyright {
            margin-top: 20px;
            font-size: 0.85rem;
            opacity: 0.8;
            text-align: center;
            border-top: 1px solid #4a2c2a;
            padding-top: 20px;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 680px) {
            .nav-toggle {
                display: inline-block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 10px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                font-size: 1rem;
                padding: 8px 12px;
                width: 100%;
                border-radius: 8px;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .form-card {
                padding: 16px 18px;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        :focus-visible {
            outline: 3px solid #e84393;
            outline-offset: 2px;
        }
        ::selection {
            background: #f8a5c2;
            color: #1e1e1e;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #fcf4f0;
        }
        ::-webkit-scrollbar-thumb {
            background: #f8a5c2;
            border-radius: 10px;
        }
