        *,
        *::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.8;
            color: #1e1e2a;
            background: #f8f6f2;
            padding: 0;
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #b4536b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #8a3a4f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #2d1b36 0%, #4a2c5a 100%);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f9d976, #f39b7b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 12px rgba(243, 155, 123, 0.3);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.6rem;
            -webkit-text-fill-color: rgba(255, 255, 255, 0.6);
            display: block;
            font-weight: 400;
            letter-spacing: 2px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            list-style: none;
        }
        .nav-menu li a {
            color: rgba(255, 255, 255, 0.85);
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.2s;
            display: inline-block;
        }
        .nav-menu li a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            text-decoration: none;
            transform: translateY(-1px);
        }
        .nav-menu li a i {
            margin-right: 6px;
        }
        .breadcrumb {
            background: #f0ece6;
            padding: 12px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #e2dbd2;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 10px;
            color: #b4536b;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7a5a6e;
        }
        .breadcrumb .current {
            color: #2d1b36;
            font-weight: 600;
        }
        .main-content {
            flex: 1;
            padding: 32px 0 48px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-body {
            background: #fff;
            border-radius: 20px;
            padding: 40px 36px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
        }
        .sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
            margin-bottom: 24px;
        }
        .sidebar-card h4 {
            font-size: 1.1rem;
            margin-bottom: 14px;
            color: #2d1b36;
            border-left: 4px solid #f39b7b;
            padding-left: 12px;
        }
        .sidebar-card ul {
            list-style: none;
        }
        .sidebar-card ul li {
            padding: 6px 0;
            border-bottom: 1px solid #f0ece6;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            font-size: 0.9rem;
            display: block;
            padding: 4px 0;
        }
        h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            color: #2d1b36;
            margin-bottom: 16px;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            line-height: 1.3;
            color: #2d1b36;
            margin-top: 48px;
            margin-bottom: 16px;
            font-weight: 700;
            border-bottom: 3px solid #f0ece6;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.5rem;
            line-height: 1.35;
            color: #3d2a4a;
            margin-top: 32px;
            margin-bottom: 12px;
            font-weight: 700;
        }
        h4 {
            font-size: 1.2rem;
            line-height: 1.4;
            color: #4a2c5a;
            margin-top: 24px;
            margin-bottom: 8px;
            font-weight: 600;
        }
        p {
            margin-bottom: 18px;
            color: #2d2d3a;
        }
        .lead {
            font-size: 1.2rem;
            color: #4a3a52;
            font-weight: 400;
            line-height: 1.7;
            border-left: 4px solid #f9d976;
            padding-left: 20px;
            margin-bottom: 28px;
        }
        .highlight-box {
            background: #faf6f0;
            border-radius: 14px;
            padding: 24px 28px;
            margin: 28px 0;
            border-left: 5px solid #f39b7b;
        }
        .highlight-box strong {
            color: #b4536b;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #7a6a7a;
            padding: 12px 0 4px;
            font-style: italic;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 24px 0 32px;
            background: #f8f4f0;
            padding: 8px 12px;
            border-radius: 50px;
            border: 1px solid #e2dbd2;
        }
        .search-form input[type="text"] {
            flex: 1;
            border: none;
            background: transparent;
            padding: 12px 16px;
            font-size: 1rem;
            outline: none;
            color: #2d1b36;
        }
        .search-form input[type="text"]::placeholder {
            color: #a99aa8;
        }
        .search-form button {
            background: #b4536b;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #8a3a4f;
        }
        .feedback-section {
            margin-top: 48px;
            padding-top: 32px;
            border-top: 2px solid #f0ece6;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .comment-box,
        .rating-box {
            background: #faf6f0;
            border-radius: 16px;
            padding: 24px 28px;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            font-size: 1.2rem;
        }
        .comment-box textarea {
            width: 100%;
            border: 1px solid #e2dbd2;
            border-radius: 12px;
            padding: 14px;
            font-size: 0.95rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            background: #fff;
            outline: none;
            transition: border 0.2s;
        }
        .comment-box textarea:focus {
            border-color: #b4536b;
        }
        .comment-box input[type="text"] {
            width: 100%;
            border: 1px solid #e2dbd2;
            border-radius: 12px;
            padding: 12px 14px;
            font-size: 0.95rem;
            margin-top: 10px;
            background: #fff;
            outline: none;
        }
        .comment-box input[type="text"]:focus {
            border-color: #b4536b;
        }
        .btn {
            background: #b4536b;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            background: #8a3a4f;
            transform: translateY(-1px);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #e2dbd2;
            cursor: pointer;
            margin: 12px 0;
            flex-wrap: wrap;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f9d976;
            transform: scale(1.1);
        }
        .rating-display {
            font-size: 0.95rem;
            color: #5a4a5a;
            margin-top: 8px;
        }
        .links-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 12px;
            margin: 24px 0;
        }
        .links-list a {
            background: #faf6f0;
            padding: 10px 18px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.2s;
            display: inline-block;
            border: 1px solid transparent;
        }
        .links-list a:hover {
            background: #f0e8e0;
            border-color: #b4536b;
            text-decoration: none;
            transform: translateY(-2px);
        }
        .links-list a i {
            margin-right: 8px;
            color: #b4536b;
        }
        .site-footer {
            background: #2d1b36;
            color: rgba(255, 255, 255, 0.85);
            padding: 40px 0 24px;
            margin-top: 48px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        .footer-inner h4 {
            color: #f9d976;
            font-size: 1rem;
            margin-top: 0;
            margin-bottom: 14px;
            border-left: 3px solid #f39b7b;
            padding-left: 12px;
        }
        .footer-inner p,
        .footer-inner a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        .footer-inner a:hover {
            color: #f9d976;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 28px;
            padding-top: 20px;
            text-align: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            list-style: none;
            padding: 12px 0;
        }
        .friend-link a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            padding: 4px 0;
            border-bottom: 1px solid transparent;
            transition: all 0.2s;
        }
        .friend-link a:hover {
            color: #f9d976;
            border-bottom-color: #f9d976;
            text-decoration: none;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(45, 27, 54, 0.98);
                padding: 16px 0 20px;
                border-radius: 0 0 16px 16px;
                gap: 2px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 10px 20px;
                border-radius: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .article-body {
                padding: 24px 16px;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .links-list {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .links-list {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
                border-radius: 16px;
                padding: 12px;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #b4536b;
            color: #fff;
            border: none;
            border-radius: 50%;
            font-size: 1.4rem;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(180, 83, 107, 0.3);
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 50;
        }
        .scroll-top:hover {
            background: #8a3a4f;
            transform: translateY(-3px);
        }
