        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', system-ui, -apple-system, sans-serif;
            background: #f5f7fc;
            color: #1a1a2e;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #e8456b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #c0294a;
            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, #0f0c29, #302b63, #24243e);
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            border-bottom: 3px solid #e8456b;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f093fb, #f5576c, #ffd86f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 40px rgba(245, 87, 108, 0.25);
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f5576c;
            margin-right: 6px;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            color: #f0e6ff;
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
            display: inline-block;
            white-space: nowrap;
        }
        .nav-list li a:hover {
            background: rgba(232, 69, 107, 0.25);
            border-color: #e8456b;
            color: #fff;
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(232, 69, 107, 0.2);
        }
        .nav-list li a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0e6ff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.3s ease;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .breadcrumb-wrap {
            background: #fff;
            padding: 12px 0;
            border-bottom: 1px solid #e8ecf4;
            font-size: 0.85rem;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
            list-style: none;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: '\f054';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.6rem;
            color: #a0a8c0;
        }
        .breadcrumb a {
            color: #4a4e6b;
        }
        .breadcrumb .current {
            color: #e8456b;
            font-weight: 600;
        }
        .main-content {
            padding: 40px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
        }
        .article-body {
            background: #fff;
            border-radius: 20px;
            padding: 40px 36px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #1a1a2e, #302b63);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-top: 48px;
            margin-bottom: 18px;
            padding-bottom: 10px;
            border-bottom: 4px solid #f0e6ff;
            color: #1a1a2e;
        }
        h2::before {
            content: '\f0e7';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 1.6rem;
            color: #e8456b;
            margin-right: 12px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-top: 32px;
            margin-bottom: 14px;
            color: #302b63;
        }
        h3::before {
            content: '\f005';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 1.1rem;
            color: #ffd86f;
            margin-right: 10px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-top: 24px;
            margin-bottom: 10px;
            color: #4a4e6b;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #2d2d44;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f8f0ff, #fce4ec);
            border-left: 6px solid #e8456b;
            padding: 24px 28px;
            border-radius: 12px;
            margin: 28px 0;
        }
        .highlight-box strong {
            color: #c0294a;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #f0f2f8;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #4a4e6b;
            margin-bottom: 24px;
        }
        .last-updated i {
            color: #e8456b;
        }
        .featured-image-wrap {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }
        .featured-image-wrap img {
            width: 100%;
            height: auto;
            transition: transform 0.6s ease;
        }
        .featured-image-wrap:hover img {
            transform: scale(1.02);
        }
        .image-caption {
            text-align: center;
            font-size: 0.85rem;
            color: #6a6e8a;
            padding: 12px 0 4px;
            font-style: italic;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            margin: 28px 0;
        }
        .stat-card {
            background: #f8faff;
            border-radius: 14px;
            padding: 20px 16px;
            text-align: center;
            border: 1px solid #e8ecf4;
            transition: all 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
            border-color: #e8456b;
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5576c, #ffd86f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #6a6e8a;
            margin-top: 4px;
        }
        .link-list {
            background: #f8faff;
            border-radius: 14px;
            padding: 20px 24px;
            border: 1px solid #e8ecf4;
            margin: 24px 0;
        }
        .link-list h4 {
            margin-top: 0;
            border-bottom: 2px solid #f0e6ff;
            padding-bottom: 10px;
        }
        .link-list ul {
            list-style: none;
            padding: 0;
            margin: 12px 0 0;
        }
        .link-list ul li {
            padding: 8px 0;
            border-bottom: 1px solid #f0f2f8;
        }
        .link-list ul li:last-child {
            border-bottom: none;
        }
        .link-list ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .link-list ul li a::before {
            content: '\f0c1';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.75rem;
            color: #e8456b;
        }
        .widget {
            background: #fff;
            border-radius: 16px;
            padding: 24px 22px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
            border: 1px solid #f0f2f8;
        }
        .widget h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 16px;
            border-bottom: 3px solid #f0e6ff;
            padding-bottom: 10px;
        }
        .widget h3::before {
            display: none;
        }
        .widget ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .widget ul li {
            padding: 10px 0;
            border-bottom: 1px solid #f5f6fa;
        }
        .widget ul li:last-child {
            border-bottom: none;
        }
        .widget ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }
        .widget ul li a i {
            color: #e8456b;
            width: 20px;
            text-align: center;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin-top: 6px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #e8ecf4;
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s ease;
            background: #fafbff;
        }
        .search-form input:focus {
            border-color: #e8456b;
        }
        .search-form button {
            background: linear-gradient(135deg, #e8456b, #c0294a);
            border: none;
            color: #fff;
            padding: 12px 22px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .search-form button:hover {
            transform: scale(1.04);
            box-shadow: 0 8px 25px rgba(232, 69, 107, 0.3);
        }
        .comment-section,
        .rating-section {
            background: #fff;
            border-radius: 16px;
            padding: 28px 30px;
            margin-top: 32px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
            border: 1px solid #f0f2f8;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
        }
        .comment-section h3::before,
        .rating-section h3::before {
            display: none;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 6px;
            color: #2d2d44;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e8ecf4;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border-color 0.3s ease;
            background: #fafbff;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #e8456b;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn-primary {
            background: linear-gradient(135deg, #e8456b, #c0294a);
            border: none;
            color: #fff;
            padding: 14px 34px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(232, 69, 107, 0.3);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 6px;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #d0d4e0;
            transition: color 0.2s ease;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #ffd86f;
        }
        .site-footer {
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            color: #d0c8e8;
            padding: 48px 0 32px;
            margin-top: 40px;
            border-top: 3px solid #e8456b;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        .footer-inner h4 {
            color: #f0e6ff;
            font-size: 1.1rem;
            margin-bottom: 16px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.08);
            padding-bottom: 10px;
        }
        .footer-inner p {
            color: #b0a8c8;
            font-size: 0.95rem;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            padding: 6px 0;
        }
        .footer-links li a {
            color: #b0a8c8;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        .footer-links li a:hover {
            color: #f5576c;
            text-decoration: none;
        }
        .footer-bottom {
            margin-top: 36px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            text-align: center;
            font-size: 0.85rem;
            color: #8a82a8;
        }
        .footer-bottom a {
            color: #f5576c;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 12px;
            padding: 18px 22px;
            margin-top: 16px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        friend-link::before {
            content: '\f0c1  Friend Links';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            display: block;
            font-size: 0.85rem;
            color: #f5576c;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
        friend-link a {
            color: #b0a8c8;
            font-size: 0.9rem;
            padding: 4px 12px;
            display: inline-block;
            border-right: 1px solid rgba(255, 255, 255, 0.08);
            transition: color 0.3s ease;
        }
        friend-link a:last-child {
            border-right: none;
        }
        friend-link a:hover {
            color: #ffd86f;
            text-decoration: none;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: 2;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(15, 12, 41, 0.98);
                padding: 16px 12px;
                border-radius: 16px;
                margin-top: 12px;
                border: 1px solid rgba(255, 255, 255, 0.06);
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                width: 100%;
                text-align: center;
                padding: 12px 16px;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .article-body {
                padding: 24px 18px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .comment-section,
            .rating-section {
                padding: 20px 16px;
            }
            .star-rating {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-card {
                padding: 14px 10px;
            }
            .stat-card .num {
                font-size: 1.6rem;
            }
        }
        .tag {
            display: inline-block;
            background: #f0e6ff;
            color: #4a2e6b;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-right: 6px;
        }
        .section-divider {
            width: 60px;
            height: 4px;
            background: linear-gradient(135deg, #f5576c, #ffd86f);
            border-radius: 4px;
            margin: 24px 0 20px;
        }
        .schema-hidden {
            display: none;
        }
