/* 随性的搬砖生活 · 2026 — 卡片版 */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
    background: #121220;
    color: #ffffff;
    line-height: 1.8;
    min-height: 100vh;
}

.container {
    max-width: 640px;
    margin: 0 auto;
    padding: 48px 20px;
}

header {
    margin-bottom: 40px;
    text-align: center;
}

.site-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #556677;
    border: 1px solid #2a2a44;
    border-radius: 4px;
    padding: 3px 10px;
    margin-bottom: 16px;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2a2a44;
    margin-bottom: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

header h1 {
    font-size: 26px;
    font-weight: 700;
    color: #f0c040;
}

.subtitle {
    font-size: 14px;
    color: #8899aa;
    margin-top: 6px;
}

.article-list h2 {
    font-size: 14px;
    font-weight: 600;
    color: #f0c040;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.article-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.article-list li {
    background: #1e1e32;
    border-radius: 10px;
    border: 1px solid #2a2a44;
    transition: all 0.25s ease;
    cursor: pointer;
}

.article-list li a {
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    color: inherit;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.article-list li a:hover {
    background: #252540;
    border-color: #f0c04055;
    transform: translateY(-1px);
}

.article-list li.pending {
    cursor: default;
    opacity: 0.85;
}

.article-list li.pending:hover {
    background: inherit;
    border-color: #2a2a44;
    transform: none;
}

.article-title {
    font-size: 15px;
    font-weight: 500;
    color: #d0d8e0;
}

.pending .article-title {
    color: #99aabb;
}

.article-date {
    float: right;
    font-size: 13px;
    color: #667788;
    padding-top: 2px;
}

.pending .article-date {
    color: #556677;
}

.pending-section {
    margin-top: 40px;
}

footer {
    margin-top: 60px;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #2a2a44;
}

.footer-link {
    color: #f0c040;
    text-decoration: none;
    font-size: 14px;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-tech {
    font-size: 12px;
    color: #445566;
    margin-top: 4px;
}

footer p {
    font-size: 12px;
    color: #445566;
}

/* ─── 页面浏览量 ─── */
.page-views {
    text-align: center;
    font-size: 12px;
    color: #667788;
    margin: 10px 0 24px;
    letter-spacing: 0.5px;
}
.page-views strong {
    color: #f0c040;
    font-weight: 600;
}

/* ─── 全站浏览量 ─── */
.site-views {
    text-align: center;
    font-size: 12px;
    color: #667788;
    margin: 10px 0 14px;
    letter-spacing: 0.5px;
}
.site-views strong {
    color: #f0c040;
    font-weight: 600;
}

/* ─── 文章详情页 ─── */
.article-container {
    max-width: 640px;
    margin: 0 auto;
    padding: 48px 20px;
}

.back-link {
    display: inline-block;
    color: #f0c040;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 24px;
}

.back-link:hover {
    text-decoration: underline;
}

.article-meta {
    margin-bottom: 12px;
    color: #667788;
    font-size: 14px;
}

.article-meta time {
    margin-right: 10px;
}

.badge.recorded {
    display: inline-block;
    background: #1a3a2a;
    color: #4ade80;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 12px;
}

article h1 {
    font-size: 22px;
    font-weight: 700;
    color: #f0c040;
    margin-bottom: 24px;
    line-height: 1.4;
}

.article-body {
    font-size: 15px;
    line-height: 2;
    color: #d0d8e0;
}

.article-body p {
    margin-bottom: 10px;
}

.article-body blockquote {
    border-left: 3px solid #f0c04055;
    padding-left: 16px;
    color: #8899aa;
    margin: 16px 0;
}

.article-body h1 {
    font-size: 18px;
    color: #e0d0a0;
    margin: 24px 0 12px;
}

.article-body strong {
    color: #f0c040;
}

.article-body .pause {
    color: #445566;
    font-style: italic;
    font-size: 13px;
    text-align: center;
}

article {
    background: #1a1a2e;
    border-radius: 12px;
    padding: 32px 24px;
    border: 1px solid #2a2a44;
    margin-bottom: 16px;
}
