/* 糖心vlog作品展示页面样式 */
@import url('/styles/home.css');

/* 作品展示页面特有样式 */
.featured-showcase {
    background: var(--bg-white);
    padding: 5rem 0;
}

.showcase-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.hero-content {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}

.hero-content:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.hero-thumbnail {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 3rem;
}

.hero-badge {
    background: var(--brand-warm);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero-creator {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.creator-tag {
    background: var(--brand-warm);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-weight: 600;
}

.hero-stats {
    color: rgba(255,255,255,0.8);
}

.hero-desc {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-metrics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.metric-badge {
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.hot-videos {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
}

.hot-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.hot-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hot-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hot-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-sm);
}

.hot-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.hot-info {
    flex: 1;
}

.hot-video-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.hot-creator {
    color: var(--brand-primary);
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.hot-views {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.content-categories {
    background: var(--bg-light);
    padding: 5rem 0;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-button {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--brand-primary);
    background: transparent;
    color: var(--brand-primary);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-button.active,
.filter-button:hover {
    background: var(--brand-primary);
    color: white;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.content-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-details {
    padding: 1.5rem;
}

.card-category {
    background: var(--brand-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.card-creator {
    color: var(--brand-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.card-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .showcase-layout {
        grid-template-columns: 1fr;
    }
    
    .category-filters {
        gap: 0.5rem;
    }
    
    .filter-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
}