/**
 * PicShow - 卡片风风格
 * 特征：圆角卡片，柔和阴影，悬浮效果，蓝紫主调，现代感
 */
.ps-style-card {
    --ps-bg: #f0f2f5;
    --ps-bg-secondary: #e8eaed;
    --ps-card-bg: #ffffff;
    --ps-text: #1f2937;
    --ps-text-secondary: #4b5563;
    --ps-text-muted: #9ca3af;
    --ps-border: #e5e7eb;
    --ps-primary: #6366f1;
    --ps-primary-light: #818cf8;
    --ps-primary-dark: #4f46e5;
    --ps-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --ps-shadow-hover: 0 10px 25px rgba(99,102,241,0.12), 0 4px 10px rgba(0,0,0,0.06);
    --ps-radius: 16px;
    --ps-radius-sm: 12px;
    --ps-radius-lg: 20px;
}

.ps-style-card body {
    background: #f0f2f5;
    background-image:
        radial-gradient(circle at 15% 15%, rgba(99,102,241,0.04) 0%, transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(236,72,153,0.04) 0%, transparent 40%);
}

.ps-style-card .ps-header {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.ps-style-card .ps-card {
    border-radius: 16px;
    border: none;
}
.ps-style-card .ps-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(99,102,241,0.15);
}
.ps-style-card .ps-card-cover {
    border-radius: 16px 16px 0 0;
}

.ps-style-card .ps-widget {
    border-radius: 16px;
    border: none;
}

.ps-style-card .ps-tag {
    border-radius: 20px;
    padding: 4px 14px;
    background: rgba(99,102,241,0.08);
    color: #6366f1;
}

.ps-style-card .ps-badge {
    border-radius: 8px;
}

.ps-style-card .ps-btn,
.ps-style-card .ps-action-btn {
    border-radius: 12px;
}

.ps-style-card .ps-load-more {
    border-radius: 30px;
}

/* 渐变装饰线 */
.ps-style-card .ps-widget-title {
    border-bottom: none;
    position: relative;
    padding-bottom: 12px;
}
.ps-style-card .ps-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    border-radius: 2px;
}

.ps-style-card .ps-section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    border-radius: 2px;
    margin-top: 8px;
}

.ps-style-card .ps-footer {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
}
