/* 页面头部 */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.update-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.page-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.likes i {
    color: #ff4d6d;
}

.views i {
    color: #4d94ff;
}

.page-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tag:hover {
    background: rgba(255, 107, 157, 0.3);
    transform: translateY(-2px);
}

/* 垂直图片区域 */
.vertical-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    max-width: 600px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.gallery-img {
    width: 70%;
    display: block;
    transition: transform 0.5s;
}

.gallery-img:hover {
    cursor: pointer;
    transform: scale(1.02);
}

@media (max-width: 576px) {
    .page-title {
        font-size: 25px;
    }
    .gallery-img {
        width: 100%;
    }
}
    