@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&display=swap');
:root {
    --pink-primary: #ff6b9d;
    --pink-light: #ff8fb7;
    --pink-lighter: #ffc2d9;
    --pink-lightest: #fff0f5;
    --pink-dark: #e85588;
    --pink-deeper: #d64070;
    --purple-accent: #a855f7;
    --purple-light: #c084fc;
    --purple-lightest: #f3e8ff;
    --coral: #ff7f7f;
    --coral-light: #ffb3b3;
    --peach: #ffab91;
    --peach-light: #ffe0d6;
    --mint: #6dd5c8;
    --mint-light: #b2f0e6;
    --lavender: #b39ddb;
    --lavender-light: #e8dff5;
    --gold: #fbbf24;
    --gold-light: #fde68a;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --shadow-sm: 0 1px 3px rgba(255,107,157,0.08);
    --shadow-md: 0 4px 12px rgba(255,107,157,0.12);
    --shadow-lg: 0 8px 24px rgba(255,107,157,0.16);
    --shadow-purple: 0 4px 12px rgba(168,85,247,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--gray-50);
    color: var(--gray-800);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--pink-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--pink-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.mt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mt-header {
    background: var(--white);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--pink-primary), var(--purple-accent), var(--coral), var(--pink-primary)) 1;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.mt-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.mt-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--pink-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.mt-logo:hover { color: var(--pink-dark); }
.mt-logo-img {
    height: 42px;
    width: auto;
    border-radius: 6px;
}
.mt-nav { display: flex; align-items: center; gap: 4px; }
.mt-nav a {
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    color: var(--gray-700);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}
.mt-nav a:hover, .mt-nav a.active {
    background: linear-gradient(135deg, var(--pink-lightest), var(--purple-lightest));
    color: var(--pink-primary);
}
.mt-header-right { display: flex; align-items: center; gap: 12px; }
.mt-search-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--pink-lightest), var(--purple-lightest));
    color: var(--pink-primary);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.mt-search-toggle:hover { background: linear-gradient(135deg, var(--pink-primary), var(--purple-accent)); color: var(--white); }
.mt-mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--pink-lightest), var(--purple-lightest));
    color: var(--pink-primary);
    font-size: 18px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.mt-search-bar {
    background: linear-gradient(135deg, var(--pink-lightest), var(--lavender-light), var(--white));
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.mt-search-bar.open { max-height: 80px; padding: 16px 0; }
.mt-search-form {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--pink-lighter);
}
.mt-search-form input[type="text"] {
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-size: 15px;
    outline: none;
    background: var(--white);
}
.mt-search-form input[type="submit"] {
    background: linear-gradient(135deg, var(--pink-primary), var(--purple-accent));
    color: var(--white);
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.mt-search-form input[type="submit"]:hover { background: linear-gradient(135deg, var(--pink-dark), var(--purple-accent)); }
.mt-search-select {
    border: none;
    padding: 0 12px;
    font-size: 14px;
    outline: none;
    background: var(--pink-lightest);
    color: var(--pink-dark);
    cursor: pointer;
}

.mt-hero {
    background: linear-gradient(135deg, var(--pink-primary) 0%, var(--purple-accent) 40%, var(--coral) 70%, var(--peach) 100%);
    padding: 70px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.mt-hero-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 40%);
    animation: heroFloat 8s ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}
.mt-hero h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.mt-hero p {
    font-size: 17px;
    opacity: 0.92;
    position: relative;
    text-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.mt-home-top {
    display: flex;
    gap: 24px;
    padding: 30px 0;
}
.mt-home-main { flex: 1; min-width: 0; }
.mt-home-side { width: 320px; flex-shrink: 0; }

.mt-main-layout {
    display: flex;
    gap: 24px;
    padding: 30px 0;
}
.mt-main-content { flex: 1; min-width: 0; }
.mt-sidebar { width: 300px; flex-shrink: 0; }

.mt-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
}
.mt-section-title i {
    color: var(--pink-primary);
    font-size: 22px;
}
.mt-section-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--pink-lighter), var(--lavender-light), transparent);
    margin-left: 10px;
}
.mt-section-more {
    margin-left: auto;
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-500);
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    background: var(--gray-100);
    transition: var(--transition);
}
.mt-section-more:hover {
    background: linear-gradient(135deg, var(--pink-lightest), var(--purple-lightest));
    color: var(--pink-primary);
}

.mt-home-section {
    margin-bottom: 36px;
}

.mt-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin-bottom: 20px;
}
.mt-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.mt-card-list .mt-card-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
}
.mt-card-list .mt-card-item:last-child { margin-bottom: 0; }
.mt-card-list .mt-card-item:hover {
    background: linear-gradient(135deg, var(--pink-lightest), var(--white));
    box-shadow: var(--shadow-md);
}
.mt-card-thumb {
    width: 200px;
    height: 140px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}
