*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #e84393;
            --primary-dark: #c2185b;
            --secondary: #6c5ce7;
            --accent: #fdcb6e;
            --bg: #fdf4f9;
            --bg-card: #ffffff;
            --text: #2d3436;
            --text-light: #636e72;
            --border: #f0d4e3;
            --shadow: 0 8px 32px rgba(232, 67, 147, 0.12);
            --radius: 16px;
            --max-width: 1140px;
            --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            padding: 0 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 70px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: 1px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
            color: #fff;
        }
        .my-logo span {
            color: var(--accent);
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #fff;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: rgba(255, 255, 255, 0.9);
            padding: 8px 16px;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.92rem;
            transition: background 0.25s, color 0.25s;
        }
        .nav-menu a:hover,
        .nav-menu a:focus {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            text-decoration: none;
        }
        .nav-menu a.active {
            background: rgba(255, 255, 255, 0.25);
            color: #fff;
        }
        .breadcrumb-wrap {
            background: #fff;
            border-bottom: 1px solid var(--border);
            padding: 10px 0;
            font-size: 0.88rem;
        }
        .breadcrumb-wrap .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb-wrap a {
            color: var(--text-light);
        }
        .breadcrumb-wrap a:hover {
            color: var(--primary);
        }
        .breadcrumb-wrap span {
            color: var(--text-light);
        }
        .breadcrumb-wrap .sep {
            margin: 0 4px;
            color: #bbb;
        }
        .main-content {
            padding: 40px 0 60px;
        }
        .main-content .container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content-body {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 36px 40px 48px;
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--primary-dark);
            line-height: 1.2;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }
        h1 .emoji {
            font-size: 2.2rem;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
            margin-top: 52px;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid var(--border);
        }
        h2:first-of-type {
            margin-top: 8px;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--primary);
            margin-top: 32px;
            margin-bottom: 10px;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2d3436;
            margin-top: 20px;
            margin-bottom: 6px;
        }
        .content-body p {
            margin-bottom: 18px;
            font-size: 1.02rem;
        }
        .content-body ul,
        .content-body ol {
            margin-bottom: 20px;
            padding-left: 24px;
        }
        .content-body li {
            margin-bottom: 6px;
        }
        .highlight {
            background: linear-gradient(to right, #ffeaa7, #fdcb6e);
            padding: 0 6px;
            font-weight: 600;
            border-radius: 4px;
        }
        .blockquote {
            background: #f8f0f5;
            border-left: 5px solid var(--primary);
            padding: 18px 24px;
            margin: 24px 0;
            border-radius: 0 var(--radius) var(--radius) 0;
            font-style: italic;
            color: #444;
        }
        .blockquote strong {
            color: var(--primary-dark);
        }
        .stat-box {
            background: linear-gradient(135deg, #fdf4f9, #f0e6ff);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px 24px;
            margin: 20px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-around;
        }
        .stat-item {
            text-align: center;
        }
        .stat-item .num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
        }
        .stat-item .label {
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .featured-img {
            margin: 28px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: #f0e6ff;
            position: relative;
        }
        .featured-img img {
            width: 100%;
            min-height: 280px;
            object-fit: cover;
            background: linear-gradient(135deg, #e8d5f5, #fce4ec);
        }
        .featured-img .img-placeholder {
            width: 100%;
            min-height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #fce4ec, #e8d5f5);
            color: var(--primary);
            font-size: 4rem;
            flex-direction: column;
            gap: 12px;
            padding: 40px;
        }
        .featured-img .img-placeholder span {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-light);
        }
        .featured-img figcaption {
            padding: 12px 18px;
            font-size: 0.9rem;
            color: var(--text-light);
            background: #fff;
            border-top: 1px solid var(--border);
        }
        .widget {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 24px 20px;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 14px;
            color: var(--secondary);
            border-bottom: 2px solid var(--border);
            padding-bottom: 8px;
        }
        .widget ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .widget ul li {
            padding: 6px 0;
            border-bottom: 1px solid #f5e8f0;
        }
        .widget ul li:last-child {
            border-bottom: none;
        }
        .widget ul li a {
            font-weight: 500;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin-top: 6px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 14px;
            border: 2px solid var(--border);
            border-radius: 40px;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.25s;
            background: #fafafa;
        }
        .search-form input:focus {
            border-color: var(--primary);
        }
        .search-form button {
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0 20px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
        }
        .search-form button:hover {
            background: var(--primary-dark);
            transform: scale(1.03);
        }
        .comment-section,
        .rating-section {
            margin-top: 8px;
        }
        .comment-section textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            font-size: 0.95rem;
            font-family: var(--font-sans);
            resize: vertical;
            min-height: 90px;
            outline: none;
            transition: border-color 0.25s;
            background: #fafafa;
        }
        .comment-section textarea:focus {
            border-color: var(--primary);
        }
        .comment-section .btn,
        .rating-section .btn {
            background: var(--secondary);
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 40px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
            margin-top: 8px;
            display: inline-block;
        }
        .comment-section .btn:hover,
        .rating-section .btn:hover {
            background: #5a4bd1;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin: 8px 0;
            direction: rtl;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.2s;
        }
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: var(--accent);
            transform: scale(1.1);
        }
        .star-rating.active i.active {
            color: var(--accent);
        }
        .site-footer {
            background: #2d3436;
            color: rgba(255, 255, 255, 0.85);
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .site-footer .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        .site-footer friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.06);
            padding: 20px 24px;
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .site-footer friend-link h4 {
            color: var(--accent);
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .site-footer friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
        }
        .site-footer friend-link ul li a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.92rem;
        }
        .site-footer friend-link ul li a:hover {
            color: #fff;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.6);
        }
        .footer-info p {
            margin-bottom: 6px;
            font-size: 0.92rem;
        }
        .footer-info strong {
            color: var(--accent);
        }
        @media (max-width: 992px) {
            .main-content .container {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: 2;
            }
            .content-body {
                order: 1;
                padding: 28px 24px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .site-footer .container {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: var(--primary-dark);
                flex-direction: column;
                padding: 16px 20px;
                gap: 4px;
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
                border-radius: 0 0 var(--radius) var(--radius);
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 12px 16px;
                width: 100%;
                border-radius: 8px;
            }
            .header-inner {
                min-height: 60px;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            .content-body {
                padding: 20px 16px;
            }
            .stat-box {
                flex-direction: column;
                align-items: center;
            }
            .featured-img .img-placeholder {
                min-height: 200px;
                font-size: 3rem;
            }
            .breadcrumb-wrap {
                font-size: 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.4rem;
            }
            h2 {
                font-size: 1.25rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                padding: 10px;
            }
            .star-rating {
                font-size: 1.5rem;
            }
        }
        .text-sm {
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-1 {
            margin-top: 4px;
        }
        .flex {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .gap-2 {
            gap: 12px;
        }
        .last-updated {
            display: inline-block;
            background: #f0e6ff;
            padding: 4px 14px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: var(--secondary);
            font-weight: 500;
            margin-bottom: 16px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        .table-wrap table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        .table-wrap th {
            background: var(--primary);
            color: #fff;
            padding: 10px 14px;
            text-align: left;
        }
        .table-wrap td {
            padding: 10px 14px;
            border-bottom: 1px solid var(--border);
        }
        .table-wrap tr:nth-child(even) td {
            background: #faf0f6;
        }
        .tag {
            display: inline-block;
            background: #ffeaa7;
            color: #6c5ce7;
            padding: 2px 12px;
            border-radius: 40px;
            font-size: 0.78rem;
            font-weight: 600;
        }
