/* css/glass.css - 毛玻璃卡片通用样式 */

/* 毛玻璃卡片基础 */
.glass-card,
.portal-card,
.section-card,
.top-header,
.char-detail-card,
.filter-section {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

/* 半透明卡片 */
.glass-card-translucent,
.char-card,
.skill-card,
.passive-card,
.const-card,
.costs-phase,
.energy-card,
.ascension-card,
.story-card,
.quote-card,
.f-btn,
.tab-btn,
.attr-item {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 14px;
}

/* 顶部导航栏 */
.top-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

/* 通用 section 标题 */
.section-title {
    font-size: 1.15rem;
    font-weight: 900;
    color: #334155;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 16px;
    background: var(--accent, #5c6bc0);
    border-radius: 2px;
    transition: background 0.4s ease;
}