.mt-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.mt-card-item:hover .mt-card-thumb img { transform: scale(1.05); }
.mt-card-info { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.mt-card-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mt-card-title:hover { color: var(--pink-primary); }
.mt-card-intro {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 8px;
}
.mt-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 10px;
}
.mt-card-meta i { color: var(--pink-light); margin-right: 3px; }
.mt-card-tag {
    display: inline-block;
    padding: 2px 10px;
    background: linear-gradient(135deg, var(--pink-lightest), var(--purple-lightest));
    color: var(--pink-primary);
    border-radius: var(--radius-xl);
    font-size: 12px;
}

.mt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mt-grid .mt-grid-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}
.mt-grid .mt-grid-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--pink-lighter);
}
.mt-grid-card-thumb {
    height: 180px;
    overflow: hidden;
    position: relative;
    display: block;
}
.mt-grid-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.mt-grid-card:hover .mt-grid-card-thumb img { transform: scale(1.08); }
.mt-grid-nopic {
    background: linear-gradient(135deg, var(--pink-lightest), var(--lavender-light));
    display: flex;
    align-items: center;
    justify-content: center;
}
.mt-grid-nopic i { font-size: 48px; color: var(--pink-lighter); }
.mt-grid-card-thumb .mt-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
}
.mt-grid-card-body { padding: 16px; }
.mt-grid-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mt-grid-card-title:hover { color: var(--pink-primary); }
.mt-grid-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 10px;
}
.mt-grid-card-meta i { color: var(--pink-light); }

.mt-cate-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.mt-cate-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}
.mt-cate-item:hover {
    background: linear-gradient(135deg, var(--pink-lightest), var(--white));
    border-color: var(--pink-lighter);
    box-shadow: var(--shadow-md);
}
.mt-cate-num {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--gray-200);
    color: var(--gray-600);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mt-cate-item:nth-child(1) .mt-cate-num { background: linear-gradient(135deg, var(--pink-primary), var(--coral)); color: var(--white); }
.mt-cate-item:nth-child(2) .mt-cate-num { background: linear-gradient(135deg, var(--purple-accent), var(--lavender)); color: var(--white); }
.mt-cate-item:nth-child(3) .mt-cate-num { background: linear-gradient(135deg, var(--peach), var(--coral)); color: var(--white); }
.mt-cate-title {
    flex: 1;
    font-size: 14px;
    color: var(--gray-700);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.mt-cate-item:hover .mt-cate-title { color: var(--pink-primary); }
.mt-cate-date { font-size: 12px; color: var(--gray-400); flex-shrink: 0; }

.mt-sidebar-box {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}
.mt-sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--pink-primary), var(--purple-accent), transparent) 1;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mt-sidebar-title i { color: var(--pink-primary); }
.mt-sidebar-list li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--gray-200);
    display: flex;
    align-items: center;
    gap: 8px;
}
.mt-sidebar-list li:last-child { border-bottom: none; }
.mt-sidebar-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-lighter), var(--lavender));
    flex-shrink: 0;
}
.mt-sidebar-list a {
    color: var(--gray-700);
    font-size: 14px;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.mt-sidebar-list a:hover { color: var(--pink-primary); }
.mt-sidebar-list .mt-date { font-size: 12px; color: var(--gray-400); flex-shrink: 0; }

.mt-author-card {
    text-align: center;
    padding: 24px 20px;
    background: linear-gradient(180deg, var(--pink-lightest) 0%, var(--white) 100%);
}
.mt-author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 12px;
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                linear-gradient(135deg, var(--pink-primary), var(--purple-accent)) border-box;
}
.mt-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.mt-author-name { font-size: 16px; font-weight: 600; color: var(--gray-900); }
.mt-author-desc { font-size: 13px; color: var(--gray-500); margin-top: 6px; }
.mt-author-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed var(--gray-200);
}
.mt-author-stats span { font-size: 13px; color: var(--gray-600); }
.mt-author-stats strong { color: var(--pink-primary); font-size: 18px; display: block; }

.mt-breadcrumb {
    padding: 3px 0;
    font-size: 13px;
    color: var(--gray-500);
}
.mt-breadcrumb a { color: var(--gray-600); }
.mt-breadcrumb a:hover { color: var(--pink-primary); }
.mt-breadcrumb span { margin: 0 6px; color: var(--gray-400); }

.mt-show {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 0;
}
.mt-show-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.4;
    margin-bottom: 16px;
    padding: 0 0 16px 0;
}
.mt-show-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: var(--gray-500);
    padding: 0 0 20px 0;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.mt-show-meta i { color: var(--pink-light); margin-right: 4px; }
