/* 
 * 导航站主样式 - 简洁美观
 */

/* 引入主题系统 */
@import url('themes/theme-dark.css');

:root {
    /* 基础颜色覆盖 */
    --primary: #7c3aed;
    --primary-light: #a78bfa;
    --accent: #f472b6;
    --bg-gradient: radial-gradient(ellipse at 0% 0%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
                  radial-gradient(ellipse at 100% 0%, rgba(244, 114, 182, 0.1) 0%, transparent 50%);
}

/* 基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-gradient);
    z-index: -1;
}

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

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    margin-bottom: 30px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.site-title {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.datetime {
    text-align: right;
}

.time {
    font-size: 18px;
    font-weight: 600;
    font-family: monospace;
}

.date {
    font-size: 12px;
    color: var(--text-secondary);
}

/* 搜索框 */
.search-container {
    margin-bottom: 30px;
}

.search-box {
    display: flex;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 4px;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.search-engine {
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 16px;
    outline: none;
}

.search-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.search-btn:hover {
    transform: scale(1.05);
}

/* 快捷链接 */
.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 16px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    min-width: 70px;
}

.quick-link:hover {
    background: rgba(124, 58, 237, 0.2);
    transform: translateY(-3px);
}

.quick-link img {
    width: 28px;
    height: 28px;
    margin-bottom: 6px;
    border-radius: 6px;
}

.quick-link span {
    font-size: 12px;
}

/* 分类 */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.category {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.category:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(244, 114, 182, 0.1));
    border-bottom: 1px solid var(--border);
}

.category-icon {
    font-size: 24px;
}

.category-name {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
}

.category-count {
    font-size: 12px;
    padding: 4px 10px;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 20px;
}

.category-links {
    padding: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.link-card:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: var(--primary);
    transform: translateX(5px);
}

.link-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
}

.link-info {
    flex: 1;
    min-width: 0;
}

.link-title {
    display: block;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.link-desc {
    display: block;
    font-size: 11px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px;
    margin-top: 40px;
    color: var(--text-secondary);
    font-size: 14px;
}

.footer a {
    color: var(--primary);
    text-decoration: none;
}

/* 响应式 */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .categories {
        grid-template-columns: 1fr;
    }
    
    .category-links {
        grid-template-columns: 1fr;
    }
    
    .quick-links {
        justify-content: center;
    }
}

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ===== 自动升级 $(date '+%Y-%m-%d %H:%M') ===== */

/* 悬浮3D */
.card-3d:hover { transform: rotateY(10deg) rotateX(10deg); }

/* 流光边框 */
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #f472b6, #a78bfa, #60a5fa);
    background-size: 400% 0%;
    z-index: -1;
    animation: border-glow 4s linear infinite;
}
@keyframes border-glow { 0% { background-position: 0% 0%; } 100% { background-position: 400% 0%; } }

/* 打字机 */
.typewriter { overflow: hidden; white-space: nowrap; border-right: 2px solid #a78bfa; animation: typing 3s steps(40); }
@keyframes typing { from { width: 0; } to { width: 100%; } }

/* 脉冲 */
.pulse { animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }

/* 心跳 */
.heartbeat { animation: beat 1s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
