        *,
        *::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: #fcf7f0;
            color: #2d1b0e;
            line-height: 1.7;
        }
        a {
            color: #c0392b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #e74c3c;
            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, #6b1d5e 0%, #8e2a7a 40%, #c0392b 100%);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            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;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(to right, #f9e74b, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            font-family: 'Trebuchet MS', cursive, sans-serif;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
            -webkit-text-fill-color: transparent;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: rgba(255, 255, 255, 0.8);
            color: rgba(255, 255, 255, 0.8);
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 6px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        .primary-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .primary-nav a {
            color: #fff;
            padding: 6px 14px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.25s, transform 0.15s;
            white-space: nowrap;
        }
        .primary-nav a:hover {
            background: rgba(255, 255, 255, 0.2);
            text-decoration: none;
            transform: translateY(-1px);
        }
        .primary-nav a i {
            margin-right: 6px;
        }
        .breadcrumb {
            background: #fff5eb;
            padding: 10px 0;
            border-bottom: 1px solid #f0ddd0;
            font-size: 0.85rem;
            color: #7f6b5a;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 12px;
            color: #c0392b;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7f2d6b;
        }
        .search-section {
            background: #fff;
            padding: 20px 0;
            border-bottom: 2px solid #f0e0d0;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 60px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        }
        .search-form input {
            flex: 1;
            border: none;
            padding: 14px 22px;
            font-size: 1rem;
            background: #f9f3ec;
            outline: none;
            color: #2d1b0e;
        }
        .search-form input::placeholder {
            color: #a08e7a;
        }
        .search-form button {
            background: #c0392b;
            color: #fff;
            border: none;
            padding: 14px 28px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s;
            font-weight: 600;
        }
        .search-form button:hover {
            background: #a52a1a;
        }
        .main-content {
            padding: 40px 0 60px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
        }
        @media (max-width: 900px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body h1 {
            font-size: 2.4rem;
            color: #4a1a3d;
            margin-bottom: 0.5rem;
            line-height: 1.2;
            border-left: 6px solid #c0392b;
            padding-left: 18px;
        }
        .article-body h2 {
            font-size: 1.8rem;
            color: #5d2249;
            margin-top: 2.8rem;
            margin-bottom: 0.8rem;
            border-bottom: 3px solid #f0ddd0;
            padding-bottom: 6px;
        }
        .article-body h3 {
            font-size: 1.35rem;
            color: #7a2d5e;
            margin-top: 2rem;
            margin-bottom: 0.5rem;
        }
        .article-body h4 {
            font-size: 1.1rem;
            color: #993d78;
            margin-top: 1.5rem;
            margin-bottom: 0.3rem;
            font-weight: 600;
        }
        .article-body p {
            margin-bottom: 1.2rem;
            color: #3d2a1a;
        }
        .article-body ul,
        .article-body ol {
            margin-bottom: 1.2rem;
            padding-left: 1.8rem;
        }
        .article-body li {
            margin-bottom: 0.5rem;
        }
        .article-body strong {
            color: #5d1f3c;
        }
        .article-body .highlight-box {
            background: #fff5eb;
            border-left: 5px solid #c0392b;
            padding: 16px 22px;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        .article-body .emoji-lg {
            font-size: 1.4rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
        }
        .featured-image figcaption {
            background: #f5ebe3;
            padding: 10px 16px;
            font-size: 0.9rem;
            color: #5d4a3a;
            text-align: center;
            font-style: italic;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 22px;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #f0e0d0;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            color: #4a1a3d;
            margin-bottom: 12px;
            border-bottom: 2px solid #f0ddd0;
            padding-bottom: 6px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 6px 0;
            border-bottom: 1px dotted #f0e0d0;
        }
        .sidebar-card ul li a {
            color: #5d2249;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card ul li a i {
            color: #c0392b;
            width: 18px;
        }
        .rating-section {
            background: #fff5eb;
            padding: 20px 24px;
            border-radius: 14px;
            margin: 2rem 0;
            border: 1px solid #f0ddd0;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            cursor: pointer;
            color: #ddd;
            transition: color 0.15s;
        }
        .rating-stars i {
            transition: color 0.15s, transform 0.1s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f5a623;
            transform: scale(1.1);
        }
        .rating-stars i.selected {
            color: #f5a623;
        }
        .rating-form button {
            background: #6b1d5e;
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 40px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s;
            font-weight: 600;
            margin-top: 10px;
        }
        .rating-form button:hover {
            background: #8e2a7a;
        }
        .comment-section {
            margin-top: 2.5rem;
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            border: 1px solid #f0e0d0;
        }
        .comment-section h3 {
            font-size: 1.4rem;
            color: #4a1a3d;
            margin-bottom: 16px;
        }
        .comment-form textarea {
            width: 100%;
            border: 2px solid #f0ddd0;
            border-radius: 12px;
            padding: 14px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            transition: border-color 0.2s;
            background: #fcf9f6;
        }
        .comment-form textarea:focus {
            border-color: #8e2a7a;
            outline: none;
        }
        .comment-form input[type="text"] {
            width: 100%;
            border: 2px solid #f0ddd0;
            border-radius: 12px;
            padding: 12px 14px;
            font-size: 1rem;
            margin-bottom: 12px;
            background: #fcf9f6;
            transition: border-color 0.2s;
        }
        .comment-form input[type="text"]:focus {
            border-color: #8e2a7a;
            outline: none;
        }
        .comment-form button {
            background: #c0392b;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s;
            font-weight: 600;
        }
        .comment-form button:hover {
            background: #a52a1a;
        }
        .site-footer {
            background: #2d1b0e;
            color: #eaddd0;
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 28px;
        }
        @media (max-width: 700px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        .site-footer h4 {
            color: #f5d7b0;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .site-footer a {
            color: #e8c8a8;
        }
        .site-footer a:hover {
            color: #f5a623;
        }
        .footer-bottom {
            border-top: 1px solid #4a3520;
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: #b09880;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
            margin-top: 8px;
        }
        .friend-link a {
            color: #e8c8a8;
            font-size: 0.9rem;
        }
        .friend-link a i {
            margin-right: 4px;
        }
        .last-updated {
            display: inline-block;
            background: #f5ebe3;
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #5d4a3a;
            margin-bottom: 1rem;
        }
        .last-updated i {
            margin-right: 6px;
            color: #c0392b;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 12px;
                gap: 4px;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                width: 100%;
                padding: 10px 16px;
                border-radius: 8px;
            }
            .article-body h1 {
                font-size: 1.8rem;
            }
            .article-body h2 {
                font-size: 1.4rem;
            }
            .article-body h3 {
                font-size: 1.15rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .sidebar {
                position: static;
            }
            .search-form {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-form input {
                border-radius: 16px 16px 0 0;
            }
            .search-form button {
                border-radius: 0 0 16px 16px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .article-body h1 {
                font-size: 1.5rem;
                padding-left: 12px;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
        }
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.6s forwards;
        }
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .tip-card {
            background: linear-gradient(135deg, #fff5eb, #fce8d8);
            border-radius: 14px;
            padding: 18px 22px;
            margin: 1.2rem 0;
            border-left: 6px solid #f5a623;
        }
        .tip-card i {
            color: #f5a623;
            margin-right: 8px;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
            margin: 1.5rem 0;
        }
        .stat-item {
            background: #fff;
            border-radius: 12px;
            padding: 18px 12px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            border: 1px solid #f0ddd0;
        }
        .stat-item .num {
            font-size: 2rem;
            font-weight: 800;
            color: #6b1d5e;
            display: block;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #7f6b5a;
        }
        .interview-block {
            background: #f5ebe3;
            border-radius: 16px;
            padding: 22px 26px;
            margin: 1.8rem 0;
            border: 1px solid #e8d5c0;
        }
        .interview-block .q {
            font-weight: 700;
            color: #4a1a3d;
        }
        .interview-block .a {
            margin-bottom: 1rem;
            padding-left: 12px;
            border-left: 3px solid #c0392b;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        .data-table th {
            background: #6b1d5e;
            color: #fff;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #f0ddd0;
            background: #fff;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #fcf5ee;
        }