.mt-show-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-800);
    word-break: break-all;
}
.mt-show-content p { margin-bottom: 16px; }
.mt-show-content h2, .mt-show-content h3, .mt-show-content h4 {
    color: var(--gray-900);
    margin: 24px 0 12px;
    font-weight: 600;
}
.mt-show-content img {
    border-radius: var(--radius-sm);
    margin: 16px auto;
    box-shadow: var(--shadow-sm);
}
.mt-show-content a { color: var(--pink-primary); border-bottom: 1px dashed var(--pink-lighter); }
.mt-show-content a:hover { border-bottom-style: solid; }
.mt-show-content blockquote {
    border-left: 4px solid var(--pink-primary);
    padding: 12px 20px;
    margin: 16px 0;
    background: linear-gradient(135deg, var(--pink-lightest), var(--white));
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--gray-700);
}
.mt-show-content pre {
    background: var(--gray-900);
    color: #e0e0e0;
    padding: 16px;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    margin: 16px 0;
}
.mt-show-content code {
    background: var(--pink-lightest);
    color: var(--pink-dark);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
}
.mt-show-content pre code { background: none; color: inherit; padding: 0; }
.mt-show-content ul, .mt-show-content ol {
    padding-left: 24px;
    margin: 12px 0;
}
.mt-show-content ul li, .mt-show-content ol li { margin-bottom: 6px; }
.mt-show-content table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.mt-show-content th, .mt-show-content td {
    border: 1px solid var(--gray-200);
    padding: 10px 14px;
    text-align: left;
}
.mt-show-content th { background: var(--pink-lightest); color: var(--gray-800); font-weight: 600; }

.mt-show-tags {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.mt-show-tags i { color: var(--pink-primary); }
.mt-show-tags a {
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--pink-lightest), var(--purple-lightest));
    color: var(--pink-primary);
    border-radius: var(--radius-xl);
    font-size: 13px;
    transition: var(--transition);
}
.mt-show-tags a:hover { background: linear-gradient(135deg, var(--pink-primary), var(--purple-accent)); color: var(--white); }

.mt-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 30px 0;
}
.mt-pagination a, .mt-pagination span {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition);
}
.mt-pagination a {
    background: var(--white);
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
}
.mt-pagination a:hover { background: linear-gradient(135deg, var(--pink-primary), var(--purple-accent)); color: var(--white); }
.mt-pagination .active {
    background: linear-gradient(135deg, var(--pink-primary), var(--purple-accent));
    color: var(--white);
    font-weight: 600;
}

.mt-footer {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1028 50%, var(--gray-900) 100%);
    color: var(--gray-400);
    padding: 40px 0 20px;
    margin-top: 40px;
}
.mt-footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 13px;
}
.mt-footer-bottom a { color: var(--pink-light); }
.mt-footer-bottom a:hover { color: var(--purple-light); }

.mt-404-icon { font-size: 100px; color: var(--pink-lighter); margin-bottom: 20px; }
.mt-btn {
    display: inline-block;
    padding: 10px 28px;
    border-radius: var(--radius-xl);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.mt-btn-primary { background: linear-gradient(135deg, var(--pink-primary), var(--purple-accent)); color: var(--white); }
.mt-btn-primary:hover { background: linear-gradient(135deg, var(--pink-dark), var(--purple-accent)); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.mt-btn-outline {
    background: transparent;
    color: var(--pink-primary);
    border: 2px solid var(--pink-primary);
}
.mt-btn-outline:hover { background: linear-gradient(135deg, var(--pink-primary), var(--purple-accent)); color: var(--white); border-color: transparent; }

.mt-hot-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--gray-200);
}
.mt-hot-list li:last-child { border-bottom: none; }
.mt-hot-rank {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--gray-200);
    color: var(--gray-600);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mt-hot-list li:nth-child(1) .mt-hot-rank { background: linear-gradient(135deg, var(--pink-primary), var(--coral)); color: var(--white); }
