* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f5f0eb;
            color: #2c2c2c;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #f5c842;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-shadow: 0 0 20px rgba(245, 200, 66, 0.15);
            display: flex;
            align-items: center;
            gap: 8px;
            transition: opacity 0.3s;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .my-logo i {
            font-size: 1.8rem;
            color: #f5c842;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background 0.3s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 30px;
            transition: all 0.3s;
            background: transparent;
        }
        .nav-menu a:hover {
            background: rgba(245, 200, 66, 0.15);
            color: #f5c842;
        }
        .nav-menu a.active {
            background: rgba(245, 200, 66, 0.2);
            color: #f5c842;
        }
        .breadcrumb-wrap {
            background: #fff;
            border-bottom: 1px solid #e8e0d8;
            padding: 10px 0;
            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: "›";
            color: #b0a090;
            font-size: 1.1rem;
        }
        .breadcrumb a {
            color: #0f3460;
            text-decoration: none;
            transition: color 0.3s;
        }
        .breadcrumb a:hover {
            color: #f5c842;
        }
        .breadcrumb .current {
            color: #6b5b4b;
            font-weight: 500;
        }
        .main-content {
            padding: 40px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-body {
            background: #fff;
            border-radius: 20px;
            padding: 40px 44px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
        }
        .article-body h1 {
            font-size: 2.2rem;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .article-body h1 i {
            color: #f5c842;
            margin-right: 10px;
        }
        .meta-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 0.85rem;
            color: #6b5b4b;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid #f0e8e0;
        }
        .meta-bar span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .meta-bar i {
            color: #f5c842;
        }
        .featured-img {
            width: 100%;
            border-radius: 16px;
            margin: 20px 0 28px;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
            display: block;
            max-height: 480px;
            object-fit: cover;
        }
        .article-body h2 {
            font-size: 1.7rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-top: 48px;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #f5c842;
            display: inline-block;
        }
        .article-body h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #16213e;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        .article-body h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #0f3460;
            margin-top: 24px;
            margin-bottom: 10px;
        }
        .article-body p {
            margin-bottom: 16px;
            font-size: 1.02rem;
            color: #2c2c2c;
        }
        .article-body strong {
            color: #1a1a2e;
            font-weight: 700;
        }
        .article-body ul,
        .article-body ol {
            margin: 12px 0 20px 24px;
        }
        .article-body li {
            margin-bottom: 8px;
            font-size: 1.02rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fef9ef, #fdf3e0);
            border-left: 5px solid #f5c842;
            border-radius: 12px;
            padding: 20px 24px;
            margin: 24px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-card {
            background: #f9f6f2;
            border-radius: 14px;
            padding: 20px 16px;
            text-align: center;
            border: 1px solid #ede6de;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #0f3460;
            display: block;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #6b5b4b;
            margin-top: 4px;
        }
        .interview-box {
            background: #f4f0ec;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 28px 0;
            border: 1px solid #e4dcd4;
        }
        .interview-box .quote {
            font-style: italic;
            font-size: 1.05rem;
            color: #3a3a3a;
            padding-left: 16px;
            border-left: 4px solid #f5c842;
        }
        .interview-box .attribution {
            margin-top: 12px;
            font-weight: 600;
            color: #1a1a2e;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
            border-radius: 12px;
            border: 1px solid #ede6de;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        table th {
            background: #1a1a2e;
            color: #fff;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        table td {
            padding: 14px 18px;
            border-bottom: 1px solid #ede6de;
        }
        table tr:nth-child(even) {
            background: #faf7f4;
        }
        table tr:hover {
            background: #f5ede4;
        }
        .btn-link {
            display: inline-block;
            background: #f5c842;
            color: #1a1a2e;
            padding: 10px 24px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn-link:hover {
            background: #e0b830;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(245, 200, 66, 0.3);
        }
        .btn-link i {
            margin-right: 6px;
        }
        .faq-item {
            border-bottom: 1px solid #ede6de;
            padding: 18px 0;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-item .question {
            font-weight: 700;
            font-size: 1.05rem;
            color: #1a1a2e;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }
        .faq-item .question i {
            color: #f5c842;
            font-size: 1.1rem;
        }
        .faq-item .answer {
            margin-top: 10px;
            padding-left: 26px;
            color: #3a3a3a;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 18px;
            padding: 24px 22px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede6de;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 14px;
            padding-bottom: 8px;
            border-bottom: 2px solid #f5c842;
            display: inline-block;
        }
        .sidebar-links {
            list-style: none;
            padding: 0;
        }
        .sidebar-links li {
            margin-bottom: 10px;
        }
        .sidebar-links a {
            color: #0f3460;
            text-decoration: none;
            font-size: 0.92rem;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-links a:hover {
            color: #f5c842;
        }
        .sidebar-links a i {
            font-size: 0.75rem;
            color: #b0a090;
        }
        .rating-wrap {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 8px;
        }
        .stars {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars i {
            transition: color 0.3s, transform 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: #f5c842;
            transform: scale(1.1);
        }
        .rating-value {
            font-size: 0.85rem;
            color: #6b5b4b;
        }
        .search-form {
            display: flex;
            gap: 10px;
            margin: 10px 0 6px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #e4dcd4;
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
            background: #faf8f6;
        }
        .search-form input:focus {
            border-color: #f5c842;
        }
        .search-form button {
            background: #f5c842;
            border: none;
            border-radius: 30px;
            padding: 0 22px;
            font-size: 1rem;
            color: #1a1a2e;
            cursor: pointer;
            transition: background 0.3s;
            font-weight: 600;
        }
        .search-form button:hover {
            background: #e0b830;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e4dcd4;
            border-radius: 14px;
            font-size: 0.95rem;
            font-family: inherit;
            resize: vertical;
            min-height: 90px;
            outline: none;
            transition: border 0.3s;
            background: #faf8f6;
        }
        .comment-form textarea:focus {
            border-color: #f5c842;
        }
        .comment-form .form-actions {
            display: flex;
            gap: 12px;
            margin-top: 12px;
            flex-wrap: wrap;
        }
        .comment-form .form-actions button {
            background: #1a1a2e;
            color: #fff;
            border: none;
            padding: 10px 24px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form .form-actions button:hover {
            background: #0f3460;
        }
        .site-footer {
            background: #1a1a2e;
            color: #ccc;
            padding: 40px 0 20px;
            margin-top: 20px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer-inner h4 {
            color: #f5c842;
            font-size: 1rem;
            margin-bottom: 14px;
            font-weight: 600;
        }
        .footer-inner p {
            font-size: 0.88rem;
            line-height: 1.6;
            color: #b0a8a0;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            color: #b0a8a0;
            text-decoration: none;
            font-size: 0.88rem;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #f5c842;
        }
        friend-link {
            display: block;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.88rem;
            color: #b0a8a0;
        }
        friend-link a {
            color: #b0a8a0;
            text-decoration: none;
            transition: color 0.3s;
        }
        friend-link a:hover {
            color: #f5c842;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            font-size: 0.82rem;
            color: #7a7068;
            margin-top: 8px;
        }
        .copyright a {
            color: #b0a8a0;
            text-decoration: none;
        }
        .copyright a:hover {
            color: #f5c842;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 16px;
                gap: 6px;
                border-top: 1px solid rgba(255, 255, 255, 0.06);
                margin-top: 12px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                padding: 12px 16px;
                border-radius: 10px;
            }
            .article-body {
                padding: 24px 18px;
            }
            .article-body h1 {
                font-size: 1.6rem;
            }
            .article-body h2 {
                font-size: 1.3rem;
            }
            .article-body h3 {
                font-size: 1.1rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .meta-bar {
                gap: 12px;
                font-size: 0.78rem;
            }
            .site-header .header-inner {
                position: relative;
            }
            .my-logo {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .article-body {
                padding: 18px 14px;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                padding: 12px;
            }
            .comment-form .form-actions {
                flex-direction: column;
            }
            .comment-form .form-actions button {
                width: 100%;
            }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(18px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .article-body {
            animation: fadeInUp 0.5s ease-out;
        }
        .sidebar-card {
            animation: fadeInUp 0.5s ease-out;
        }
