/* Video Analytics */
.video-recommend {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1rem;
}

.recommend-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.recommend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
}

.recommend-card {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
}

.recommend-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.recommend-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.recommend-icon.views {
    background: #065fd4;
    color: white;
}

.recommend-icon.engagement {
    background: #cc0000;
    color: white;
}

.recommend-icon.watch-time {
    background: #00d562;
    color: white;
}

.recommend-icon.retention {
    background: #ff6d00;
    color: white;
}

.recommend-icon.comments {
    background: #8e24aa;
    color: white;
}

.recommend-icon.shares {
    background: #00acc1;
    color: white;
}

.recommend-content {
    flex: 1;
}

.recommend-value {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 2px;
}

.recommend-label {
    font-size: 12px;
    color: #aaaaaa;
    margin-bottom: 4px;
}

.recommend-change {
    font-size: 12px;
    font-weight: 600;
}

.recommend-change.positive {
    color: #00d562;
}

.recommend-change.negative {
    color: #ff4444;
}

.recommend-view {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}