.mt-hot-list li:nth-child(2) .mt-hot-rank { background: linear-gradient(135deg, var(--purple-accent), var(--lavender)); color: var(--white); }
.mt-hot-list li:nth-child(3) .mt-hot-rank { background: linear-gradient(135deg, var(--peach), var(--coral)); color: var(--white); }
.mt-hot-list a { flex: 1; font-size: 14px; color: var(--gray-700); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mt-hot-list a:hover { color: var(--pink-primary); }

.mt-links-section {
    padding: 24px 0;
}
.mt-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.mt-links-list a {
    padding: 6px 18px;
    background: var(--white);
    color: var(--gray-700);
    border-radius: var(--radius-xl);
    font-size: 14px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.mt-links-list a:hover {
    background: linear-gradient(135deg, var(--pink-lightest), var(--purple-lightest));
    color: var(--pink-primary);
    border-color: var(--pink-lighter);
}

.mt-comment-area { margin-top: 30px; }
.mt-comment-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--pink-primary), var(--purple-accent), transparent) 1;
}
.mt-comment-post {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 20px;
    box-shadow: var(--shadow-sm);
}
.mt-comment-post .text {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
    width: 100%;
}
.mt-comment-post .text:focus {
    border-color: var(--pink-lighter);
    box-shadow: 0 0 0 3px var(--pink-lightest);
}
.mt-vcode-row { display: flex; align-items: center; gap: 10px; }
.mt-vcode-row .text { width: 120px; flex-shrink: 0; }
#captchaPic { cursor: pointer; border-radius: 4px; height: 36px; }
#reply_comment_div { display: none; background: var(--pink-lightest); padding: 10px; border-radius: var(--radius-sm); margin-bottom: 10px; }
.msg { margin-bottom: 12px; padding: 12px; background: var(--gray-50); border-radius: var(--radius-sm); }
.msgname { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 14px; }
.msgname .avatar { border-radius: 50%; border: 2px solid var(--pink-lighter); }
.msgname .commentname { font-weight: 600; color: var(--gray-800); }
.msgname small { color: var(--gray-400); }
.msgname .reply_comment { color: var(--pink-primary); margin-left: auto; font-size: 12px; }
.msgarticle { font-size: 14px; color: var(--gray-700); line-height: 1.7; padding-left: 40px; }
.reply_msgarticle { font-size: 13px; color: var(--gray-600); padding: 8px 12px; background: var(--pink-lightest); border-radius: var(--radius-sm); margin-bottom: 6px; margin-left: 40px; }
#load_more { display: inline-block; padding: 8px 20px; background: var(--gray-100); color: var(--gray-600); border-radius: var(--radius-xl); font-size: 13px; cursor: pointer; transition: var(--transition); margin-top: 10px; }
#load_more:hover { background: linear-gradient(135deg, var(--pink-lightest), var(--purple-lightest)); color: var(--pink-primary); }

.mt-no-data {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
}
.mt-no-data i { font-size: 48px; color: var(--pink-lighter); display: block; margin-bottom: 16px; }

.mt-tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.mt-tag-cloud a {
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--pink-lightest), var(--purple-lightest));
    color: var(--pink-primary);
    border-radius: var(--radius-xl);
    font-size: 14px;
    transition: var(--transition);
}
.mt-tag-cloud a:hover { background: linear-gradient(135deg, var(--pink-primary), var(--purple-accent)); color: var(--white); }

.mt-page-show { background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 32px; }
.mt-page-show-title { font-size: 24px; font-weight: 700; color: var(--gray-900); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 2px solid transparent; border-image: linear-gradient(90deg, var(--pink-primary), var(--purple-accent), transparent) 1; }

.mt-back-top {
    position: fixed;
    right: 20px;
    bottom: 80px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-primary), var(--purple-accent));
    color: var(--white);
    border: none;
    font-size: 18px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
.mt-back-top:hover { background: linear-gradient(135deg, var(--pink-dark), var(--purple-accent)); transform: translateY(-2px); }
.mt-back-top.show { display: flex; }

.mt-sub-cate {
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-600);
}
.mt-sub-cate a {
    display: inline-block;
    padding: 4px 14px;
    margin: 3px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    color: var(--gray-700);
    transition: var(--transition);
}
.mt-sub-cate a:hover {
    background: linear-gradient(135deg, var(--pink-lightest), var(--purple-lightest));
    color: var(--pink-primary);
    border-color: var(--pink-lighter);
}

@media (max-width: 992px) {
    .mt-home-top { flex-direction: column; }
    .mt-home-side { width: 100%; }
    .mt-main-layout { flex-direction: column; }
    .mt-sidebar { width: 100%; }
    .mt-grid { grid-template-columns: repeat(2, 1fr); }
    .mt-cate-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .mt-nav { display: none; }
    .mt-mobile-toggle { display: flex; }
    .mt-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 12px;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    .mt-hero { padding: 40px 0; }
    .mt-hero h2 { font-size: 24px; }
    .mt-hero p { font-size: 14px; }
    .mt-card-thumb { width: 120px; height: 90px; }
    .mt-grid { grid-template-columns: 1fr; }
    .mt-card-list .mt-card-item { flex-direction: column; gap: 12px; }
    .mt-card-thumb { width: 100%; height: 180px; }
}
